From ead73c88d695ecd7311d268949507d3ff81026ba Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 22 Sep 2023 13:44:52 -0300 Subject: [PATCH] Font Library: load collection JSON data from a URL in the collection config (#54067) * Adding Font Collection class * php formatting and linting * Adding tests for collections routes * Adding tests for WP_Font_Collection constructor * adding tests for WP_Font_Collection get_data() * adding tests for WP_Font_Library register_font_collection() * get font collection tests * adding 'wp_' prefix to the 'register_font_collection' filter name * fix callback name * making class property private * registering filter from font-library.php file * removing superfluous comment * moving files to according changes in trunk * config without a json file should fail * fix property name in tests * name fix Co-authored-by: Tonya Mork * comment update Co-authored-by: Tonya Mork * Adds WP_Error to return type * Improves contructor error handling. * Ensures each required param is of the right data type. * Improves each param check error to include expected data type. * FontCollection::get_data(): Improves error handling * Rechecking if "data_json_file" exists in the $config property shouldn't be necessary, as it's checked in the constructor. * If the file does not exist, bail out immediately as there's nothing more to do. * Adds a check and WP_Error for file_get_contents(): file_get_contents() returns false on failure. If there's nothing in the file, an empty string is returned. This change checks for both of these conditions and returns a WP_Error if either happens. * Internationalizes WP_Error error message for consistency in Core. * Removes empty space for wpcs * adding filter in a simpler way Co-authored-by: Tonya Mork * micro-optimization Co-authored-by: Tonya Mork * reuse WP_Error response instead of creating a new one Co-authored-by: Tonya Mork * Eliminates try/catch * Revert "Eliminates try/catch" commit This reverts commit 0e6c026c87933f64dae78049cc9bb53c7fa8dffb. * Remove wp_register_font_collection and replace it by a global function, remove try catch and raise the error if needed * adding function comment and guard agains re-declaration * php format * fixing docblock coments * removing param comment * re-adding parameter comment removed by mistake * format php * updating WP_Font_Collection __construct tests * updating WP_Font_Collection get_data tests * updating tests * php format * array check Co-authored-by: Tonya Mork * Documents config array structure * adding tests for /fonts/collections endpoint * adding /fonts/collections/ endpoint test * format * format * add test for missing collection * removing not needed variables * Add more tests and split the test for WP_REST_Font_Library_Controller * lint * try to create dir for tests in CI * renane config property to src and handle URLs apart from file paths * Add the ability to load collection JSON data from a URL * remove unwanted comment * fix missing merge * fix merge with trunk * removing test file after merge with trunk * removing duplicated test files after merge with trunk * decode data to make availanle in the client as json * update google fonts collection source * format php' * removing the default font collection (google fonts) json file from repo * fixing logic to get data from url * add tests to try the font collection fetching from url * update test * format comments * replacing existing url in test with a mock url * early return Co-authored-by: Anton Vlasenko <43744263+anton-vlasenko@users.noreply.github.com> * remove not needed filter Co-authored-by: Anton Vlasenko <43744263+anton-vlasenko@users.noreply.github.com> * rewording error message Co-authored-by: Anton Vlasenko <43744263+anton-vlasenko@users.noreply.github.com> --------- Co-authored-by: Tonya Mork Co-authored-by: Anton Vlasenko <43744263+anton-vlasenko@users.noreply.github.com> --- .../font-library/class-wp-font-collection.php | 35 +- .../class-wp-rest-font-library-controller.php | 11 +- .../font-library/default-font-collection.json | 55714 ---------------- .../fonts/font-library/font-library.php | 10 +- .../wpFontCollection/__construct.php | 18 +- .../font-library/wpFontCollection/getData.php | 61 +- .../wpFontLibrary/getFontCollection.php | 8 +- .../wpFontLibrary/getFontCollections.php | 8 +- .../wpFontLibrary/registerFontCollection.php | 36 +- .../getFontCollection.php | 99 +- .../getFontCollections.php | 8 +- 11 files changed, 223 insertions(+), 55785 deletions(-) delete mode 100644 lib/experimental/fonts/font-library/default-font-collection.json diff --git a/lib/experimental/fonts/font-library/class-wp-font-collection.php b/lib/experimental/fonts/font-library/class-wp-font-collection.php index 3b0dc032373e89..5b3702ae865d1c 100644 --- a/lib/experimental/fonts/font-library/class-wp-font-collection.php +++ b/lib/experimental/fonts/font-library/class-wp-font-collection.php @@ -51,8 +51,8 @@ public function __construct( $config ) { throw new Exception( 'Font Collection config name is required as a non-empty string.' ); } - if ( empty( $config['data_json_file'] ) || ! is_string( $config['data_json_file'] ) ) { - throw new Exception( 'Font Collection config "data_json_file" option is required as a non-empty string.' ); + if ( empty( $config['src'] ) || ! is_string( $config['src'] ) ) { + throw new Exception( 'Font Collection config "src" option is required as a non-empty string.' ); } $this->config = $config; @@ -78,18 +78,35 @@ public function get_config() { * else an instance of WP_Error on failure. */ public function get_data() { - if ( ! file_exists( $this->config['data_json_file'] ) ) { - return new WP_Error( 'font_collection_file_error', __( 'Font Collection data JSON file does not exist.', 'gutenberg' ) ); - } + // If the src is a URL, fetch the data from the URL. + if ( false !== strpos( $this->config['src'], 'http' ) && false !== strpos( $this->config['src'], '://' ) ) { + if ( ! wp_http_validate_url( $this->config['src'] ) ) { + return new WP_Error( 'font_collection_read_error', __( 'Invalid URL for Font Collection data.', 'gutenberg' ) ); + } + + $response = wp_remote_get( $this->config['src'] ); + if ( is_wp_error( $response ) || 200 !== wp_remote_retrieve_response_code( $response ) ) { + return new WP_Error( 'font_collection_read_error', __( 'Error fetching the Font Collection data from a URL.', 'gutenberg' ) ); + } - $data = wp_json_file_decode( $this->config['data_json_file'], array( 'associative' => true ) ); - if ( empty( $data ) ) { - return new WP_Error( 'font_collection_read_error', __( 'Error reading the Font Collection data JSON file contents.', 'gutenberg' ) ); + $data = json_decode( wp_remote_retrieve_body( $response ), true ); + if ( empty( $data ) ) { + return new WP_Error( 'font_collection_read_error', __( 'Error decoding the Font Collection data from the REST response JSON.', 'gutenberg' ) ); + } + // If the src is a file path, read the data from the file. + } else { + if ( ! file_exists( $this->config['src'] ) ) { + return new WP_Error( 'font_collection_read_error', __( 'Font Collection data JSON file does not exist.', 'gutenberg' ) ); + } + $data = wp_json_file_decode( $this->config['src'], array( 'associative' => true ) ); + if ( empty( $data ) ) { + return new WP_Error( 'font_collection_read_error', __( 'Error reading the Font Collection data JSON file contents.', 'gutenberg' ) ); + } } $collection_data = $this->get_config(); $collection_data['data'] = $data; - unset( $collection_data['data_json_file'] ); + unset( $collection_data['src'] ); return $collection_data; } } diff --git a/lib/experimental/fonts/font-library/class-wp-rest-font-library-controller.php b/lib/experimental/fonts/font-library/class-wp-rest-font-library-controller.php index 3096f11759691f..dcf94d93012a27 100644 --- a/lib/experimental/fonts/font-library/class-wp-rest-font-library-controller.php +++ b/lib/experimental/fonts/font-library/class-wp-rest-font-library-controller.php @@ -104,13 +104,18 @@ public function register_routes() { public function get_font_collection( $request ) { $id = $request->get_param( 'id' ); $collection = WP_Font_Library::get_font_collection( $id ); - + // If the collection doesn't exist returns a 404. if ( is_wp_error( $collection ) ) { $collection->add_data( array( 'status' => 404 ) ); return $collection; } - - return new WP_REST_Response( $collection->get_data() ); + $collection_with_data = $collection->get_data(); + // If there was an error getting the collection data, return the error. + if ( is_wp_error( $collection_with_data ) ) { + $collection_with_data->add_data( array( 'status' => 500 ) ); + return $collection_with_data; + } + return new WP_REST_Response( $collection_with_data ); } /** diff --git a/lib/experimental/fonts/font-library/default-font-collection.json b/lib/experimental/fonts/font-library/default-font-collection.json deleted file mode 100644 index e0728eade16ae1..00000000000000 --- a/lib/experimental/fonts/font-library/default-font-collection.json +++ /dev/null @@ -1,55714 +0,0 @@ -{ - "fontFamilies": [ - { - "name": "ABeeZee", - "fontFamily": "ABeeZee, sans-serif", - "slug": "abeezee", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/abeezee/v22/esDR31xSG-6AGleN6tKukbcHCpE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "ABeeZee", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/abeezee/abeezee-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/abeezee/v22/esDT31xSG-6AGleN2tCklZUCGpG-GQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "ABeeZee", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/abeezee/abeezee-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/abeezee/abeezee.svg" - }, - { - "name": "ADLaM Display", - "fontFamily": "ADLaM Display, system-ui", - "slug": "adlam-display", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/adlamdisplay/v1/KFOhCnGXkPOLlhx6jD8_b1ZECsHYkYBPY3o.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "ADLaM Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/adlam-display/adlam-display-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/adlam-display/adlam-display.svg" - }, - { - "name": "Abel", - "fontFamily": "Abel, sans-serif", - "slug": "abel", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/abel/v18/MwQ5bhbm2POE6VhLPJp6qGI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Abel", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/abel/abel-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/abel/abel.svg" - }, - { - "name": "Abhaya Libre", - "fontFamily": "Abhaya Libre, serif", - "slug": "abhaya-libre", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/abhayalibre/v14/e3tmeuGtX-Co5MNzeAOqinEge0PWovdU4w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Abhaya Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/abhaya-libre/abhaya-libre-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYj2ryqtxI6oYtBA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Abhaya Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/abhaya-libre/abhaya-libre-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYo23yqtxI6oYtBA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Abhaya Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/abhaya-libre/abhaya-libre-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYx2zyqtxI6oYtBA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Abhaya Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/abhaya-libre/abhaya-libre-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEY22_yqtxI6oYtBA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Abhaya Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/abhaya-libre/abhaya-libre-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/abhaya-libre/abhaya-libre.svg" - }, - { - "name": "Aboreto", - "fontFamily": "Aboreto, system-ui", - "slug": "aboreto", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aboreto/v2/5DCXAKLhwDDQ4N8blKTeA2yuxSY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aboreto", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aboreto/aboreto-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aboreto/aboreto.svg" - }, - { - "name": "Abril Fatface", - "fontFamily": "Abril Fatface, system-ui", - "slug": "abril-fatface", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/abrilfatface/v23/zOL64pLDlL1D99S8g8PtiKchm-BsjOLhZBY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Abril Fatface", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/abril-fatface/abril-fatface-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/abril-fatface/abril-fatface.svg" - }, - { - "name": "Abyssinica SIL", - "fontFamily": "Abyssinica SIL, serif", - "slug": "abyssinica-sil", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/abyssinicasil/v5/oY1H8ezOqK7iI3rK_45WKoc8J6UZBFOVAXuI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Abyssinica SIL", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/abyssinica-sil/abyssinica-sil-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/abyssinica-sil/abyssinica-sil.svg" - }, - { - "name": "Aclonica", - "fontFamily": "Aclonica, sans-serif", - "slug": "aclonica", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aclonica/v22/K2FyfZJVlfNNSEBXGb7TCI6oBjLz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aclonica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aclonica/aclonica-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aclonica/aclonica.svg" - }, - { - "name": "Acme", - "fontFamily": "Acme, sans-serif", - "slug": "acme", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/acme/v25/RrQfboBx-C5_bx3Lb23lzLk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Acme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/acme/acme-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/acme/acme.svg" - }, - { - "name": "Actor", - "fontFamily": "Actor, sans-serif", - "slug": "actor", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/actor/v17/wEOzEBbCkc5cO3ekXygtUMIO.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Actor", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/actor/actor-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/actor/actor.svg" - }, - { - "name": "Adamina", - "fontFamily": "Adamina, serif", - "slug": "adamina", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/adamina/v21/j8_r6-DH1bjoc-dwu-reETl4Bno.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Adamina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/adamina/adamina-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/adamina/adamina.svg" - }, - { - "name": "Advent Pro", - "fontFamily": "Advent Pro, sans-serif", - "slug": "advent-pro", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/adventpro/v23/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLQyJPTJoonw1aBA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Advent Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/advent-pro/advent-pro-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/adventpro/v23/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLwyNPTJoonw1aBA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Advent Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/advent-pro/advent-pro-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/adventpro/v23/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLHSNPTJoonw1aBA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Advent Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/advent-pro/advent-pro-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/adventpro/v23/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLQyNPTJoonw1aBA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Advent Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/advent-pro/advent-pro-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/adventpro/v23/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLcSNPTJoonw1aBA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Advent Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/advent-pro/advent-pro-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/adventpro/v23/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLnSRPTJoonw1aBA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Advent Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/advent-pro/advent-pro-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/adventpro/v23/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLpCRPTJoonw1aBA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Advent Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/advent-pro/advent-pro-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/adventpro/v23/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLwyRPTJoonw1aBA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Advent Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/advent-pro/advent-pro-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/adventpro/v23/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpL6iRPTJoonw1aBA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Advent Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/advent-pro/advent-pro-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/adventpro/v23/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CnDpAsvQhKBH4C.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Advent Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/advent-pro/advent-pro-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/adventpro/v23/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AnD5AsvQhKBH4C.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Advent Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/advent-pro/advent-pro-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/adventpro/v23/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2D5D5AsvQhKBH4C.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Advent Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/advent-pro/advent-pro-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/adventpro/v23/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CnD5AsvQhKBH4C.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Advent Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/advent-pro/advent-pro-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/adventpro/v23/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CVD5AsvQhKBH4C.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Advent Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/advent-pro/advent-pro-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/adventpro/v23/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2B5CJAsvQhKBH4C.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Advent Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/advent-pro/advent-pro-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/adventpro/v23/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2BACJAsvQhKBH4C.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Advent Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/advent-pro/advent-pro-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/adventpro/v23/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AnCJAsvQhKBH4C.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Advent Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/advent-pro/advent-pro-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/adventpro/v23/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AOCJAsvQhKBH4C.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Advent Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/advent-pro/advent-pro-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/advent-pro/advent-pro.svg" - }, - { - "name": "Agdasima", - "fontFamily": "Agdasima, sans-serif", - "slug": "agdasima", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/agdasima/v4/PN_zRfyxp2f1fUCgAMg6rzjb_-Da.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Agdasima", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/agdasima/agdasima-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/agdasima/v4/PN_0Rfyxp2f1fUCgAPCGgBzT1PzTz2Mi.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Agdasima", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/agdasima/agdasima-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/agdasima/agdasima.svg" - }, - { - "name": "Aguafina Script", - "fontFamily": "Aguafina Script, cursive", - "slug": "aguafina-script", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aguafinascript/v22/If2QXTv_ZzSxGIO30LemWEOmt1bHqs4pgicOrg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aguafina Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aguafina-script/aguafina-script-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aguafina-script/aguafina-script.svg" - }, - { - "name": "Akatab", - "fontFamily": "Akatab, sans-serif", - "slug": "akatab", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/akatab/v7/VuJwdNrK3Z7gqJEPWIz5NIh-YA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Akatab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/akatab/akatab-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/akatab/v7/VuJzdNrK3Z7gqJE3rKXdPKNiaRpFvg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Akatab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/akatab/akatab-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/akatab/v7/VuJzdNrK3Z7gqJE3gKLdPKNiaRpFvg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Akatab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/akatab/akatab-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/akatab/v7/VuJzdNrK3Z7gqJE35KPdPKNiaRpFvg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Akatab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/akatab/akatab-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/akatab/v7/VuJzdNrK3Z7gqJE3-KDdPKNiaRpFvg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Akatab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/akatab/akatab-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/akatab/v7/VuJzdNrK3Z7gqJE33KHdPKNiaRpFvg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Akatab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/akatab/akatab-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/akatab/akatab.svg" - }, - { - "name": "Akaya Kanadaka", - "fontFamily": "Akaya Kanadaka, system-ui", - "slug": "akaya-kanadaka", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/akayakanadaka/v16/N0bM2S5CPO5oOQqvazoRRb-8-PfRS5VBBSSF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Akaya Kanadaka", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/akaya-kanadaka/akaya-kanadaka-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/akaya-kanadaka/akaya-kanadaka.svg" - }, - { - "name": "Akaya Telivigala", - "fontFamily": "Akaya Telivigala, system-ui", - "slug": "akaya-telivigala", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/akayatelivigala/v22/lJwc-oo_iG9wXqU3rCTD395tp0uifdLdsIH0YH8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Akaya Telivigala", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/akaya-telivigala/akaya-telivigala-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/akaya-telivigala/akaya-telivigala.svg" - }, - { - "name": "Akronim", - "fontFamily": "Akronim, system-ui", - "slug": "akronim", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/akronim/v23/fdN-9sqWtWZZlHRp-gBxkFYN-a8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Akronim", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/akronim/akronim-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/akronim/akronim.svg" - }, - { - "name": "Akshar", - "fontFamily": "Akshar, sans-serif", - "slug": "akshar", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSSgFy9CY94XsnPc.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Akshar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/akshar/akshar-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSXYFy9CY94XsnPc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Akshar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/akshar/akshar-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSUQFy9CY94XsnPc.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Akshar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/akshar/akshar-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSagCy9CY94XsnPc.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Akshar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/akshar/akshar-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSZECy9CY94XsnPc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Akshar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/akshar/akshar-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/akshar/akshar.svg" - }, - { - "name": "Aladin", - "fontFamily": "Aladin, system-ui", - "slug": "aladin", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aladin/v24/ZgNSjPJFPrvJV5f16Sf4pGT2Ng.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aladin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aladin/aladin-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aladin/aladin.svg" - }, - { - "name": "Alata", - "fontFamily": "Alata, sans-serif", - "slug": "alata", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alata/v9/PbytFmztEwbIofe6xKcRQEOX.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alata/alata-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alata/alata.svg" - }, - { - "name": "Alatsi", - "fontFamily": "Alatsi, sans-serif", - "slug": "alatsi", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alatsi/v11/TK3iWkUJAxQ2nLNGHjUHte5fKg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alatsi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alatsi/alatsi-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alatsi/alatsi.svg" - }, - { - "name": "Albert Sans", - "fontFamily": "Albert Sans, sans-serif", - "slug": "albert-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5L_rI32TxAj1g.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Albert Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/albert-sans/albert-sans-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5P_rI32TxAj1g.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Albert Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/albert-sans/albert-sans-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSH9ZP_rI32TxAj1g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Albert Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/albert-sans/albert-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5P_rI32TxAj1g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Albert Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/albert-sans/albert-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHmZP_rI32TxAj1g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Albert Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/albert-sans/albert-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHdZT_rI32TxAj1g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Albert Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/albert-sans/albert-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHTJT_rI32TxAj1g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Albert Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/albert-sans/albert-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5T_rI32TxAj1g.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Albert Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/albert-sans/albert-sans-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHApT_rI32TxAj1g.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Albert Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/albert-sans/albert-sans-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX7ofybRUz1r5t.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Albert Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/albert-sans/albert-sans-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX74fybRUz1r5t.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Albert Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/albert-sans/albert-sans-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9BJ74fybRUz1r5t.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Albert Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/albert-sans/albert-sans-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX74fybRUz1r5t.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Albert Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/albert-sans/albert-sans-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Al74fybRUz1r5t.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Albert Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/albert-sans/albert-sans-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Albert Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/albert-sans/albert-sans-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Albert Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/albert-sans/albert-sans-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Albert Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/albert-sans/albert-sans-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9C-6IfybRUz1r5t.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Albert Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/albert-sans/albert-sans-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/albert-sans/albert-sans.svg" - }, - { - "name": "Aldrich", - "fontFamily": "Aldrich, sans-serif", - "slug": "aldrich", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aldrich/v21/MCoTzAn-1s3IGyJMZaAS3pP5H_E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aldrich", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aldrich/aldrich-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aldrich/aldrich.svg" - }, - { - "name": "Alef", - "fontFamily": "Alef, sans-serif", - "slug": "alef", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alef/v21/FeVfS0NQpLYgrjJbC5FxxbU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alef", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alef/alef-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alef/v21/FeVQS0NQpLYglo50L5la2bxii28.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alef", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alef/alef-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alef/alef.svg" - }, - { - "name": "Alegreya", - "fontFamily": "Alegreya, serif", - "slug": "alegreya", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hUI_KCisSGVrw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alegreya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya/alegreya-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGxBUI_KCisSGVrw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Alegreya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya/alegreya-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGKBII_KCisSGVrw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Alegreya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya/alegreya-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGERII_KCisSGVrw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alegreya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya/alegreya-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGdhII_KCisSGVrw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Alegreya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya/alegreya-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGXxII_KCisSGVrw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Alegreya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya/alegreya-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbgv6qmkySFr9V9.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alegreya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya/alegreya-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbSv6qmkySFr9V9.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Alegreya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya/alegreya-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlY-uKqmkySFr9V9.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Alegreya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya/alegreya-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlYHuKqmkySFr9V9.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Alegreya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya/alegreya-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZguKqmkySFr9V9.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Alegreya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya/alegreya-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZJuKqmkySFr9V9.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Alegreya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya/alegreya-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya/alegreya.svg" - }, - { - "name": "Alegreya SC", - "fontFamily": "Alegreya SC, serif", - "slug": "alegreya-sc", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasc/v25/taiOGmRtCJ62-O0HhNEa-a6o05E5abe_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alegreya SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sc/alegreya-sc-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasc/v25/taiMGmRtCJ62-O0HhNEa-Z6q2ZUbbKe_DGs.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alegreya SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sc/alegreya-sc-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZZc-rUxQqu2FXKD.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Alegreya SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sc/alegreya-sc-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4WEySK-UEGKDBz4.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Alegreya SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sc/alegreya-sc-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYU_LUxQqu2FXKD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alegreya SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sc/alegreya-sc-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4Sk0SK-UEGKDBz4.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Alegreya SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sc/alegreya-sc-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYI_7UxQqu2FXKD.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Alegreya SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sc/alegreya-sc-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4TU3SK-UEGKDBz4.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Alegreya SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sc/alegreya-sc-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYs_rUxQqu2FXKD.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Alegreya SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sc/alegreya-sc-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4RE2SK-UEGKDBz4.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Alegreya SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sc/alegreya-sc-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sc/alegreya-sc.svg" - }, - { - "name": "Alegreya Sans", - "fontFamily": "Alegreya Sans, sans-serif", - "slug": "alegreya-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasans/v24/5aUt9_-1phKLFgshYDvh6Vwt5TltuGdShm5bsg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans/alegreya-sans-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasans/v24/5aUv9_-1phKLFgshYDvh6Vwt7V9V3G1WpGtLsgu7.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans/alegreya-sans-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5fFPmE18imdCqxI.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans/alegreya-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VFE92jkVHuxKiBA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans/alegreya-sans-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasans/v24/5aUz9_-1phKLFgshYDvh6Vwt3V1nvEVXlm4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans/alegreya-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasans/v24/5aUt9_-1phKLFgshYDvh6Vwt7V9tuGdShm5bsg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans/alegreya-sans-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5alOmE18imdCqxI.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans/alegreya-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VTE52jkVHuxKiBA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans/alegreya-sans-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5eFImE18imdCqxI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans/alegreya-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VBEh2jkVHuxKiBA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans/alegreya-sans-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5f1LmE18imdCqxI.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans/alegreya-sans-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VGEt2jkVHuxKiBA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans/alegreya-sans-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5dlKmE18imdCqxI.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans/alegreya-sans-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VPEp2jkVHuxKiBA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans/alegreya-sans-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans/alegreya-sans.svg" - }, - { - "name": "Alegreya Sans SC", - "fontFamily": "Alegreya Sans SC, sans-serif", - "slug": "alegreya-sans-sc", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Dipl8g5FPYtmMg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans-sc/alegreya-sans-sc-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGl4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdlgRBH452Mvds.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans-sc/alegreya-sans-sc-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DuJH0iRrMYJ_K-4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans-sc/alegreya-sans-sc-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdXiZhNaB6O-51OA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans-sc/alegreya-sans-sc-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nk5v9ixALYs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans-sc/alegreya-sans-sc-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Bkxl8g5FPYtmMg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans-sc/alegreya-sans-sc-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DrpG0iRrMYJ_K-4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans-sc/alegreya-sans-sc-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdBidhNaB6O-51OA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans-sc/alegreya-sans-sc-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DvJA0iRrMYJ_K-4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans-sc/alegreya-sans-sc-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdTiFhNaB6O-51OA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans-sc/alegreya-sans-sc-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1Du5D0iRrMYJ_K-4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans-sc/alegreya-sans-sc-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdUiJhNaB6O-51OA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans-sc/alegreya-sans-sc-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DspC0iRrMYJ_K-4.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans-sc/alegreya-sans-sc-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxddiNhNaB6O-51OA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans-sc/alegreya-sans-sc-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alegreya-sans-sc/alegreya-sans-sc.svg" - }, - { - "name": "Aleo", - "fontFamily": "Aleo, serif", - "slug": "aleo", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aleo/v14/c4m61nF8G8_s6gHhIOX0IYBo_KJ3G2P9HI4qCBtJ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Aleo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aleo/aleo-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aleo/v14/c4m61nF8G8_s6gHhIOX0IYBo_KL3GmP9HI4qCBtJ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Aleo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aleo/aleo-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aleo/v14/c4m61nF8G8_s6gHhIOX0IYBo_KIpGmP9HI4qCBtJ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Aleo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aleo/aleo-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aleo/v14/c4m61nF8G8_s6gHhIOX0IYBo_KJ3GmP9HI4qCBtJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aleo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aleo/aleo-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aleo/v14/c4m61nF8G8_s6gHhIOX0IYBo_KJFGmP9HI4qCBtJ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Aleo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aleo/aleo-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aleo/v14/c4m61nF8G8_s6gHhIOX0IYBo_KKpHWP9HI4qCBtJ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Aleo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aleo/aleo-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aleo/v14/c4m61nF8G8_s6gHhIOX0IYBo_KKQHWP9HI4qCBtJ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Aleo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aleo/aleo-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aleo/v14/c4m61nF8G8_s6gHhIOX0IYBo_KL3HWP9HI4qCBtJ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Aleo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aleo/aleo-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aleo/v14/c4m61nF8G8_s6gHhIOX0IYBo_KLeHWP9HI4qCBtJ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Aleo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aleo/aleo-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aleo/v14/c4m81nF8G8_swAjT3z2dShrG-7e_WYu_FooIDQtJbok.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Aleo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aleo/aleo-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aleo/v14/c4m81nF8G8_swAjT3z2dShrG-7e_WQu-FooIDQtJbok.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Aleo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aleo/aleo-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aleo/v14/c4m81nF8G8_swAjT3z2dShrG-7e_WdW-FooIDQtJbok.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Aleo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aleo/aleo-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aleo/v14/c4m81nF8G8_swAjT3z2dShrG-7e_WYu-FooIDQtJbok.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Aleo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aleo/aleo-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aleo/v14/c4m81nF8G8_swAjT3z2dShrG-7e_Wbm-FooIDQtJbok.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Aleo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aleo/aleo-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aleo/v14/c4m81nF8G8_swAjT3z2dShrG-7e_WVW5FooIDQtJbok.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Aleo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aleo/aleo-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aleo/v14/c4m81nF8G8_swAjT3z2dShrG-7e_WWy5FooIDQtJbok.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Aleo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aleo/aleo-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aleo/v14/c4m81nF8G8_swAjT3z2dShrG-7e_WQu5FooIDQtJbok.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Aleo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aleo/aleo-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aleo/v14/c4m81nF8G8_swAjT3z2dShrG-7e_WSK5FooIDQtJbok.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Aleo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aleo/aleo-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aleo/aleo.svg" - }, - { - "name": "Alex Brush", - "fontFamily": "Alex Brush, cursive", - "slug": "alex-brush", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alexbrush/v22/SZc83FzrJKuqFbwMKk6EtUL57DtOmCc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alex Brush", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alex-brush/alex-brush-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alex-brush/alex-brush.svg" - }, - { - "name": "Alexandria", - "fontFamily": "Alexandria, sans-serif", - "slug": "alexandria", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7T6bHHJ8BRq0b.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Alexandria", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alexandria/alexandria-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9p7TqbHHJ8BRq0b.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Alexandria", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alexandria/alexandria-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9qlTqbHHJ8BRq0b.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Alexandria", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alexandria/alexandria-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alexandria", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alexandria/alexandria-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9rJTqbHHJ8BRq0b.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Alexandria", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alexandria/alexandria-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Alexandria", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alexandria/alexandria-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9ocSabHHJ8BRq0b.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alexandria", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alexandria/alexandria-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9p7SabHHJ8BRq0b.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Alexandria", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alexandria/alexandria-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9pSSabHHJ8BRq0b.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Alexandria", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alexandria/alexandria-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alexandria/alexandria.svg" - }, - { - "name": "Alfa Slab One", - "fontFamily": "Alfa Slab One, system-ui", - "slug": "alfa-slab-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alfaslabone/v19/6NUQ8FmMKwSEKjnm5-4v-4Jh6dVretWvYmE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alfa Slab One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alfa-slab-one/alfa-slab-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alfa-slab-one/alfa-slab-one.svg" - }, - { - "name": "Alice", - "fontFamily": "Alice, serif", - "slug": "alice", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alice/v20/OpNCnoEEmtHa6FcJpA_chzJ0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alice", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alice/alice-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alice/alice.svg" - }, - { - "name": "Alike", - "fontFamily": "Alike, serif", - "slug": "alike", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alike/v20/HI_EiYEYI6BIoEjBSZXAQ4-d.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alike", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alike/alike-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alike/alike.svg" - }, - { - "name": "Alike Angular", - "fontFamily": "Alike Angular, serif", - "slug": "alike-angular", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alikeangular/v24/3qTrojWunjGQtEBlIcwMbSoI3kM6bB7FKjE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alike Angular", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alike-angular/alike-angular-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alike-angular/alike-angular.svg" - }, - { - "name": "Alkalami", - "fontFamily": "Alkalami, serif", - "slug": "alkalami", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alkalami/v7/zOL_4pfDmqRL95WXi5eLw8BMuvhH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alkalami", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alkalami/alkalami-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alkalami/alkalami.svg" - }, - { - "name": "Alkatra", - "fontFamily": "Alkatra, system-ui", - "slug": "alkatra", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48Medzngmu7cPrNDVemxE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alkatra", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alkatra/alkatra-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48MedzngUu7cPrNDVemxE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Alkatra", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alkatra/alkatra-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48Medznj4vLcPrNDVemxE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Alkatra", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alkatra/alkatra-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48MedznjBvLcPrNDVemxE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alkatra", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alkatra/alkatra-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alkatra/alkatra.svg" - }, - { - "name": "Allan", - "fontFamily": "Allan, system-ui", - "slug": "allan", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/allan/v24/ea8XadU7WuTxEtb2P9SF8nZE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Allan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/allan/allan-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/allan/v24/ea8aadU7WuTxEu5KEPCN2WpNgEKU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Allan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/allan/allan-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/allan/allan.svg" - }, - { - "name": "Allerta", - "fontFamily": "Allerta, sans-serif", - "slug": "allerta", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/allerta/v18/TwMO-IAHRlkbx940UnEdSQqO5uY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Allerta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/allerta/allerta-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/allerta/allerta.svg" - }, - { - "name": "Allerta Stencil", - "fontFamily": "Allerta Stencil, sans-serif", - "slug": "allerta-stencil", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/allertastencil/v22/HTx0L209KT-LmIE9N7OR6eiycOeF-zz313DuvQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Allerta Stencil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/allerta-stencil/allerta-stencil-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/allerta-stencil/allerta-stencil.svg" - }, - { - "name": "Allison", - "fontFamily": "Allison, cursive", - "slug": "allison", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/allison/v11/X7nl4b88AP2nkbvZOCaQ4MTgAgk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Allison", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/allison/allison-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/allison/allison.svg" - }, - { - "name": "Allura", - "fontFamily": "Allura, cursive", - "slug": "allura", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/allura/v21/9oRPNYsQpS4zjuAPjAIXPtrrGA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Allura", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/allura/allura-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/allura/allura.svg" - }, - { - "name": "Almarai", - "fontFamily": "Almarai, sans-serif", - "slug": "almarai", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_anhnicoq72sXg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Almarai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/almarai/almarai-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/almarai/v12/tsstApxBaigK_hnnc1qPonC3vqc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Almarai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/almarai/almarai-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS-aghnicoq72sXg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Almarai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/almarai/almarai-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_qjhnicoq72sXg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Almarai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/almarai/almarai-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/almarai/almarai.svg" - }, - { - "name": "Almendra", - "fontFamily": "Almendra, serif", - "slug": "almendra", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/almendra/v26/H4ckBXKAlMnTn0CskyY6wr-wg763.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Almendra", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/almendra/almendra-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/almendra/v26/H4ciBXKAlMnTn0CskxY4yLuShq63czE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Almendra", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/almendra/almendra-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/almendra/v26/H4cjBXKAlMnTn0Cskx6G7Zu4qKK-aihq.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Almendra", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/almendra/almendra-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/almendra/v26/H4chBXKAlMnTn0CskxY48Ae9oqacbzhqDtg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Almendra", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/almendra/almendra-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/almendra/almendra.svg" - }, - { - "name": "Almendra Display", - "fontFamily": "Almendra Display, system-ui", - "slug": "almendra-display", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/almendradisplay/v31/0FlPVOGWl1Sb4O3tETtADHRRlZhzXS_eTyer338.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Almendra Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/almendra-display/almendra-display-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/almendra-display/almendra-display.svg" - }, - { - "name": "Almendra SC", - "fontFamily": "Almendra SC, serif", - "slug": "almendra-sc", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/almendrasc/v29/Iure6Yx284eebowr7hbyTZZJprVA4XQ0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Almendra SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/almendra-sc/almendra-sc-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/almendra-sc/almendra-sc.svg" - }, - { - "name": "Alumni Sans", - "fontFamily": "Alumni Sans, sans-serif", - "slug": "alumni-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisans/v18/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO5QqFsJ3C8qng.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Alumni Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans/alumni-sans-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisans/v18/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uO9QqFsJ3C8qng.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Alumni Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans/alumni-sans-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisans/v18/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Zu9QqFsJ3C8qng.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Alumni Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans/alumni-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisans/v18/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO9QqFsJ3C8qng.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alumni Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans/alumni-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisans/v18/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Cu9QqFsJ3C8qng.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Alumni Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans/alumni-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisans/v18/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd95uhQqFsJ3C8qng.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Alumni Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans/alumni-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisans/v18/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd93-hQqFsJ3C8qng.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alumni Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans/alumni-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisans/v18/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uOhQqFsJ3C8qng.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Alumni Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans/alumni-sans-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisans/v18/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9kehQqFsJ3C8qng.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Alumni Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans/alumni-sans-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisans/v18/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky46lEN_io6npfB.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Alumni Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans/alumni-sans-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisans/v18/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw461EN_io6npfB.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Alumni Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans/alumni-sans-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisans/v18/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Alumni Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans/alumni-sans-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisans/v18/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky461EN_io6npfB.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alumni Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans/alumni-sans-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisans/v18/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KyK61EN_io6npfB.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Alumni Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans/alumni-sans-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisans/v18/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Alumni Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans/alumni-sans-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisans/v18/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Alumni Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans/alumni-sans-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisans/v18/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Alumni Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans/alumni-sans-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisans/v18/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Alumni Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans/alumni-sans-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans/alumni-sans.svg" - }, - { - "name": "Alumni Sans Collegiate One", - "fontFamily": "Alumni Sans Collegiate One, sans-serif", - "slug": "alumni-sans-collegiate-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisanscollegiateone/v5/MQpB-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhjdayDiPw2ta.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alumni Sans Collegiate One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans-collegiate-one/alumni-sans-collegiate-one-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisanscollegiateone/v5/MQpD-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhgdYwjytxntaDFU.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alumni Sans Collegiate One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans-collegiate-one/alumni-sans-collegiate-one-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans-collegiate-one/alumni-sans-collegiate-one.svg" - }, - { - "name": "Alumni Sans Inline One", - "fontFamily": "Alumni Sans Inline One, system-ui", - "slug": "alumni-sans-inline-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisansinlineone/v5/RrQBbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpD3AZcr7xbYw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alumni Sans Inline One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans-inline-one/alumni-sans-inline-one-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisansinlineone/v5/RrQDbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpP3ITdpz0fYxcrQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alumni Sans Inline One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans-inline-one/alumni-sans-inline-one-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans-inline-one/alumni-sans-inline-one.svg" - }, - { - "name": "Alumni Sans Pinstripe", - "fontFamily": "Alumni Sans Pinstripe, sans-serif", - "slug": "alumni-sans-pinstripe", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisanspinstripe/v6/ZgNNjOFFPq_AUJD1umyS30W-Xub8zD1ObhezYrVIpcDA5w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alumni Sans Pinstripe", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans-pinstripe/alumni-sans-pinstripe-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/alumnisanspinstripe/v6/ZgNDjOFFPq_AUJD1umyS30W-Xub8zD1ObheDYL9Mh8XQ5_cY.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alumni Sans Pinstripe", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans-pinstripe/alumni-sans-pinstripe-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/alumni-sans-pinstripe/alumni-sans-pinstripe.svg" - }, - { - "name": "Amarante", - "fontFamily": "Amarante, system-ui", - "slug": "amarante", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/amarante/v28/xMQXuF1KTa6EvGx9bq-3C3rAmD-b.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amarante", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amarante/amarante-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amarante/amarante.svg" - }, - { - "name": "Amaranth", - "fontFamily": "Amaranth, sans-serif", - "slug": "amaranth", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/amaranth/v18/KtkuALODe433f0j1zPnCF9GqwnzW.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amaranth", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amaranth/amaranth-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/amaranth/v18/KtkoALODe433f0j1zMnAHdWIx2zWD4I.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Amaranth", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amaranth/amaranth-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/amaranth/v18/KtkpALODe433f0j1zMF-OPWi6WDfFpuc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Amaranth", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amaranth/amaranth-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/amaranth/v18/KtkrALODe433f0j1zMnAJWmn42T9E4ucRY8.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Amaranth", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amaranth/amaranth-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amaranth/amaranth.svg" - }, - { - "name": "Amatic SC", - "fontFamily": "Amatic SC, cursive", - "slug": "amatic-sc", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/amaticsc/v26/TUZyzwprpvBS1izr_vO0De6ecZQf1A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amatic SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amatic-sc/amatic-sc-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/amaticsc/v26/TUZ3zwprpvBS1izr_vOMscG6eb8D3WTy-A.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Amatic SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amatic-sc/amatic-sc-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amatic-sc/amatic-sc.svg" - }, - { - "name": "Amethysta", - "fontFamily": "Amethysta, serif", - "slug": "amethysta", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/amethysta/v16/rP2Fp2K15kgb_F3ibfWIGDWCBl0O8Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amethysta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amethysta/amethysta-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amethysta/amethysta.svg" - }, - { - "name": "Amiko", - "fontFamily": "Amiko, sans-serif", - "slug": "amiko", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/amiko/v12/WwkQxPq1DFK04tqlc17MMZgJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amiko", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amiko/amiko-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uJ9XXrEGoQAUco5.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Amiko", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amiko/amiko-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uIZXHrEGoQAUco5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Amiko", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amiko/amiko-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amiko/amiko.svg" - }, - { - "name": "Amiri", - "fontFamily": "Amiri, serif", - "slug": "amiri", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/amiri/v27/J7aRnpd8CGxBHqUpvrIw74NL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amiri", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amiri/amiri-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/amiri/v27/J7afnpd8CGxBHpUrtLYS6pNLAjk.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Amiri", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amiri/amiri-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/amiri/v27/J7acnpd8CGxBHp2VkZY4xJ9CGyAa.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Amiri", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amiri/amiri-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/amiri/v27/J7aanpd8CGxBHpUrjAo9zptgHjAavCA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Amiri", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amiri/amiri-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amiri/amiri.svg" - }, - { - "name": "Amiri Quran", - "fontFamily": "Amiri Quran, serif", - "slug": "amiri-quran", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/amiriquran/v7/_Xmo-Hk0rD6DbUL4_vH8Zq5t7Cycsu-2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amiri Quran", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amiri-quran/amiri-quran-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amiri-quran/amiri-quran.svg" - }, - { - "name": "Amita", - "fontFamily": "Amita, cursive", - "slug": "amita", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/amita/v18/HhyaU5si9Om7PQlvAfSKEZZL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amita", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amita/amita-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/amita/v18/HhyXU5si9Om7PTHTLtCCOopCTKkI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Amita", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amita/amita-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/amita/amita.svg" - }, - { - "name": "Anaheim", - "fontFamily": "Anaheim, sans-serif", - "slug": "anaheim", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anaheim/v14/8vII7w042Wp87g4G0UTUEE5eK_w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anaheim", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anaheim/anaheim-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anaheim/anaheim.svg" - }, - { - "name": "Andada Pro", - "fontFamily": "Andada Pro, serif", - "slug": "andada-pro", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DPJBY8cFLzvIt2S.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Andada Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/andada-pro/andada-pro-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DP7BY8cFLzvIt2S.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Andada Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/andada-pro/andada-pro-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMXAo8cFLzvIt2S.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Andada Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/andada-pro/andada-pro-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMuAo8cFLzvIt2S.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Andada Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/andada-pro/andada-pro-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DNJAo8cFLzvIt2S.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Andada Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/andada-pro/andada-pro-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRmdfHrjNJ82Stjw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Andada Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/andada-pro/andada-pro-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRlVfHrjNJ82Stjw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Andada Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/andada-pro/andada-pro-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRrlYHrjNJ82Stjw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Andada Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/andada-pro/andada-pro-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRoBYHrjNJ82Stjw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Andada Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/andada-pro/andada-pro-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRudYHrjNJ82Stjw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Andada Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/andada-pro/andada-pro-800-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/andada-pro/andada-pro.svg" - }, - { - "name": "Andika", - "fontFamily": "Andika, sans-serif", - "slug": "andika", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/andika/v25/mem_Ya6iyW-LwqgAbbwRWrwGVA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Andika", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/andika/andika-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/andika/v25/mem9Ya6iyW-Lwqgwb7YVeLkWVNBt.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Andika", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/andika/andika-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/andika/v25/mem8Ya6iyW-Lwqg40ZM1UpcaXcl0Aw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Andika", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/andika/andika-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/andika/v25/mem6Ya6iyW-Lwqgwb46pV50ef8xkA76a.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Andika", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/andika/andika-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/andika/andika.svg" - }, - { - "name": "Anek Bangla", - "fontFamily": "Anek Bangla, sans-serif", - "slug": "anek-bangla", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9YIocg56yyvt0.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Bangla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-bangla/anek-bangla-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9ZIocg56yyvt0.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Bangla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-bangla/anek-bangla-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfjFZIocg56yyvt0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Bangla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-bangla/anek-bangla-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9ZIocg56yyvt0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Bangla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-bangla/anek-bangla-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofl1ZIocg56yyvt0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Bangla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-bangla/anek-bangla-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfrFeIocg56yyvt0.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Bangla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-bangla/anek-bangla-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfoheIocg56yyvt0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Bangla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-bangla/anek-bangla-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9eIocg56yyvt0.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Bangla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-bangla/anek-bangla-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-bangla/anek-bangla.svg" - }, - { - "name": "Anek Devanagari", - "fontFamily": "Anek Devanagari, sans-serif", - "slug": "anek-devanagari", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtk-9nFk0LjZ7E.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-devanagari/anek-devanagari-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtku9nFk0LjZ7E.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-devanagari/anek-devanagari-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLCzku9nFk0LjZ7E.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-devanagari/anek-devanagari-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtku9nFk0LjZ7E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-devanagari/anek-devanagari-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDfku9nFk0LjZ7E.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-devanagari/anek-devanagari-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAzle9nFk0LjZ7E.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-devanagari/anek-devanagari-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAKle9nFk0LjZ7E.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-devanagari/anek-devanagari-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtle9nFk0LjZ7E.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-devanagari/anek-devanagari-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-devanagari/anek-devanagari.svg" - }, - { - "name": "Anek Gujarati", - "fontFamily": "Anek Gujarati, sans-serif", - "slug": "anek-gujarati", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5G7w0KgB7Lm7g.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-gujarati/anek-gujarati-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5C7w0KgB7Lm7g.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-gujarati/anek-gujarati-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0SZC7w0KgB7Lm7g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-gujarati/anek-gujarati-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5C7w0KgB7Lm7g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-gujarati/anek-gujarati-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0JZC7w0KgB7Lm7g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-gujarati/anek-gujarati-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0yZe7w0KgB7Lm7g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-gujarati/anek-gujarati-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-08Je7w0KgB7Lm7g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-gujarati/anek-gujarati-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5e7w0KgB7Lm7g.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-gujarati/anek-gujarati-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-gujarati/anek-gujarati.svg" - }, - { - "name": "Anek Gurmukhi", - "fontFamily": "Anek Gurmukhi, sans-serif", - "slug": "anek-gurmukhi", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5ppXK41H6DjbA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-gurmukhi/anek-gurmukhi-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95tpXK41H6DjbA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-gurmukhi/anek-gurmukhi-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbKZtpXK41H6DjbA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-gurmukhi/anek-gurmukhi-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5tpXK41H6DjbA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-gurmukhi/anek-gurmukhi-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbRZtpXK41H6DjbA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-gurmukhi/anek-gurmukhi-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbqZxpXK41H6DjbA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-gurmukhi/anek-gurmukhi-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbkJxpXK41H6DjbA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-gurmukhi/anek-gurmukhi-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95xpXK41H6DjbA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-gurmukhi/anek-gurmukhi-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-gurmukhi/anek-gurmukhi.svg" - }, - { - "name": "Anek Kannada", - "fontFamily": "Anek Kannada, sans-serif", - "slug": "anek-kannada", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEAukVReA1oef.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-kannada/anek-kannada-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDEQukVReA1oef.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-kannada/anek-kannada-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dEdEQukVReA1oef.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-kannada/anek-kannada-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEQukVReA1oef.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-kannada/anek-kannada-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFxEQukVReA1oef.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-kannada/anek-kannada-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGdFgukVReA1oef.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-kannada/anek-kannada-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGkFgukVReA1oef.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-kannada/anek-kannada-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDFgukVReA1oef.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-kannada/anek-kannada-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-kannada/anek-kannada.svg" - }, - { - "name": "Anek Latin", - "fontFamily": "Anek Latin, sans-serif", - "slug": "anek-latin", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7EZKdClWL3kgw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Latin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-latin/anek-latin-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7AZKdClWL3kgw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Latin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-latin/anek-latin-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuGbAZKdClWL3kgw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Latin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-latin/anek-latin-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7AZKdClWL3kgw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Latin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-latin/anek-latin-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PudbAZKdClWL3kgw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Latin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-latin/anek-latin-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PumbcZKdClWL3kgw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Latin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-latin/anek-latin-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuoLcZKdClWL3kgw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Latin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-latin/anek-latin-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7cZKdClWL3kgw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Latin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-latin/anek-latin-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-latin/anek-latin.svg" - }, - { - "name": "Anek Malayalam", - "fontFamily": "Anek Malayalam, sans-serif", - "slug": "anek-malayalam", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu_HMr5PDO71Qs.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-malayalam/anek-malayalam-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu-HMr5PDO71Qs.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-malayalam/anek-malayalam-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUcW-HMr5PDO71Qs.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-malayalam/anek-malayalam-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu-HMr5PDO71Qs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-malayalam/anek-malayalam-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUam-HMr5PDO71Qs.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-malayalam/anek-malayalam-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUUW5HMr5PDO71Qs.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-malayalam/anek-malayalam-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUXy5HMr5PDO71Qs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-malayalam/anek-malayalam-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu5HMr5PDO71Qs.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-malayalam/anek-malayalam-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-malayalam/anek-malayalam.svg" - }, - { - "name": "Anek Odia", - "fontFamily": "Anek Odia, sans-serif", - "slug": "anek-odia", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZf63mXZAtm_es.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Odia", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-odia/anek-odia-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZfq3mXZAtm_es.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Odia", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-odia/anek-odia-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnnHfq3mXZAtm_es.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Odia", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-odia/anek-odia-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZfq3mXZAtm_es.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Odia", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-odia/anek-odia-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmrfq3mXZAtm_es.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Odia", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-odia/anek-odia-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnlHea3mXZAtm_es.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Odia", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-odia/anek-odia-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnl-ea3mXZAtm_es.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Odia", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-odia/anek-odia-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZea3mXZAtm_es.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Odia", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-odia/anek-odia-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-odia/anek-odia.svg" - }, - { - "name": "Anek Tamil", - "fontFamily": "Anek Tamil, sans-serif", - "slug": "anek-tamil", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQiZ6q4v4oegjOQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-tamil/anek-tamil-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwid6q4v4oegjOQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-tamil/anek-tamil-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNHCd6q4v4oegjOQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-tamil/anek-tamil-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQid6q4v4oegjOQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-tamil/anek-tamil-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNcCd6q4v4oegjOQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-tamil/anek-tamil-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNnCB6q4v4oegjOQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-tamil/anek-tamil-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNpSB6q4v4oegjOQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-tamil/anek-tamil-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwiB6q4v4oegjOQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-tamil/anek-tamil-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-tamil/anek-tamil.svg" - }, - { - "name": "Anek Telugu", - "fontFamily": "Anek Telugu, sans-serif", - "slug": "anek-telugu", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y-_oE2G2ep10_8.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-telugu/anek-telugu-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136--oE2G2ep10_8.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-telugu/anek-telugu-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i133G-oE2G2ep10_8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-telugu/anek-telugu-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y--oE2G2ep10_8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-telugu/anek-telugu-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13x2-oE2G2ep10_8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-telugu/anek-telugu-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13_G5oE2G2ep10_8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-telugu/anek-telugu-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i138i5oE2G2ep10_8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-telugu/anek-telugu-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136-5oE2G2ep10_8.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-telugu/anek-telugu-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anek-telugu/anek-telugu.svg" - }, - { - "name": "Angkor", - "fontFamily": "Angkor, system-ui", - "slug": "angkor", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/angkor/v32/H4cmBXyAlsPdnlb-8iw-4Lqggw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Angkor", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/angkor/angkor-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/angkor/angkor.svg" - }, - { - "name": "Annie Use Your Telescope", - "fontFamily": "Annie Use Your Telescope, cursive", - "slug": "annie-use-your-telescope", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/annieuseyourtelescope/v18/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjlDfB3UUVZA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Annie Use Your Telescope", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/annie-use-your-telescope/annie-use-your-telescope-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/annie-use-your-telescope/annie-use-your-telescope.svg" - }, - { - "name": "Anonymous Pro", - "fontFamily": "Anonymous Pro, monospace", - "slug": "anonymous-pro", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anonymouspro/v21/rP2Bp2a15UIB7Un-bOeISG3pLlw89CH98Ko.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anonymous Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anonymous-pro/anonymous-pro-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anonymouspro/v21/rP2fp2a15UIB7Un-bOeISG3pHl428AP44Kqr2Q.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Anonymous Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anonymous-pro/anonymous-pro-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anonymouspro/v21/rP2cp2a15UIB7Un-bOeISG3pFuAT0CnW7KOywKo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anonymous Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anonymous-pro/anonymous-pro-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anonymouspro/v21/rP2ap2a15UIB7Un-bOeISG3pHl4OTCzc6IG30KqB9Q.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Anonymous Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anonymous-pro/anonymous-pro-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anonymous-pro/anonymous-pro.svg" - }, - { - "name": "Antic", - "fontFamily": "Antic, sans-serif", - "slug": "antic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/antic/v19/TuGfUVB8XY5DRaZLodgzydtk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Antic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/antic/antic-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/antic/antic.svg" - }, - { - "name": "Antic Didone", - "fontFamily": "Antic Didone, serif", - "slug": "antic-didone", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anticdidone/v16/RWmPoKKX6u8sp8fIWdnDKqDiqYsGBGBzCw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Antic Didone", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/antic-didone/antic-didone-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/antic-didone/antic-didone.svg" - }, - { - "name": "Antic Slab", - "fontFamily": "Antic Slab, serif", - "slug": "antic-slab", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anticslab/v16/bWt97fPFfRzkCa9Jlp6IWcJWXW5p5Qo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Antic Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/antic-slab/antic-slab-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/antic-slab/antic-slab.svg" - }, - { - "name": "Anton", - "fontFamily": "Anton, sans-serif", - "slug": "anton", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anton/v25/1Ptgg87LROyAm0K08i4gS7lu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anton", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anton/anton-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anton/anton.svg" - }, - { - "name": "Antonio", - "fontFamily": "Antonio, sans-serif", - "slug": "antonio", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/antonio/v19/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8BtIY2DwSXlM.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Antonio", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/antonio/antonio-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/antonio/v19/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVzx8RtIY2DwSXlM.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Antonio", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/antonio/antonio-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/antonio/v19/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVwv8RtIY2DwSXlM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Antonio", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/antonio/antonio-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/antonio/v19/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8RtIY2DwSXlM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Antonio", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/antonio/antonio-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/antonio/v19/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxD8RtIY2DwSXlM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Antonio", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/antonio/antonio-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/antonio/v19/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyv9htIY2DwSXlM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Antonio", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/antonio/antonio-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/antonio/v19/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyW9htIY2DwSXlM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Antonio", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/antonio/antonio-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/antonio/antonio.svg" - }, - { - "name": "Anuphan", - "fontFamily": "Anuphan, sans-serif", - "slug": "anuphan", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkY9A4kGmW927Gu.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anuphan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anuphan/anuphan-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCmY9Q4kGmW927Gu.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anuphan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anuphan/anuphan-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZClG9Q4kGmW927Gu.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anuphan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anuphan/anuphan-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkY9Q4kGmW927Gu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anuphan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anuphan/anuphan-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkq9Q4kGmW927Gu.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anuphan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anuphan/anuphan-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCnG8g4kGmW927Gu.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anuphan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anuphan/anuphan-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCn_8g4kGmW927Gu.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anuphan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anuphan/anuphan-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anuphan/anuphan.svg" - }, - { - "name": "Anybody", - "fontFamily": "Anybody, system-ui", - "slug": "anybody", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anybody/v11/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12HPrsXD_nBPpQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anybody", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anybody/anybody-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anybody/v11/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2DPrsXD_nBPpQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anybody", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anybody/anybody-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anybody/v11/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JiWDPrsXD_nBPpQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anybody", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anybody/anybody-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anybody/v11/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12DPrsXD_nBPpQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anybody", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anybody/anybody-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anybody/v11/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J5WDPrsXD_nBPpQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anybody", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anybody/anybody-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anybody/v11/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JCWfPrsXD_nBPpQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anybody", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anybody/anybody-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anybody/v11/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JMGfPrsXD_nBPpQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anybody", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anybody/anybody-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anybody/v11/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2fPrsXD_nBPpQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anybody", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anybody/anybody-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anybody/v11/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JfmfPrsXD_nBPpQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Anybody", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anybody/anybody-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anybody/v11/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7M_H3HVfpcHY.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Anybody", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anybody/anybody-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anybody/v11/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn7c_H3HVfpcHY.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Anybody", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anybody/anybody-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anybody/v11/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyN57c_H3HVfpcHY.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Anybody", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anybody/anybody-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anybody/v11/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7c_H3HVfpcHY.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Anybody", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anybody/anybody-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anybody/v11/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMV7c_H3HVfpcHY.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Anybody", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anybody/anybody-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anybody/v11/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyP56s_H3HVfpcHY.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Anybody", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anybody/anybody-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anybody/v11/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyPA6s_H3HVfpcHY.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Anybody", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anybody/anybody-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anybody/v11/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn6s_H3HVfpcHY.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Anybody", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anybody/anybody-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/anybody/v11/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOO6s_H3HVfpcHY.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Anybody", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anybody/anybody-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/anybody/anybody.svg" - }, - { - "name": "Aoboshi One", - "fontFamily": "Aoboshi One, serif", - "slug": "aoboshi-one", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aoboshione/v10/Gg8xN5kXaAXtHQrFxwl10ysLBmZX_UEg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aoboshi One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aoboshi-one/aoboshi-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aoboshi-one/aoboshi-one.svg" - }, - { - "name": "Arapey", - "fontFamily": "Arapey, serif", - "slug": "arapey", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arapey/v16/-W__XJn-UDDA2RC6Z9AcZkIzeg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arapey", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arapey/arapey-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arapey/v16/-W_9XJn-UDDA2RCKZdoYREcjeo0k.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Arapey", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arapey/arapey-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arapey/arapey.svg" - }, - { - "name": "Arbutus", - "fontFamily": "Arbutus, serif", - "slug": "arbutus", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arbutus/v28/NaPYcZ7dG_5J3poob9JtryO8fMU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arbutus", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arbutus/arbutus-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arbutus/arbutus.svg" - }, - { - "name": "Arbutus Slab", - "fontFamily": "Arbutus Slab, serif", - "slug": "arbutus-slab", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arbutusslab/v16/oY1Z8e7OuLXkJGbXtr5ba7ZVa68dJlaFAQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arbutus Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arbutus-slab/arbutus-slab-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arbutus-slab/arbutus-slab.svg" - }, - { - "name": "Architects Daughter", - "fontFamily": "Architects Daughter, cursive", - "slug": "architects-daughter", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/architectsdaughter/v18/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfY5q4szgE-Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Architects Daughter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/architects-daughter/architects-daughter-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/architects-daughter/architects-daughter.svg" - }, - { - "name": "Archivo", - "fontFamily": "Archivo, sans-serif", - "slug": "archivo", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDJp8B1oJ0vyVQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Archivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo/archivo-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDNp8B1oJ0vyVQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Archivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo/archivo-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTajNp8B1oJ0vyVQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Archivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo/archivo-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDNp8B1oJ0vyVQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Archivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo/archivo-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTBjNp8B1oJ0vyVQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Archivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo/archivo-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT6jRp8B1oJ0vyVQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Archivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo/archivo-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT0zRp8B1oJ0vyVQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Archivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo/archivo-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDRp8B1oJ0vyVQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Archivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo/archivo-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTnTRp8B1oJ0vyVQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Archivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo/archivo-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBshdsBU7iVdxQ.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Archivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo/archivo-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABsxdsBU7iVdxQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Archivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo/archivo-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HDfsxdsBU7iVdxQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Archivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo/archivo-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBsxdsBU7iVdxQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Archivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo/archivo-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCzsxdsBU7iVdxQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Archivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo/archivo-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBftBdsBU7iVdxQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Archivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo/archivo-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBmtBdsBU7iVdxQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Archivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo/archivo-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABtBdsBU7iVdxQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Archivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo/archivo-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HAotBdsBU7iVdxQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Archivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo/archivo-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo/archivo.svg" - }, - { - "name": "Archivo Black", - "fontFamily": "Archivo Black, sans-serif", - "slug": "archivo-black", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivoblack/v21/HTxqL289NzCGg4MzN6KJ7eW6OYuP_x7yx3A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Archivo Black", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo-black/archivo-black-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo-black/archivo-black.svg" - }, - { - "name": "Archivo Narrow", - "fontFamily": "Archivo Narrow, sans-serif", - "slug": "archivo-narrow", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvLFGKpHOtFCQ76Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Archivo Narrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo-narrow/archivo-narrow-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvHlGKpHOtFCQ76Q.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Archivo Narrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo-narrow/archivo-narrow-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhv8laKpHOtFCQ76Q.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Archivo Narrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo-narrow/archivo-narrow-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvy1aKpHOtFCQ76Q.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Archivo Narrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo-narrow/archivo-narrow-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJi53mpNiEr6T6Y.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Archivo Narrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo-narrow/archivo-narrow-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJQ53mpNiEr6T6Y.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Archivo Narrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo-narrow/archivo-narrow-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BK84HmpNiEr6T6Y.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Archivo Narrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo-narrow/archivo-narrow-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BKF4HmpNiEr6T6Y.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Archivo Narrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo-narrow/archivo-narrow-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/archivo-narrow/archivo-narrow.svg" - }, - { - "name": "Are You Serious", - "fontFamily": "Are You Serious, cursive", - "slug": "are-you-serious", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/areyouserious/v12/ll8kK2GVSSr-PtjQ5nONVcNn4306hT9nCGRayg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Are You Serious", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/are-you-serious/are-you-serious-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/are-you-serious/are-you-serious.svg" - }, - { - "name": "Aref Ruqaa", - "fontFamily": "Aref Ruqaa, serif", - "slug": "aref-ruqaa", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arefruqaa/v25/WwkbxPW1E165rajQKDulEIAiVNo5xNY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aref Ruqaa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aref-ruqaa/aref-ruqaa-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arefruqaa/v25/WwkYxPW1E165rajQKDulKDwNcNIS2N_7Bdk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Aref Ruqaa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aref-ruqaa/aref-ruqaa-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aref-ruqaa/aref-ruqaa.svg" - }, - { - "name": "Aref Ruqaa Ink", - "fontFamily": "Aref Ruqaa Ink, serif", - "slug": "aref-ruqaa-ink", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arefruqaaink/v10/1q2fY5WOGUFlt84GTOkP6Kdx72ThVIGpgnxL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aref Ruqaa Ink", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aref-ruqaa-ink/aref-ruqaa-ink-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arefruqaaink/v10/1q2cY5WOGUFlt84GTOkP6Kdx71xde6WhqWBCyxWn.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Aref Ruqaa Ink", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aref-ruqaa-ink/aref-ruqaa-ink-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aref-ruqaa-ink/aref-ruqaa-ink.svg" - }, - { - "name": "Arima", - "fontFamily": "Arima, system-ui", - "slug": "arima", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTE-pQGOyYw2fw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Arima", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arima/arima-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX14TA-pQGOyYw2fw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Arima", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arima/arima-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1PzA-pQGOyYw2fw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Arima", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arima/arima-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTA-pQGOyYw2fw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arima", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arima/arima-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1UzA-pQGOyYw2fw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Arima", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arima/arima-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1vzc-pQGOyYw2fw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Arima", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arima/arima-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1hjc-pQGOyYw2fw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Arima", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arima/arima-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arima/arima.svg" - }, - { - "name": "Arimo", - "fontFamily": "Arimo, sans-serif", - "slug": "arimo", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk37cxsBxDAVQI4aA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arimo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arimo/arimo-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk338xsBxDAVQI4aA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Arimo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arimo/arimo-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk3M8tsBxDAVQI4aA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Arimo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arimo/arimo-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk3CstsBxDAVQI4aA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Arimo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arimo/arimo-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-ERBrEdwcoaKww.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Arimo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arimo/arimo-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-2RBrEdwcoaKww.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Arimo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arimo/arimo-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9aQxrEdwcoaKww.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Arimo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arimo/arimo-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9jQxrEdwcoaKww.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Arimo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arimo/arimo-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arimo/arimo.svg" - }, - { - "name": "Arizonia", - "fontFamily": "Arizonia, cursive", - "slug": "arizonia", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arizonia/v21/neIIzCemt4A5qa7mv6WGHK06UY30.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arizonia", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arizonia/arizonia-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arizonia/arizonia.svg" - }, - { - "name": "Armata", - "fontFamily": "Armata, sans-serif", - "slug": "armata", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/armata/v20/gokvH63_HV5jQ-E9lD53Q2u_mQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Armata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/armata/armata-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/armata/armata.svg" - }, - { - "name": "Arsenal", - "fontFamily": "Arsenal, sans-serif", - "slug": "arsenal", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arsenal/v12/wXKrE3kQtZQ4pF3D11_WAewrhXY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arsenal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arsenal/arsenal-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arsenal/v12/wXKpE3kQtZQ4pF3D513cBc4ulXYrtA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Arsenal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arsenal/arsenal-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arsenal/v12/wXKuE3kQtZQ4pF3D7-P5JeQAmX8yrdk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Arsenal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arsenal/arsenal-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arsenal/v12/wXKsE3kQtZQ4pF3D513kueEKnV03vdnKjw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Arsenal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arsenal/arsenal-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arsenal/arsenal.svg" - }, - { - "name": "Artifika", - "fontFamily": "Artifika, serif", - "slug": "artifika", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/artifika/v21/VEMyRoxzronptCuxu6Wt5jDtreOL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Artifika", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/artifika/artifika-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/artifika/artifika.svg" - }, - { - "name": "Arvo", - "fontFamily": "Arvo, serif", - "slug": "arvo", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arvo/v22/tDbD2oWUg0MKmSAa7Lzr7vs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arvo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arvo/arvo-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arvo/v22/tDbN2oWUg0MKqSIQ6J7u_vvijQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Arvo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arvo/arvo-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arvo/v22/tDbM2oWUg0MKoZw1yLTA8vL7lAE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Arvo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arvo/arvo-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arvo/v22/tDbO2oWUg0MKqSIoVLHK9tD-hAHkGg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Arvo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arvo/arvo-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arvo/arvo.svg" - }, - { - "name": "Arya", - "fontFamily": "Arya, sans-serif", - "slug": "arya", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arya/v19/ga6CawNG-HJd9Ub1-beqdFE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arya/arya-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/arya/v19/ga6NawNG-HJdzfra3b-BaFg3dRE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Arya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arya/arya-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/arya/arya.svg" - }, - { - "name": "Asap", - "fontFamily": "Asap, sans-serif", - "slug": "asap", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asap/v30/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqQsLmOXoA7Glw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Asap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap/asap-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asap/v30/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYEqUsLmOXoA7Glw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Asap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap/asap-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asap/v30/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYzKUsLmOXoA7Glw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Asap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap/asap-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asap/v30/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqUsLmOXoA7Glw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Asap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap/asap-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asap/v30/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYoKUsLmOXoA7Glw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Asap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap/asap-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asap/v30/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYTKIsLmOXoA7Glw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Asap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap/asap-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asap/v30/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYdaIsLmOXoA7Glw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Asap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap/asap-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asap/v30/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYEqIsLmOXoA7Glw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Asap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap/asap-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asap/v30/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYO6IsLmOXoA7Glw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Asap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap/asap-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asap/v30/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWubEbGmTggvWl0Qn.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Asap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap/asap-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asap/v30/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZEbWmTggvWl0Qn.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Asap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap/asap-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asap/v30/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuaabWmTggvWl0Qn.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Asap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap/asap-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asap/v30/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmTggvWl0Qn.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Asap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap/asap-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asap/v30/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWub2bWmTggvWl0Qn.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Asap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap/asap-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asap/v30/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuYaammTggvWl0Qn.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Asap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap/asap-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asap/v30/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammTggvWl0Qn.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Asap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap/asap-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asap/v30/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZEammTggvWl0Qn.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Asap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap/asap-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asap/v30/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZtammTggvWl0Qn.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Asap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap/asap-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap/asap.svg" - }, - { - "name": "Asap Condensed", - "fontFamily": "Asap Condensed, sans-serif", - "slug": "asap-condensed", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9DSWlEgGqgp-pO.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Asap Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap-condensed/asap-condensed-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUIFFim6CovpOkXA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Asap Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap-condensed/asap-condensed-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8nSmlEgGqgp-pO.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Asap Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap-condensed/asap-condensed-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUOVGim6CovpOkXA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Asap Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap-condensed/asap-condensed-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asapcondensed/v17/pxidypY1o9NHyXh3WvSbGSggdNeLYk1Mq3ap.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Asap Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap-condensed/asap-condensed-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asapcondensed/v17/pxifypY1o9NHyXh3WvSbGSggdOeJaElurmapvvM.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Asap Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap-condensed/asap-condensed-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9_S2lEgGqgp-pO.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Asap Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap-condensed/asap-condensed-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUL1Him6CovpOkXA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Asap Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap-condensed/asap-condensed-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9TTGlEgGqgp-pO.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Asap Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap-condensed/asap-condensed-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUJFAim6CovpOkXA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Asap Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap-condensed/asap-condensed-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO83TWlEgGqgp-pO.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Asap Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap-condensed/asap-condensed-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUPVBim6CovpOkXA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Asap Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap-condensed/asap-condensed-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8rTmlEgGqgp-pO.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Asap Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap-condensed/asap-condensed-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUOlCim6CovpOkXA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Asap Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap-condensed/asap-condensed-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8PT2lEgGqgp-pO.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Asap Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap-condensed/asap-condensed-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUM1Dim6CovpOkXA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Asap Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap-condensed/asap-condensed-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asap-condensed/asap-condensed.svg" - }, - { - "name": "Asar", - "fontFamily": "Asar, serif", - "slug": "asar", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asar/v22/sZlLdRyI6TBIXkYQDLlTW6E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Asar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asar/asar-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asar/asar.svg" - }, - { - "name": "Asset", - "fontFamily": "Asset, system-ui", - "slug": "asset", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asset/v28/SLXGc1na-mM4cWImRJqExst1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Asset", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asset/asset-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asset/asset.svg" - }, - { - "name": "Assistant", - "fontFamily": "Assistant, sans-serif", - "slug": "assistant", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZnEGGf3qGuvM4.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Assistant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/assistant/assistant-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtrhnEGGf3qGuvM4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Assistant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/assistant/assistant-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Assistant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/assistant/assistant-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Assistant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/assistant/assistant-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Assistant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/assistant/assistant-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Assistant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/assistant/assistant-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZgEGGf3qGuvM4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Assistant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/assistant/assistant-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/assistant/assistant.svg" - }, - { - "name": "Astloch", - "fontFamily": "Astloch, system-ui", - "slug": "astloch", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/astloch/v26/TuGRUVJ8QI5GSeUjq9wRzMtkH1Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Astloch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/astloch/astloch-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/astloch/v26/TuGUUVJ8QI5GSeUjk2A-6MNPA10xLMQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Astloch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/astloch/astloch-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/astloch/astloch.svg" - }, - { - "name": "Asul", - "fontFamily": "Asul, sans-serif", - "slug": "asul", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asul/v21/VuJ-dNjKxYr46fMFXK78JIg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Asul", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asul/asul-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/asul/v21/VuJxdNjKxYr40U8qeKbXOIFneRo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Asul", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asul/asul-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/asul/asul.svg" - }, - { - "name": "Athiti", - "fontFamily": "Athiti, sans-serif", - "slug": "athiti", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAxDNyAv2-C99ycg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Athiti", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/athiti/athiti-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAoDByAv2-C99ycg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Athiti", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/athiti/athiti-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/athiti/v12/pe0vMISdLIZIv1w4DBhWCtaiAg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Athiti", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/athiti/athiti-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA-DFyAv2-C99ycg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Athiti", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/athiti/athiti-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA1DZyAv2-C99ycg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Athiti", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/athiti/athiti-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAsDdyAv2-C99ycg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Athiti", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/athiti/athiti-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/athiti/athiti.svg" - }, - { - "name": "Atkinson Hyperlegible", - "fontFamily": "Atkinson Hyperlegible, sans-serif", - "slug": "atkinson-hyperlegible", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt23C1KxNDXMspQ1lPyU89-1h6ONRlW45GE5ZgpewSSbQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Atkinson Hyperlegible", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/atkinson-hyperlegible/atkinson-hyperlegible-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt43C1KxNDXMspQ1lPyU89-1h6ONRlW45G055ItWQGCbUWn.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Atkinson Hyperlegible", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/atkinson-hyperlegible/atkinson-hyperlegible-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt73C1KxNDXMspQ1lPyU89-1h6ONRlW45G8WbcNcy-OZFy-FA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Atkinson Hyperlegible", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/atkinson-hyperlegible/atkinson-hyperlegible-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt93C1KxNDXMspQ1lPyU89-1h6ONRlW45G056qRdiWKRlmuFH24.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Atkinson Hyperlegible", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/atkinson-hyperlegible/atkinson-hyperlegible-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/atkinson-hyperlegible/atkinson-hyperlegible.svg" - }, - { - "name": "Atma", - "fontFamily": "Atma, system-ui", - "slug": "atma", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo8JzKjc9PvedRkM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Atma", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/atma/atma-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/atma/v16/uK_84rqWc-Eom25bDj8WIv4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Atma", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/atma/atma-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo5pyKjc9PvedRkM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Atma", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/atma/atma-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo7Z1Kjc9PvedRkM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Atma", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/atma/atma-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo9J0Kjc9PvedRkM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Atma", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/atma/atma-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/atma/atma.svg" - }, - { - "name": "Atomic Age", - "fontFamily": "Atomic Age, system-ui", - "slug": "atomic-age", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/atomicage/v27/f0Xz0eug6sdmRFkYZZGL58Ht9a8GYeA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Atomic Age", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/atomic-age/atomic-age-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/atomic-age/atomic-age.svg" - }, - { - "name": "Aubrey", - "fontFamily": "Aubrey, system-ui", - "slug": "aubrey", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/aubrey/v28/q5uGsou7NPBw-p7vugNsCxVEgA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aubrey", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aubrey/aubrey-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/aubrey/aubrey.svg" - }, - { - "name": "Audiowide", - "fontFamily": "Audiowide, system-ui", - "slug": "audiowide", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/audiowide/v20/l7gdbjpo0cum0ckerWCtkQXPExpQBw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Audiowide", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/audiowide/audiowide-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/audiowide/audiowide.svg" - }, - { - "name": "Autour One", - "fontFamily": "Autour One, system-ui", - "slug": "autour-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/autourone/v24/UqyVK80cP25l3fJgbdfbk5lWVscxdKE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Autour One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/autour-one/autour-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/autour-one/autour-one.svg" - }, - { - "name": "Average", - "fontFamily": "Average, serif", - "slug": "average", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/average/v18/fC1hPYBHe23MxA7rIeJwVWytTyk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Average", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/average/average-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/average/average.svg" - }, - { - "name": "Average Sans", - "fontFamily": "Average Sans, sans-serif", - "slug": "average-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/averagesans/v16/1Ptpg8fLXP2dlAXR-HlJJNJPBdqazVoK4A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Average Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/average-sans/average-sans-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/average-sans/average-sans.svg" - }, - { - "name": "Averia Gruesa Libre", - "fontFamily": "Averia Gruesa Libre, system-ui", - "slug": "averia-gruesa-libre", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/averiagruesalibre/v22/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmmJw0SLRA8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Averia Gruesa Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-gruesa-libre/averia-gruesa-libre-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-gruesa-libre/averia-gruesa-libre.svg" - }, - { - "name": "Averia Libre", - "fontFamily": "Averia Libre, system-ui", - "slug": "averia-libre", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEarovtb07t-pQgTw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Averia Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-libre/averia-libre-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFhbUTp2JEwT4Sk.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Averia Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-libre/averia-libre-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/averialibre/v16/2V0aKIcMGZEnV6xygz7eNjEiAqPJZ2Xx8w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Averia Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-libre/averia-libre-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/averialibre/v16/2V0EKIcMGZEnV6xygz7eNjESAKnNRWDh8405.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Averia Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-libre/averia-libre-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEavoztb07t-pQgTw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Averia Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-libre/averia-libre-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFxakTp2JEwT4Sk.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Averia Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-libre/averia-libre-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-libre/averia-libre.svg" - }, - { - "name": "Averia Sans Libre", - "fontFamily": "Averia Sans Libre, system-ui", - "slug": "averia-sans-libre", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/averiasanslibre/v19/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd3lMKcQJZP1LmD9.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Averia Sans Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-sans-libre/averia-sans-libre-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/averiasanslibre/v19/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKisSL5fXK3D9qtg.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Averia Sans Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-sans-libre/averia-sans-libre-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/averiasanslibre/v19/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVJGIMYDo_8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Averia Sans Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-sans-libre/averia-sans-libre-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/averiasanslibre/v19/ga6RaxZG_G5OvCf_rt7FH3B6BHLMEdVLEoc6C5_8N3k.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Averia Sans Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-sans-libre/averia-sans-libre-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/averiasanslibre/v19/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd31N6cQJZP1LmD9.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Averia Sans Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-sans-libre/averia-sans-libre-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/averiasanslibre/v19/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKjsVL5fXK3D9qtg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Averia Sans Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-sans-libre/averia-sans-libre-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-sans-libre/averia-sans-libre.svg" - }, - { - "name": "Averia Serif Libre", - "fontFamily": "Averia Serif Libre, system-ui", - "slug": "averia-serif-libre", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/averiaseriflibre/v18/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGCSmqwacqdrKvbQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Averia Serif Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-serif-libre/averia-serif-libre-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/averiaseriflibre/v18/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzMmw60uVLe_bXHq.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Averia Serif Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-serif-libre/averia-serif-libre-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/averiaseriflibre/v18/neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-pQGOyYw2fw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Averia Serif Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-serif-libre/averia-serif-libre-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/averiaseriflibre/v18/neIUzD2ms4wxr6GvjeD0X88SHPyX2xYOpwuK64kmf6u2.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Averia Serif Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-serif-libre/averia-serif-libre-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/averiaseriflibre/v18/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGGS6qwacqdrKvbQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Averia Serif Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-serif-libre/averia-serif-libre-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/averiaseriflibre/v18/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzM2xK0uVLe_bXHq.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Averia Serif Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-serif-libre/averia-serif-libre-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/averia-serif-libre/averia-serif-libre.svg" - }, - { - "name": "Azeret Mono", - "fontFamily": "Azeret Mono, monospace", - "slug": "azeret-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPRh0raa-5s3AA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Azeret Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/azeret-mono/azeret-mono-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPVh0raa-5s3AA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Azeret Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/azeret-mono/azeret-mono-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfwvVh0raa-5s3AA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Azeret Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/azeret-mono/azeret-mono-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh0raa-5s3AA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Azeret Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/azeret-mono/azeret-mono-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfrvVh0raa-5s3AA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Azeret Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/azeret-mono/azeret-mono-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfQvJh0raa-5s3AA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Azeret Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/azeret-mono/azeret-mono-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfe_Jh0raa-5s3AA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Azeret Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/azeret-mono/azeret-mono-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPJh0raa-5s3AA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Azeret Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/azeret-mono/azeret-mono-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfNfJh0raa-5s3AA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Azeret Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/azeret-mono/azeret-mono-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkLye2Z4nAN7J.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Azeret Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/azeret-mono/azeret-mono-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJkbye2Z4nAN7J.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Azeret Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/azeret-mono/azeret-mono-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLbXkbye2Z4nAN7J.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Azeret Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/azeret-mono/azeret-mono-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkbye2Z4nAN7J.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Azeret Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/azeret-mono/azeret-mono-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLa7kbye2Z4nAN7J.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Azeret Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/azeret-mono/azeret-mono-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZXlrye2Z4nAN7J.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Azeret Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/azeret-mono/azeret-mono-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZulrye2Z4nAN7J.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Azeret Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/azeret-mono/azeret-mono-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJlrye2Z4nAN7J.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Azeret Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/azeret-mono/azeret-mono-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYglrye2Z4nAN7J.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Azeret Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/azeret-mono/azeret-mono-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/azeret-mono/azeret-mono.svg" - }, - { - "name": "B612", - "fontFamily": "B612, sans-serif", - "slug": "b612", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/b612/v12/3JnySDDxiSz32jm4GDigUXw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "B612", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/b612/b612-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/b612/v12/3Jn8SDDxiSz36juyHBqlQXwdVw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "B612", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/b612/b612-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/b612/v12/3Jn9SDDxiSz34oWXPDCLTXUETuE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "B612", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/b612/b612-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/b612/v12/3Jn_SDDxiSz36juKoDWBSVcBXuFb0Q.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "B612", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/b612/b612-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/b612/b612.svg" - }, - { - "name": "B612 Mono", - "fontFamily": "B612 Mono, monospace", - "slug": "b612-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/b612mono/v14/kmK_Zq85QVWbN1eW6lJl1wTcquRTtg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "B612 Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/b612-mono/b612-mono-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/b612mono/v14/kmK5Zq85QVWbN1eW6lJV1Q7YiOFDtqtf.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "B612 Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/b612-mono/b612-mono-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/b612mono/v14/kmK6Zq85QVWbN1eW6lJdayv4os9Pv7JGSg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "B612 Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/b612-mono/b612-mono-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/b612mono/v14/kmKkZq85QVWbN1eW6lJV1TZkp8VLnbdWSg4x.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "B612 Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/b612-mono/b612-mono-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/b612-mono/b612-mono.svg" - }, - { - "name": "BIZ UDGothic", - "fontFamily": "BIZ UDGothic, sans-serif", - "slug": "biz-udgothic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bizudgothic/v9/daafSTouBF7RUjnbt8p3LuKttQN98z_MbQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BIZ UDGothic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biz-udgothic/biz-udgothic-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bizudgothic/v9/daaASTouBF7RUjnbt8p3LuKVCSxZ-xTQZMhbaA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "BIZ UDGothic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biz-udgothic/biz-udgothic-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biz-udgothic/biz-udgothic.svg" - }, - { - "name": "BIZ UDMincho", - "fontFamily": "BIZ UDMincho, serif", - "slug": "biz-udmincho", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bizudmincho/v9/EJRRQgI6eOxFjBdKs38yhtW1dwT7rcpY8Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BIZ UDMincho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biz-udmincho/biz-udmincho-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bizudmincho/v9/EJROQgI6eOxFjBdKs38yhtWNyyvfpeFE-IyCrw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "BIZ UDMincho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biz-udmincho/biz-udmincho-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biz-udmincho/biz-udmincho.svg" - }, - { - "name": "BIZ UDPGothic", - "fontFamily": "BIZ UDPGothic, sans-serif", - "slug": "biz-udpgothic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bizudpgothic/v9/hES36X5pHAIBjmS84VL0Bue83nUMQWkMUAk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BIZ UDPGothic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biz-udpgothic/biz-udpgothic-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bizudpgothic/v9/hESq6X5pHAIBjmS84VL0Bue85skjZWEnTABCSQo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "BIZ UDPGothic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biz-udpgothic/biz-udpgothic-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biz-udpgothic/biz-udpgothic.svg" - }, - { - "name": "BIZ UDPMincho", - "fontFamily": "BIZ UDPMincho, serif", - "slug": "biz-udpmincho", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bizudpmincho/v9/ypvfbXOBrmYppy7oWWTg1_58nhhYtUb0gZk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BIZ UDPMincho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biz-udpmincho/biz-udpmincho-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bizudpmincho/v9/ypvCbXOBrmYppy7oWWTg1_58pqR3kU7fnZAy57k.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "BIZ UDPMincho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biz-udpmincho/biz-udpmincho-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biz-udpmincho/biz-udpmincho.svg" - }, - { - "name": "Babylonica", - "fontFamily": "Babylonica, cursive", - "slug": "babylonica", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/babylonica/v5/5aUw9_i2qxWVCAE2aHjTqDJ0-VVMoEw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Babylonica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/babylonica/babylonica-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/babylonica/babylonica.svg" - }, - { - "name": "Bacasime Antique", - "fontFamily": "Bacasime Antique, serif", - "slug": "bacasime-antique", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bacasimeantique/v1/tDbX2pGXkFYEykldjZSrmI6T_XWZOwStSUrV_BE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bacasime Antique", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bacasime-antique/bacasime-antique-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bacasime-antique/bacasime-antique.svg" - }, - { - "name": "Bad Script", - "fontFamily": "Bad Script, cursive", - "slug": "bad-script", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/badscript/v16/6NUT8F6PJgbFWQn47_x7lOwuzd1AZtw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bad Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bad-script/bad-script-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bad-script/bad-script.svg" - }, - { - "name": "Bagel Fat One", - "fontFamily": "Bagel Fat One, system-ui", - "slug": "bagel-fat-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bagelfatone/v1/hYkPPucsQOr5dy02WmQr5Zkd0B5mvv0dSbM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bagel Fat One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bagel-fat-one/bagel-fat-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bagel-fat-one/bagel-fat-one.svg" - }, - { - "name": "Bahiana", - "fontFamily": "Bahiana, system-ui", - "slug": "bahiana", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bahiana/v23/uU9PCBUV4YenPWJU7xPb3vyHmlI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bahiana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bahiana/bahiana-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bahiana/bahiana.svg" - }, - { - "name": "Bahianita", - "fontFamily": "Bahianita, system-ui", - "slug": "bahianita", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bahianita/v21/yYLr0hTb3vuqqsBUgxWtxTvV2NJPcA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bahianita", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bahianita/bahianita-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bahianita/bahianita.svg" - }, - { - "name": "Bai Jamjuree", - "fontFamily": "Bai Jamjuree, sans-serif", - "slug": "bai-jamjuree", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0kePuk5A1-yiSgA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Bai Jamjuree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bai-jamjuree/bai-jamjuree-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oGkpox2S2CgOva.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Bai Jamjuree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bai-jamjuree/bai-jamjuree-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa09eDuk5A1-yiSgA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Bai Jamjuree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bai-jamjuree/bai-jamjuree-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pikZox2S2CgOva.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Bai Jamjuree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bai-jamjuree/bai-jamjuree-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baijamjuree/v11/LDI1apSCOBt_aeQQ7ftydoaMWcjKm7sp8g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bai Jamjuree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bai-jamjuree/bai-jamjuree-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baijamjuree/v11/LDIrapSCOBt_aeQQ7ftydoa8W8LOub458jGL.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Bai Jamjuree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bai-jamjuree/bai-jamjuree-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0reHuk5A1-yiSgA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Bai Jamjuree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bai-jamjuree/bai-jamjuree-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_o6kJox2S2CgOva.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Bai Jamjuree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bai-jamjuree/bai-jamjuree-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0gebuk5A1-yiSgA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Bai Jamjuree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bai-jamjuree/bai-jamjuree-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oWl5ox2S2CgOva.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Bai Jamjuree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bai-jamjuree/bai-jamjuree-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa05efuk5A1-yiSgA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Bai Jamjuree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bai-jamjuree/bai-jamjuree-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pylpox2S2CgOva.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Bai Jamjuree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bai-jamjuree/bai-jamjuree-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bai-jamjuree/bai-jamjuree.svg" - }, - { - "name": "Bakbak One", - "fontFamily": "Bakbak One, system-ui", - "slug": "bakbak-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bakbakone/v8/zOL54pXAl6RI-p_ardnuycRuv-hHkOs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bakbak One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bakbak-one/bakbak-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bakbak-one/bakbak-one.svg" - }, - { - "name": "Ballet", - "fontFamily": "Ballet, cursive", - "slug": "ballet", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ballet/v27/QGYyz_MYZA-HM4NjuGOVnUEXme1I4Xi3C4G-EiAou6Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ballet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ballet/ballet-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ballet/ballet.svg" - }, - { - "name": "Baloo 2", - "fontFamily": "Baloo 2, system-ui", - "slug": "baloo-2", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloo2/v21/wXK0E3kTposypRydzVT08TS3JnAmtdgazapv9Fat7WcN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-2/baloo-2-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloo2/v21/wXK0E3kTposypRydzVT08TS3JnAmtdgozapv9Fat7WcN.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-2/baloo-2-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloo2/v21/wXK0E3kTposypRydzVT08TS3JnAmtdjEyqpv9Fat7WcN.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-2/baloo-2-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloo2/v21/wXK0E3kTposypRydzVT08TS3JnAmtdj9yqpv9Fat7WcN.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-2/baloo-2-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloo2/v21/wXK0E3kTposypRydzVT08TS3JnAmtdiayqpv9Fat7WcN.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-2/baloo-2-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-2/baloo-2.svg" - }, - { - "name": "Baloo Bhai 2", - "fontFamily": "Baloo Bhai 2, system-ui", - "slug": "baloo-bhai-2", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloobhai2/v28/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNighMXeCo-jsZzo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Bhai 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-bhai-2/baloo-bhai-2-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloobhai2/v28/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNhohMXeCo-jsZzo.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Bhai 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-bhai-2/baloo-bhai-2-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloobhai2/v28/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNvYmMXeCo-jsZzo.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Bhai 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-bhai-2/baloo-bhai-2-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloobhai2/v28/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNs8mMXeCo-jsZzo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Bhai 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-bhai-2/baloo-bhai-2-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloobhai2/v28/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNqgmMXeCo-jsZzo.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Bhai 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-bhai-2/baloo-bhai-2-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-bhai-2/baloo-bhai-2.svg" - }, - { - "name": "Baloo Bhaijaan 2", - "fontFamily": "Baloo Bhaijaan 2, system-ui", - "slug": "baloo-bhaijaan-2", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloobhaijaan2/v19/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyRSqP4L4ppfcyC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaijaan 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-bhaijaan-2/baloo-bhaijaan-2-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloobhaijaan2/v19/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyjSqP4L4ppfcyC.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaijaan 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-bhaijaan-2/baloo-bhaijaan-2-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloobhaijaan2/v19/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TxPTaP4L4ppfcyC.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaijaan 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-bhaijaan-2/baloo-bhaijaan-2-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloobhaijaan2/v19/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8Tx2TaP4L4ppfcyC.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaijaan 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-bhaijaan-2/baloo-bhaijaan-2-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloobhaijaan2/v19/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TwRTaP4L4ppfcyC.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaijaan 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-bhaijaan-2/baloo-bhaijaan-2-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-bhaijaan-2/baloo-bhaijaan-2.svg" - }, - { - "name": "Baloo Bhaina 2", - "fontFamily": "Baloo Bhaina 2, system-ui", - "slug": "baloo-bhaina-2", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloobhaina2/v27/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEssPvRfRLYWmZSA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaina 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-bhaina-2/baloo-bhaina-2-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloobhaina2/v27/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEgMPvRfRLYWmZSA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaina 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-bhaina-2/baloo-bhaina-2-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloobhaina2/v27/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEbMTvRfRLYWmZSA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaina 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-bhaina-2/baloo-bhaina-2-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloobhaina2/v27/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEVcTvRfRLYWmZSA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaina 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-bhaina-2/baloo-bhaina-2-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloobhaina2/v27/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEMsTvRfRLYWmZSA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaina 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-bhaina-2/baloo-bhaina-2-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-bhaina-2/baloo-bhaina-2.svg" - }, - { - "name": "Baloo Chettan 2", - "fontFamily": "Baloo Chettan 2, system-ui", - "slug": "baloo-chettan-2", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloochettan2/v21/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CeKTO1oeH9xI2gc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Chettan 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-chettan-2/baloo-chettan-2-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloochettan2/v21/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CdCTO1oeH9xI2gc.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Chettan 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-chettan-2/baloo-chettan-2-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloochettan2/v21/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CTyUO1oeH9xI2gc.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Chettan 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-chettan-2/baloo-chettan-2-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloochettan2/v21/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CQWUO1oeH9xI2gc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Chettan 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-chettan-2/baloo-chettan-2-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloochettan2/v21/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CWKUO1oeH9xI2gc.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Chettan 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-chettan-2/baloo-chettan-2-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-chettan-2/baloo-chettan-2.svg" - }, - { - "name": "Baloo Da 2", - "fontFamily": "Baloo Da 2, system-ui", - "slug": "baloo-da-2", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/balooda2/v24/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjALsTNe55aRa7UE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Da 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-da-2/baloo-da-2-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/balooda2/v24/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjA5sTNe55aRa7UE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Da 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-da-2/baloo-da-2-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/balooda2/v24/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDVtjNe55aRa7UE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Da 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-da-2/baloo-da-2-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/balooda2/v24/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDstjNe55aRa7UE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Da 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-da-2/baloo-da-2-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/balooda2/v24/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjCLtjNe55aRa7UE.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Da 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-da-2/baloo-da-2-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-da-2/baloo-da-2.svg" - }, - { - "name": "Baloo Paaji 2", - "fontFamily": "Baloo Paaji 2, system-ui", - "slug": "baloo-paaji-2", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloopaaji2/v27/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9AX74fybRUz1r5t.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Paaji 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-paaji-2/baloo-paaji-2-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloopaaji2/v27/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Al74fybRUz1r5t.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Paaji 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-paaji-2/baloo-paaji-2-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloopaaji2/v27/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Paaji 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-paaji-2/baloo-paaji-2-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloopaaji2/v27/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Paaji 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-paaji-2/baloo-paaji-2-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloopaaji2/v27/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Paaji 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-paaji-2/baloo-paaji-2-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-paaji-2/baloo-paaji-2.svg" - }, - { - "name": "Baloo Tamma 2", - "fontFamily": "Baloo Tamma 2, system-ui", - "slug": "baloo-tamma-2", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMscPp-0IF71SGC5.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Tamma 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-tamma-2/baloo-tamma-2-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMsuPp-0IF71SGC5.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Tamma 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-tamma-2/baloo-tamma-2-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMvCOZ-0IF71SGC5.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Tamma 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-tamma-2/baloo-tamma-2-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMv7OZ-0IF71SGC5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Tamma 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-tamma-2/baloo-tamma-2-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMucOZ-0IF71SGC5.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Tamma 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-tamma-2/baloo-tamma-2-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-tamma-2/baloo-tamma-2.svg" - }, - { - "name": "Baloo Tammudu 2", - "fontFamily": "Baloo Tammudu 2, system-ui", - "slug": "baloo-tammudu-2", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jf8e4c6PZSlGmAA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Tammudu 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-tammudu-2/baloo-tammudu-2-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jc0e4c6PZSlGmAA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Tammudu 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-tammudu-2/baloo-tammudu-2-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JSEZ4c6PZSlGmAA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Tammudu 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-tammudu-2/baloo-tammudu-2-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JRgZ4c6PZSlGmAA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Tammudu 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-tammudu-2/baloo-tammudu-2-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JX8Z4c6PZSlGmAA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Tammudu 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-tammudu-2/baloo-tammudu-2-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-tammudu-2/baloo-tammudu-2.svg" - }, - { - "name": "Baloo Thambi 2", - "fontFamily": "Baloo Thambi 2, system-ui", - "slug": "baloo-thambi-2", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKzcIzaQRG_n4osQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Thambi 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-thambi-2/baloo-thambi-2-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbK_8IzaQRG_n4osQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Thambi 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-thambi-2/baloo-thambi-2-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKE8UzaQRG_n4osQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Thambi 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-thambi-2/baloo-thambi-2-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKKsUzaQRG_n4osQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Thambi 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-thambi-2/baloo-thambi-2-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKTcUzaQRG_n4osQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Thambi 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-thambi-2/baloo-thambi-2-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baloo-thambi-2/baloo-thambi-2.svg" - }, - { - "name": "Balsamiq Sans", - "fontFamily": "Balsamiq Sans, system-ui", - "slug": "balsamiq-sans", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/balsamiqsans/v14/P5sEzZiAbNrN8SB3lQQX7Pnc8dkdIYdNHzs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Balsamiq Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/balsamiq-sans/balsamiq-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/balsamiqsans/v14/P5sazZiAbNrN8SB3lQQX7PncwdsXJaVIDzvcXA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Balsamiq Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/balsamiq-sans/balsamiq-sans-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/balsamiqsans/v14/P5sZzZiAbNrN8SB3lQQX7PncyWUyBY9mAzLFRQI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Balsamiq Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/balsamiq-sans/balsamiq-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/balsamiqsans/v14/P5sfzZiAbNrN8SB3lQQX7PncwdsvmYpsBxDAVQI4aA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Balsamiq Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/balsamiq-sans/balsamiq-sans-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/balsamiq-sans/balsamiq-sans.svg" - }, - { - "name": "Balthazar", - "fontFamily": "Balthazar, serif", - "slug": "balthazar", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/balthazar/v17/d6lKkaajS8Gm4CVQjFEvyRTo39l8hw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Balthazar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/balthazar/balthazar-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/balthazar/balthazar.svg" - }, - { - "name": "Bangers", - "fontFamily": "Bangers, system-ui", - "slug": "bangers", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bangers/v24/FeVQS0BTqb0h60ACL5la2bxii28.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bangers", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bangers/bangers-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bangers/bangers.svg" - }, - { - "name": "Barlow", - "fontFamily": "Barlow, sans-serif", - "slug": "barlow", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E3b8s8yn4hnCci.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Barlow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow/barlow-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlow/v12/7cHtv4kjgoGqM7E_CfNYwHoDmTcibrA.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Barlow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow/barlow-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3w-oc4FAtlT47dw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Barlow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow/barlow-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfP04Voptzsrd6m9.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Barlow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow/barlow-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3p-kc4FAtlT47dw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Barlow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow/barlow-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOQ4loptzsrd6m9.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Barlow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow/barlow-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7EPC8E46HsxnA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Barlow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow/barlow-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E_Ccs8yn4hnCci.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Barlow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow/barlow-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3_-gc4FAtlT47dw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Barlow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow/barlow-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPI41optzsrd6m9.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Barlow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow/barlow-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E30-8c4FAtlT47dw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Barlow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow/barlow-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPk5Foptzsrd6m9.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Barlow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow/barlow-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3t-4c4FAtlT47dw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Barlow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow/barlow-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOA5Voptzsrd6m9.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Barlow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow/barlow-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3q-0c4FAtlT47dw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Barlow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow/barlow-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOc5loptzsrd6m9.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Barlow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow/barlow-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3j-wc4FAtlT47dw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Barlow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow/barlow-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfO451optzsrd6m9.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Barlow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow/barlow-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow/barlow.svg" - }, - { - "name": "Barlow Condensed", - "fontFamily": "Barlow Condensed, sans-serif", - "slug": "barlow-condensed", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B43LT31vytKgbaw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-condensed/barlow-condensed-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowcondensed/v12/HTxzL3I-JCGChYJ8VI-L6OO_au7B6xTru1H2lq0La6JN.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-condensed/barlow-condensed-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B497y_3HcuKECcrs.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-condensed/barlow-condensed-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrF3DWvIMHYrtUxg.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-condensed/barlow-condensed-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rx_3HcuKECcrs.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-condensed/barlow-condensed-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrc3PWvIMHYrtUxg.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-condensed/barlow-condensed-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowcondensed/v12/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xbZ23n3pKg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-condensed/barlow-condensed-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B6xTT31vytKgbaw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-condensed/barlow-condensed-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lw_3HcuKECcrs.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-condensed/barlow-condensed-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrK3LWvIMHYrtUxg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-condensed/barlow-condensed-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873_3HcuKECcrs.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-condensed/barlow-condensed-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrB3XWvIMHYrtUxg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-condensed/barlow-condensed-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2_3HcuKECcrs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-condensed/barlow-condensed-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrY3TWvIMHYrtUxg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-condensed/barlow-condensed-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47b1_3HcuKECcrs.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-condensed/barlow-condensed-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrf3fWvIMHYrtUxg.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-condensed/barlow-condensed-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B45L0_3HcuKECcrs.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-condensed/barlow-condensed-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrW3bWvIMHYrtUxg.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-condensed/barlow-condensed-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-condensed/barlow-condensed.svg" - }, - { - "name": "Barlow Semi Condensed", - "fontFamily": "Barlow Semi Condensed, sans-serif", - "slug": "barlow-semi-condensed", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfG4qvKk8ogoSP.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-semi-condensed/barlow-semi-condensed-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpjgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbLLIEsKh5SPZWs.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-semi-condensed/barlow-semi-condensed-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRft6uPAGEki52WfA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-semi-condensed/barlow-semi-condensed-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJnAWsgqZiGfHK5.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-semi-condensed/barlow-semi-condensed-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf06iPAGEki52WfA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-semi-condensed/barlow-semi-condensed-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIDAmsgqZiGfHK5.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-semi-condensed/barlow-semi-condensed-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRnf4CrCEo4gg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-semi-condensed/barlow-semi-condensed-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfYqvKk8ogoSP.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-semi-condensed/barlow-semi-condensed-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfi6mPAGEki52WfA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-semi-condensed/barlow-semi-condensed-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJbA2sgqZiGfHK5.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-semi-condensed/barlow-semi-condensed-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfp66PAGEki52WfA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-semi-condensed/barlow-semi-condensed-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJ3BGsgqZiGfHK5.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-semi-condensed/barlow-semi-condensed-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfw6-PAGEki52WfA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-semi-condensed/barlow-semi-condensed-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbITBWsgqZiGfHK5.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-semi-condensed/barlow-semi-condensed-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf36yPAGEki52WfA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-semi-condensed/barlow-semi-condensed-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIPBmsgqZiGfHK5.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-semi-condensed/barlow-semi-condensed-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf-62PAGEki52WfA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-semi-condensed/barlow-semi-condensed-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIrB2sgqZiGfHK5.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-semi-condensed/barlow-semi-condensed-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barlow-semi-condensed/barlow-semi-condensed.svg" - }, - { - "name": "Barriecito", - "fontFamily": "Barriecito, system-ui", - "slug": "barriecito", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barriecito/v17/WWXXlj-CbBOSLY2QTuY_KdUiYwTO0MU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Barriecito", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barriecito/barriecito-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barriecito/barriecito.svg" - }, - { - "name": "Barrio", - "fontFamily": "Barrio, system-ui", - "slug": "barrio", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/barrio/v19/wEO8EBXBk8hBIDiEdQYhWdsX1Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Barrio", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barrio/barrio-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/barrio/barrio.svg" - }, - { - "name": "Basic", - "fontFamily": "Basic, sans-serif", - "slug": "basic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/basic/v17/xfu_0WLxV2_XKQN34lDVyR7D.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Basic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/basic/basic-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/basic/basic.svg" - }, - { - "name": "Baskervville", - "fontFamily": "Baskervville, serif", - "slug": "baskervville", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baskervville/v16/YA9Ur0yU4l_XOrogbkun3kQgt5OohvbJ9A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baskervville", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baskervville/baskervville-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baskervville/v16/YA9Kr0yU4l_XOrogbkun3kQQtZmspPPZ9Mlt.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Baskervville", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baskervville/baskervville-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baskervville/baskervville.svg" - }, - { - "name": "Battambang", - "fontFamily": "Battambang, system-ui", - "slug": "battambang", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/battambang/v24/uk-kEGe7raEw-HjkzZabNhGp5w50_o9T7Q.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Battambang", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/battambang/battambang-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNtmLxyRa8oZK9I0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Battambang", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/battambang/battambang-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/battambang/v24/uk-mEGe7raEw-HjkzZabDnWj4yxx7o8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Battambang", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/battambang/battambang-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNsmMxyRa8oZK9I0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Battambang", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/battambang/battambang-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNvGOxyRa8oZK9I0.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Battambang", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/battambang/battambang-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/battambang/battambang.svg" - }, - { - "name": "Baumans", - "fontFamily": "Baumans, system-ui", - "slug": "baumans", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/baumans/v17/-W_-XJj9QyTd3QfpR_oyaksqY5Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baumans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baumans/baumans-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/baumans/baumans.svg" - }, - { - "name": "Bayon", - "fontFamily": "Bayon, sans-serif", - "slug": "bayon", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bayon/v33/9XUrlJNmn0LPFl-pOhYEd2NJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bayon", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bayon/bayon-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bayon/bayon.svg" - }, - { - "name": "Be Vietnam Pro", - "fontFamily": "Be Vietnam Pro, sans-serif", - "slug": "be-vietnam-pro", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bevietnampro/v11/QdVNSTAyLFyeg_IDWvOJmVES_HRUBX8YYbAiah8.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/be-vietnam-pro/be-vietnam-pro-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bevietnampro/v11/QdVLSTAyLFyeg_IDWvOJmVES_HwyPRsSZZIneh-waA.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/be-vietnam-pro/be-vietnam-pro-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HT4JF8yT7wrcwap.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/be-vietnam-pro/be-vietnam-pro-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPbczRbgJdhapcUU.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/be-vietnam-pro/be-vietnam-pro-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HScJ18yT7wrcwap.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/be-vietnam-pro/be-vietnam-pro-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPdMwRbgJdhapcUU.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/be-vietnam-pro/be-vietnam-pro-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bevietnampro/v11/QdVPSTAyLFyeg_IDWvOJmVES_EwwD3s6ZKAi.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/be-vietnam-pro/be-vietnam-pro-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bevietnampro/v11/QdVNSTAyLFyeg_IDWvOJmVES_HwyBX8YYbAiah8.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/be-vietnam-pro/be-vietnam-pro-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl8yT7wrcwap.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/be-vietnam-pro/be-vietnam-pro-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPYsxRbgJdhapcUU.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/be-vietnam-pro/be-vietnam-pro-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HToIV8yT7wrcwap.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/be-vietnam-pro/be-vietnam-pro-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPac2RbgJdhapcUU.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/be-vietnam-pro/be-vietnam-pro-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HSMIF8yT7wrcwap.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/be-vietnam-pro/be-vietnam-pro-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPcM3RbgJdhapcUU.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/be-vietnam-pro/be-vietnam-pro-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HSQI18yT7wrcwap.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/be-vietnam-pro/be-vietnam-pro-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPd80RbgJdhapcUU.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/be-vietnam-pro/be-vietnam-pro-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HS0Il8yT7wrcwap.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/be-vietnam-pro/be-vietnam-pro-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPfs1RbgJdhapcUU.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/be-vietnam-pro/be-vietnam-pro-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/be-vietnam-pro/be-vietnam-pro.svg" - }, - { - "name": "Beau Rivage", - "fontFamily": "Beau Rivage, cursive", - "slug": "beau-rivage", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/beaurivage/v2/UcCi3FIgIG2bH4mMNWJUlmg3NZp8K2sL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Beau Rivage", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/beau-rivage/beau-rivage-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/beau-rivage/beau-rivage.svg" - }, - { - "name": "Bebas Neue", - "fontFamily": "Bebas Neue, sans-serif", - "slug": "bebas-neue", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bebasneue/v14/JTUSjIg69CK48gW7PXooxW5rygbi49c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bebas Neue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bebas-neue/bebas-neue-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bebas-neue/bebas-neue.svg" - }, - { - "name": "Belanosima", - "fontFamily": "Belanosima, sans-serif", - "slug": "belanosima", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/belanosima/v3/3y9k6bI8ejDo_3MfCDSLxABbF3JBg54.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Belanosima", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/belanosima/belanosima-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/belanosima/v3/3y9n6bI8ejDo_3MfCDSL_Nh1M3pqn5cdJ-4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Belanosima", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/belanosima/belanosima-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/belanosima/v3/3y9n6bI8ejDo_3MfCDSL_Lx0M3pqn5cdJ-4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Belanosima", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/belanosima/belanosima-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/belanosima/belanosima.svg" - }, - { - "name": "Belgrano", - "fontFamily": "Belgrano, serif", - "slug": "belgrano", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/belgrano/v18/55xvey5tM9rwKWrJZcMFirl08KDJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Belgrano", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/belgrano/belgrano-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/belgrano/belgrano.svg" - }, - { - "name": "Bellefair", - "fontFamily": "Bellefair, serif", - "slug": "bellefair", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bellefair/v14/kJExBuYY6AAuhiXUxG19__A2pOdvDA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bellefair", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bellefair/bellefair-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bellefair/bellefair.svg" - }, - { - "name": "Belleza", - "fontFamily": "Belleza, sans-serif", - "slug": "belleza", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/belleza/v17/0nkoC9_pNeMfhX4BtcbyawzruP8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Belleza", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/belleza/belleza-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/belleza/belleza.svg" - }, - { - "name": "Bellota", - "fontFamily": "Bellota, system-ui", - "slug": "bellota", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAID55kGMViblPtXs.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Bellota", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bellota/bellota-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjHGEfjZtKpXulTQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Bellota", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bellota/bellota-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bellota/v16/MwQ2bhXl3_qEpiwAGJJRtGs-lbA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bellota", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bellota/bellota-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bellota/v16/MwQ0bhXl3_qEpiwAKJBbsEk7hbBWrA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Bellota", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bellota/bellota-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAIC5-kGMViblPtXs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Bellota", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bellota/bellota-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjDGYfjZtKpXulTQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Bellota", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bellota/bellota-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bellota/bellota.svg" - }, - { - "name": "Bellota Text", - "fontFamily": "Bellota Text, system-ui", - "slug": "bellota-text", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bellotatext/v18/0FlMVP2VnlWS4f3-UE9hHXM5VfsqfQXwQy6yxg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Bellota Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bellota-text/bellota-text-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bellotatext/v18/0FlOVP2VnlWS4f3-UE9hHXMx--Gmfw_0YSuixmYK.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Bellota Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bellota-text/bellota-text-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bellotatext/v18/0FlTVP2VnlWS4f3-UE9hHXMB-dMOdS7sSg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bellota Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bellota-text/bellota-text-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bellotatext/v18/0FlNVP2VnlWS4f3-UE9hHXMx-9kKVyv8Sjer.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Bellota Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bellota-text/bellota-text-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bellotatext/v18/0FlMVP2VnlWS4f3-UE9hHXM5RfwqfQXwQy6yxg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Bellota Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bellota-text/bellota-text-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bellotatext/v18/0FlOVP2VnlWS4f3-UE9hHXMx--G2eA_0YSuixmYK.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Bellota Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bellota-text/bellota-text-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bellota-text/bellota-text.svg" - }, - { - "name": "BenchNine", - "fontFamily": "BenchNine, sans-serif", - "slug": "benchnine", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT--tRhWa8q0v8ag.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "BenchNine", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/benchnine/benchnine-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/benchnine/v16/ahcbv8612zF4jxrwMosrV8N1jU2gog.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BenchNine", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/benchnine/benchnine-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT6-xRhWa8q0v8ag.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "BenchNine", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/benchnine/benchnine-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/benchnine/benchnine.svg" - }, - { - "name": "Benne", - "fontFamily": "Benne, serif", - "slug": "benne", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/benne/v22/L0xzDFAhn18E6Vjxlt6qTDBN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Benne", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/benne/benne-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/benne/benne.svg" - }, - { - "name": "Bentham", - "fontFamily": "Bentham, serif", - "slug": "bentham", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bentham/v18/VdGeAZQPEpYfmHglKWw7CJaK_y4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bentham", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bentham/bentham-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bentham/bentham.svg" - }, - { - "name": "Berkshire Swash", - "fontFamily": "Berkshire Swash, cursive", - "slug": "berkshire-swash", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/berkshireswash/v20/ptRRTi-cavZOGqCvnNJDl5m5XmNPrcQybX4pQA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Berkshire Swash", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/berkshire-swash/berkshire-swash-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/berkshire-swash/berkshire-swash.svg" - }, - { - "name": "Besley", - "fontFamily": "Besley, serif", - "slug": "besley", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/besley/v19/PlIhFlO1MaNwaNGWUC92IOH_mtG4fbbBSdRoFPOl8-E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Besley", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/besley/besley-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/besley/v19/PlIhFlO1MaNwaNGWUC92IOH_mtG4fYTBSdRoFPOl8-E.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Besley", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/besley/besley-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/besley/v19/PlIhFlO1MaNwaNGWUC92IOH_mtG4fWjGSdRoFPOl8-E.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Besley", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/besley/besley-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/besley/v19/PlIhFlO1MaNwaNGWUC92IOH_mtG4fVHGSdRoFPOl8-E.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Besley", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/besley/besley-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/besley/v19/PlIhFlO1MaNwaNGWUC92IOH_mtG4fTbGSdRoFPOl8-E.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Besley", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/besley/besley-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/besley/v19/PlIhFlO1MaNwaNGWUC92IOH_mtG4fR_GSdRoFPOl8-E.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Besley", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/besley/besley-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/besley/v19/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CoZdiENGg4-E04A.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Besley", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/besley/besley-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/besley/v19/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Ck5diENGg4-E04A.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Besley", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/besley/besley-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/besley/v19/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Cf5BiENGg4-E04A.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Besley", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/besley/besley-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/besley/v19/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CRpBiENGg4-E04A.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Besley", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/besley/besley-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/besley/v19/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CIZBiENGg4-E04A.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Besley", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/besley/besley-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/besley/v19/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CCJBiENGg4-E04A.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Besley", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/besley/besley-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/besley/besley.svg" - }, - { - "name": "Beth Ellen", - "fontFamily": "Beth Ellen, cursive", - "slug": "beth-ellen", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bethellen/v17/WwkbxPW2BE-3rb_JNT-qEIAiVNo5xNY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Beth Ellen", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/beth-ellen/beth-ellen-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/beth-ellen/beth-ellen.svg" - }, - { - "name": "Bevan", - "fontFamily": "Bevan, serif", - "slug": "bevan", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bevan/v24/4iCj6KZ0a9NXjF8aUir7tlSJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bevan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bevan/bevan-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bevan/v24/4iCt6KZ0a9NXjG8YWC7Zs0SJD4U.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Bevan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bevan/bevan-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bevan/bevan.svg" - }, - { - "name": "BhuTuka Expanded One", - "fontFamily": "BhuTuka Expanded One, serif", - "slug": "bhutuka-expanded-one", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bhutukaexpandedone/v7/SLXXc0jZ4WUJcClHTtv0t7IaDRsBsWRiJCyX8pg_RVH1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BhuTuka Expanded One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bhutuka-expanded-one/bhutuka-expanded-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bhutuka-expanded-one/bhutuka-expanded-one.svg" - }, - { - "name": "Big Shoulders Display", - "fontFamily": "Big Shoulders Display, system-ui", - "slug": "big-shoulders-display", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersdisplay/v21/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY86JF46SRP4yZQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-display/big-shoulders-display-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersdisplay/v21/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ87JF46SRP4yZQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-display/big-shoulders-display-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersdisplay/v21/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YddE7JF46SRP4yZQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-display/big-shoulders-display-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersdisplay/v21/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY87JF46SRP4yZQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-display/big-shoulders-display-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersdisplay/v21/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0Ydb07JF46SRP4yZQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-display/big-shoulders-display-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersdisplay/v21/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdVE8JF46SRP4yZQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-display/big-shoulders-display-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersdisplay/v21/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdWg8JF46SRP4yZQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-display/big-shoulders-display-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersdisplay/v21/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ88JF46SRP4yZQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-display/big-shoulders-display-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersdisplay/v21/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdSY8JF46SRP4yZQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-display/big-shoulders-display-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-display/big-shoulders-display.svg" - }, - { - "name": "Big Shoulders Inline Display", - "fontFamily": "Big Shoulders Inline Display, system-ui", - "slug": "big-shoulders-inline-display", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersinlinedisplay/v27/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBEnR5yPc2Huux.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-inline-display/big-shoulders-inline-display-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersinlinedisplay/v27/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBE3R5yPc2Huux.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-inline-display/big-shoulders-inline-display-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersinlinedisplay/v27/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0mfE3R5yPc2Huux.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-inline-display/big-shoulders-inline-display-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersinlinedisplay/v27/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBE3R5yPc2Huux.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-inline-display/big-shoulders-inline-display-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersinlinedisplay/v27/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nzE3R5yPc2Huux.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-inline-display/big-shoulders-inline-display-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersinlinedisplay/v27/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kfFHR5yPc2Huux.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-inline-display/big-shoulders-inline-display-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersinlinedisplay/v27/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kmFHR5yPc2Huux.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-inline-display/big-shoulders-inline-display-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersinlinedisplay/v27/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBFHR5yPc2Huux.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-inline-display/big-shoulders-inline-display-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersinlinedisplay/v27/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0loFHR5yPc2Huux.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-inline-display/big-shoulders-inline-display-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-inline-display/big-shoulders-inline-display.svg" - }, - { - "name": "Big Shoulders Inline Text", - "fontFamily": "Big Shoulders Inline Text, system-ui", - "slug": "big-shoulders-inline-text", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersinlinetext/v26/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0yqGN7Y6Jsc8c.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-inline-text/big-shoulders-inline-text-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersinlinetext/v26/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0y6GN7Y6Jsc8c.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-inline-text/big-shoulders-inline-text-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersinlinetext/v26/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgbqy6GN7Y6Jsc8c.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-inline-text/big-shoulders-inline-text-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersinlinetext/v26/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0y6GN7Y6Jsc8c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-inline-text/big-shoulders-inline-text-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersinlinetext/v26/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgaGy6GN7Y6Jsc8c.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-inline-text/big-shoulders-inline-text-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersinlinetext/v26/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZqzKGN7Y6Jsc8c.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-inline-text/big-shoulders-inline-text-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersinlinetext/v26/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZTzKGN7Y6Jsc8c.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-inline-text/big-shoulders-inline-text-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersinlinetext/v26/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0zKGN7Y6Jsc8c.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-inline-text/big-shoulders-inline-text-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersinlinetext/v26/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgYdzKGN7Y6Jsc8c.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-inline-text/big-shoulders-inline-text-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-inline-text/big-shoulders-inline-text.svg" - }, - { - "name": "Big Shoulders Stencil Display", - "fontFamily": "Big Shoulders Stencil Display, system-ui", - "slug": "big-shoulders-stencil-display", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersstencildisplay/v28/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0nPKHznJucP9w.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-stencil-display/big-shoulders-stencil-display-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersstencildisplay/v28/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0jPKHznJucP9w.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-stencil-display/big-shoulders-stencil-display-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersstencildisplay/v28/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_ZUjPKHznJucP9w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-stencil-display/big-shoulders-stencil-display-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersstencildisplay/v28/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0jPKHznJucP9w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-stencil-display/big-shoulders-stencil-display-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersstencildisplay/v28/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_CUjPKHznJucP9w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-stencil-display/big-shoulders-stencil-display-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersstencildisplay/v28/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_5U_PKHznJucP9w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-stencil-display/big-shoulders-stencil-display-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersstencildisplay/v28/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_3E_PKHznJucP9w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-stencil-display/big-shoulders-stencil-display-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersstencildisplay/v28/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0_PKHznJucP9w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-stencil-display/big-shoulders-stencil-display-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersstencildisplay/v28/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_kk_PKHznJucP9w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-stencil-display/big-shoulders-stencil-display-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-stencil-display/big-shoulders-stencil-display.svg" - }, - { - "name": "Big Shoulders Stencil Text", - "fontFamily": "Big Shoulders Stencil Text, system-ui", - "slug": "big-shoulders-stencil-text", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersstenciltext/v26/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04XIGS_Py_AWbQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-stencil-text/big-shoulders-stencil-text-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersstenciltext/v26/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4TIGS_Py_AWbQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-stencil-text/big-shoulders-stencil-text-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersstenciltext/v26/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRjYTIGS_Py_AWbQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-stencil-text/big-shoulders-stencil-text-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersstenciltext/v26/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04TIGS_Py_AWbQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-stencil-text/big-shoulders-stencil-text-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersstenciltext/v26/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR4YTIGS_Py_AWbQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-stencil-text/big-shoulders-stencil-text-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersstenciltext/v26/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRDYPIGS_Py_AWbQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-stencil-text/big-shoulders-stencil-text-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersstenciltext/v26/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRNIPIGS_Py_AWbQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-stencil-text/big-shoulders-stencil-text-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersstenciltext/v26/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4PIGS_Py_AWbQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-stencil-text/big-shoulders-stencil-text-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshouldersstenciltext/v26/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGReoPIGS_Py_AWbQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-stencil-text/big-shoulders-stencil-text-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-stencil-text/big-shoulders-stencil-text.svg" - }, - { - "name": "Big Shoulders Text", - "fontFamily": "Big Shoulders Text, system-ui", - "slug": "big-shoulders-text", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshoulderstext/v24/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-r3TIPNl6P2pc.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-text/big-shoulders-text-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshoulderstext/v24/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-q3TIPNl6P2pc.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-text/big-shoulders-text-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshoulderstext/v24/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3dGq3TIPNl6P2pc.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-text/big-shoulders-text-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshoulderstext/v24/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-q3TIPNl6P2pc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-text/big-shoulders-text-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshoulderstext/v24/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3b2q3TIPNl6P2pc.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-text/big-shoulders-text-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshoulderstext/v24/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3VGt3TIPNl6P2pc.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-text/big-shoulders-text-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshoulderstext/v24/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Wit3TIPNl6P2pc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-text/big-shoulders-text-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshoulderstext/v24/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-t3TIPNl6P2pc.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-text/big-shoulders-text-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshoulderstext/v24/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Sat3TIPNl6P2pc.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-text/big-shoulders-text-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/big-shoulders-text/big-shoulders-text.svg" - }, - { - "name": "Bigelow Rules", - "fontFamily": "Bigelow Rules, system-ui", - "slug": "bigelow-rules", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigelowrules/v29/RrQWboly8iR_I3KWSzeRuN0zT4cCH8WAJVk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bigelow Rules", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bigelow-rules/bigelow-rules-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bigelow-rules/bigelow-rules.svg" - }, - { - "name": "Bigshot One", - "fontFamily": "Bigshot One, system-ui", - "slug": "bigshot-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bigshotone/v29/u-470qukhRkkO6BD_7cM_gxuUQJBXv_-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bigshot One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bigshot-one/bigshot-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bigshot-one/bigshot-one.svg" - }, - { - "name": "Bilbo", - "fontFamily": "Bilbo, cursive", - "slug": "bilbo", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bilbo/v20/o-0EIpgpwWwZ210hpIRz4wxE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bilbo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bilbo/bilbo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bilbo/bilbo.svg" - }, - { - "name": "Bilbo Swash Caps", - "fontFamily": "Bilbo Swash Caps, cursive", - "slug": "bilbo-swash-caps", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bilboswashcaps/v22/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAPopiRfKp8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bilbo Swash Caps", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bilbo-swash-caps/bilbo-swash-caps-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bilbo-swash-caps/bilbo-swash-caps.svg" - }, - { - "name": "BioRhyme", - "fontFamily": "BioRhyme, serif", - "slug": "biorhyme", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/biorhyme/v16/1cX3aULHBpDMsHYW_ESOjnGAq8Sk1PoH.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "BioRhyme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biorhyme/biorhyme-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/biorhyme/v16/1cX3aULHBpDMsHYW_ETqjXGAq8Sk1PoH.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "BioRhyme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biorhyme/biorhyme-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/biorhyme/v16/1cXwaULHBpDMsHYW_HxGpVWIgNit.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BioRhyme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biorhyme/biorhyme-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/biorhyme/v16/1cX3aULHBpDMsHYW_ET6inGAq8Sk1PoH.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "BioRhyme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biorhyme/biorhyme-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/biorhyme/v16/1cX3aULHBpDMsHYW_ETmiXGAq8Sk1PoH.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "BioRhyme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biorhyme/biorhyme-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biorhyme/biorhyme.svg" - }, - { - "name": "BioRhyme Expanded", - "fontFamily": "BioRhyme Expanded, serif", - "slug": "biorhyme-expanded", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/biorhymeexpanded/v21/i7dVIE1zZzytGswgU577CDY9LjbffxxcblSHSdTXrb_z.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "BioRhyme Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biorhyme-expanded/biorhyme-expanded-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/biorhymeexpanded/v21/i7dVIE1zZzytGswgU577CDY9Ljbffxw4bVSHSdTXrb_z.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "BioRhyme Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biorhyme-expanded/biorhyme-expanded-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/biorhymeexpanded/v21/i7dQIE1zZzytGswgU577CDY9LjbffySURXCPYsje.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BioRhyme Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biorhyme-expanded/biorhyme-expanded-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/biorhymeexpanded/v21/i7dVIE1zZzytGswgU577CDY9LjbffxwoalSHSdTXrb_z.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "BioRhyme Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biorhyme-expanded/biorhyme-expanded-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/biorhymeexpanded/v21/i7dVIE1zZzytGswgU577CDY9Ljbffxw0aVSHSdTXrb_z.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "BioRhyme Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biorhyme-expanded/biorhyme-expanded-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biorhyme-expanded/biorhyme-expanded.svg" - }, - { - "name": "Birthstone", - "fontFamily": "Birthstone, cursive", - "slug": "birthstone", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/birthstone/v14/8AtsGs2xO4yLRhy87sv_HLn5jRfZHzM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Birthstone", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/birthstone/birthstone-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/birthstone/birthstone.svg" - }, - { - "name": "Birthstone Bounce", - "fontFamily": "Birthstone Bounce, cursive", - "slug": "birthstone-bounce", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/birthstonebounce/v11/ga6XaxZF43lIvTWrktHOTBJZGH7dEeVJGIMYDo_8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Birthstone Bounce", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/birthstone-bounce/birthstone-bounce-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/birthstonebounce/v11/ga6SaxZF43lIvTWrktHOTBJZGH7dEd29MacQJZP1LmD9.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Birthstone Bounce", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/birthstone-bounce/birthstone-bounce-500-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/birthstone-bounce/birthstone-bounce.svg" - }, - { - "name": "Biryani", - "fontFamily": "Biryani, sans-serif", - "slug": "biryani", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddYQyGTBSU-J-RxQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Biryani", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biryani/biryani-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddeAxGTBSU-J-RxQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Biryani", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biryani/biryani-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/biryani/v13/hv-WlzNxIFoO84YdTUwZPTh5T-s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Biryani", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biryani/biryani-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddZQ3GTBSU-J-RxQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Biryani", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biryani/biryani-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddfA2GTBSU-J-RxQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Biryani", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biryani/biryani-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddew1GTBSU-J-RxQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Biryani", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biryani/biryani-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddcg0GTBSU-J-RxQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Biryani", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biryani/biryani-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/biryani/biryani.svg" - }, - { - "name": "Bitter", - "fontFamily": "Bitter, serif", - "slug": "bitter", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbeCL_EXFh2reU.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Bitter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bitter/bitter-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbfCL_EXFh2reU.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Bitter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bitter/bitter-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8ajfCL_EXFh2reU.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Bitter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bitter/bitter-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbfCL_EXFh2reU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bitter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bitter/bitter-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8cTfCL_EXFh2reU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Bitter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bitter/bitter-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8SjYCL_EXFh2reU.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Bitter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bitter/bitter-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8RHYCL_EXFh2reU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Bitter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bitter/bitter-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbYCL_EXFh2reU.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Bitter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bitter/bitter-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8V_YCL_EXFh2reU.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Bitter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bitter/bitter-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4P3OWHpzveWxBw.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Bitter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bitter/bitter-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPzOWHpzveWxBw.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Bitter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bitter/bitter-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cvvzOWHpzveWxBw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Bitter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bitter/bitter-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4PzOWHpzveWxBw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Bitter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bitter/bitter-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c0vzOWHpzveWxBw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Bitter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bitter/bitter-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cPvvOWHpzveWxBw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Bitter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bitter/bitter-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cB_vOWHpzveWxBw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Bitter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bitter/bitter-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPvOWHpzveWxBw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Bitter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bitter/bitter-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cSfvOWHpzveWxBw.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Bitter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bitter/bitter-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bitter/bitter.svg" - }, - { - "name": "Black And White Picture", - "fontFamily": "Black And White Picture, system-ui", - "slug": "black-and-white-picture", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/blackandwhitepicture/v24/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5HbcMi-yWY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Black And White Picture", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/black-and-white-picture/black-and-white-picture-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/black-and-white-picture/black-and-white-picture.svg" - }, - { - "name": "Black Han Sans", - "fontFamily": "Black Han Sans, sans-serif", - "slug": "black-han-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/blackhansans/v17/ea8Aad44WunzF9a-dL6toA8r8nqVIXSkH-Hc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Black Han Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/black-han-sans/black-han-sans-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/black-han-sans/black-han-sans.svg" - }, - { - "name": "Black Ops One", - "fontFamily": "Black Ops One, system-ui", - "slug": "black-ops-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/blackopsone/v20/qWcsB6-ypo7xBdr6Xshe96H3WDzRtjkho4M.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Black Ops One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/black-ops-one/black-ops-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/black-ops-one/black-ops-one.svg" - }, - { - "name": "Blaka", - "fontFamily": "Blaka, system-ui", - "slug": "blaka", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/blaka/v5/8vIG7w8722p_6kdr20D2FV5e.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Blaka", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/blaka/blaka-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/blaka/blaka.svg" - }, - { - "name": "Blaka Hollow", - "fontFamily": "Blaka Hollow, system-ui", - "slug": "blaka-hollow", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/blakahollow/v5/MCoUzAL91sjRE2FsKsxUtezYB9oFyW_-oA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Blaka Hollow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/blaka-hollow/blaka-hollow-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/blaka-hollow/blaka-hollow.svg" - }, - { - "name": "Blaka Ink", - "fontFamily": "Blaka Ink, system-ui", - "slug": "blaka-ink", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/blakaink/v7/AlZy_zVVtpj22Znag2chdXf4XB0Tow.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Blaka Ink", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/blaka-ink/blaka-ink-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/blaka-ink/blaka-ink.svg" - }, - { - "name": "Blinker", - "fontFamily": "Blinker, sans-serif", - "slug": "blinker", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/blinker/v13/cIf_MaFatEE-VTaP_E2hZEsCkIt9QQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Blinker", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/blinker/blinker-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_OGARGEsnIJkWL4.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Blinker", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/blinker/blinker-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_IWDRGEsnIJkWL4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Blinker", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/blinker/blinker-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/blinker/v13/cIf9MaFatEE-VTaPxCmrYGkHgIs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Blinker", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/blinker/blinker-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_PGFRGEsnIJkWL4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Blinker", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/blinker/blinker-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_JWERGEsnIJkWL4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Blinker", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/blinker/blinker-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_ImHRGEsnIJkWL4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Blinker", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/blinker/blinker-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_K2GRGEsnIJkWL4.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Blinker", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/blinker/blinker-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/blinker/blinker.svg" - }, - { - "name": "Bodoni Moda", - "fontFamily": "Bodoni Moda, serif", - "slug": "bodoni-moda", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oU7awIBytVjMYwE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bodoni Moda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bodoni-moda/bodoni-moda-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oXzawIBytVjMYwE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Bodoni Moda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bodoni-moda/bodoni-moda-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oZDdwIBytVjMYwE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Bodoni Moda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bodoni-moda/bodoni-moda-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oandwIBytVjMYwE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Bodoni Moda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bodoni-moda/bodoni-moda-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oc7dwIBytVjMYwE.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Bodoni Moda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bodoni-moda/bodoni-moda-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oefdwIBytVjMYwE.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Bodoni Moda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bodoni-moda/bodoni-moda-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZKMN4sXrJcwHqoQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Bodoni Moda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bodoni-moda/bodoni-moda-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZGsN4sXrJcwHqoQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Bodoni Moda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bodoni-moda/bodoni-moda-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZ9sR4sXrJcwHqoQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Bodoni Moda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bodoni-moda/bodoni-moda-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZz8R4sXrJcwHqoQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Bodoni Moda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bodoni-moda/bodoni-moda-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZqMR4sXrJcwHqoQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Bodoni Moda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bodoni-moda/bodoni-moda-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZgcR4sXrJcwHqoQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Bodoni Moda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bodoni-moda/bodoni-moda-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bodoni-moda/bodoni-moda.svg" - }, - { - "name": "Bokor", - "fontFamily": "Bokor, system-ui", - "slug": "bokor", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bokor/v30/m8JcjfpeeaqTiR2WdInbcaxE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bokor", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bokor/bokor-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bokor/bokor.svg" - }, - { - "name": "Bona Nova", - "fontFamily": "Bona Nova, serif", - "slug": "bona-nova", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bonanova/v10/B50NF7ZCpX7fcHfvIUBJi6hqHK-CLA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bona Nova", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bona-nova/bona-nova-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bonanova/v10/B50LF7ZCpX7fcHfvIUB5iaJuPqqSLJYf.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Bona Nova", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bona-nova/bona-nova-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bonanova/v10/B50IF7ZCpX7fcHfvIUBxN4dOFISeJY8GgQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Bona Nova", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bona-nova/bona-nova-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bona-nova/bona-nova.svg" - }, - { - "name": "Bonbon", - "fontFamily": "Bonbon, cursive", - "slug": "bonbon", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bonbon/v30/0FlVVPeVlFec4ee_cDEAbQY5-A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bonbon", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bonbon/bonbon-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bonbon/bonbon.svg" - }, - { - "name": "Bonheur Royale", - "fontFamily": "Bonheur Royale, cursive", - "slug": "bonheur-royale", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bonheurroyale/v13/c4m51nt_GMTrtX-b9GcG4-YRmYK_c0f1N5Ij.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bonheur Royale", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bonheur-royale/bonheur-royale-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bonheur-royale/bonheur-royale.svg" - }, - { - "name": "Boogaloo", - "fontFamily": "Boogaloo, system-ui", - "slug": "boogaloo", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/boogaloo/v23/kmK-Zq45GAvOdnaW6x1F_SrQo_1K.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Boogaloo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/boogaloo/boogaloo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/boogaloo/boogaloo.svg" - }, - { - "name": "Borel", - "fontFamily": "Borel, cursive", - "slug": "borel", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/borel/v2/6qLOKZsftAPisgshYyMnOjwE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Borel", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/borel/borel-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/borel/borel.svg" - }, - { - "name": "Bowlby One", - "fontFamily": "Bowlby One, system-ui", - "slug": "bowlby-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bowlbyone/v23/taiPGmVuC4y96PFeqp8smo6C_Z0wcK4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bowlby One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bowlby-one/bowlby-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bowlby-one/bowlby-one.svg" - }, - { - "name": "Bowlby One SC", - "fontFamily": "Bowlby One SC, system-ui", - "slug": "bowlby-one-sc", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bowlbyonesc/v25/DtVlJxerQqQm37tzN3wMug9Pzgj8owhNjuE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bowlby One SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bowlby-one-sc/bowlby-one-sc-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bowlby-one-sc/bowlby-one-sc.svg" - }, - { - "name": "Braah One", - "fontFamily": "Braah One, sans-serif", - "slug": "braah-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/braahone/v6/KFOlCnWUpt6LsxxxiylvAx05IsDqlA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Braah One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/braah-one/braah-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/braah-one/braah-one.svg" - }, - { - "name": "Brawler", - "fontFamily": "Brawler, serif", - "slug": "brawler", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/brawler/v19/xn7gYHE3xXewAscGsgC7S9XdZN8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Brawler", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/brawler/brawler-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/brawler/v19/xn7lYHE3xXewAscGiryUb932eNaPfk8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Brawler", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/brawler/brawler-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/brawler/brawler.svg" - }, - { - "name": "Bree Serif", - "fontFamily": "Bree Serif, serif", - "slug": "bree-serif", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/breeserif/v17/4UaHrEJCrhhnVA3DgluAx63j5pN1MwI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bree Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bree-serif/bree-serif-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bree-serif/bree-serif.svg" - }, - { - "name": "Bricolage Grotesque", - "fontFamily": "Bricolage Grotesque, sans-serif", - "slug": "bricolage-grotesque", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bricolagegrotesque/v1/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvZviyM0vs-wJDtw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Bricolage Grotesque", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bricolage-grotesque/bricolage-grotesque-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bricolagegrotesque/v1/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvUXiyM0vs-wJDtw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Bricolage Grotesque", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bricolage-grotesque/bricolage-grotesque-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bricolagegrotesque/v1/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvRviyM0vs-wJDtw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bricolage Grotesque", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bricolage-grotesque/bricolage-grotesque-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bricolagegrotesque/v1/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvSniyM0vs-wJDtw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Bricolage Grotesque", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bricolage-grotesque/bricolage-grotesque-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bricolagegrotesque/v1/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvcXlyM0vs-wJDtw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Bricolage Grotesque", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bricolage-grotesque/bricolage-grotesque-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bricolagegrotesque/v1/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvfzlyM0vs-wJDtw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Bricolage Grotesque", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bricolage-grotesque/bricolage-grotesque-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bricolagegrotesque/v1/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvZvlyM0vs-wJDtw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Bricolage Grotesque", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bricolage-grotesque/bricolage-grotesque-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bricolage-grotesque/bricolage-grotesque.svg" - }, - { - "name": "Bruno Ace", - "fontFamily": "Bruno Ace, system-ui", - "slug": "bruno-ace", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/brunoace/v5/WwkcxPa2E06x4trkOj_kMKoMWNMg3Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bruno Ace", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bruno-ace/bruno-ace-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bruno-ace/bruno-ace.svg" - }, - { - "name": "Bruno Ace SC", - "fontFamily": "Bruno Ace SC, system-ui", - "slug": "bruno-ace-sc", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/brunoacesc/v5/ptROTiycffFLBuiHjdJDl634LSFrpe8uZA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bruno Ace SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bruno-ace-sc/bruno-ace-sc-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bruno-ace-sc/bruno-ace-sc.svg" - }, - { - "name": "Brygada 1918", - "fontFamily": "Brygada 1918, serif", - "slug": "brygada-1918", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y2-f-V8Wu5O3gbo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Brygada 1918", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/brygada-1918/brygada-1918-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y12f-V8Wu5O3gbo.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Brygada 1918", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/brygada-1918/brygada-1918-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y7GY-V8Wu5O3gbo.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Brygada 1918", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/brygada-1918/brygada-1918-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y4iY-V8Wu5O3gbo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Brygada 1918", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/brygada-1918/brygada-1918-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcERwcv7GykboaLg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Brygada 1918", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/brygada-1918/brygada-1918-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcIxwcv7GykboaLg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Brygada 1918", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/brygada-1918/brygada-1918-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfczxscv7GykboaLg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Brygada 1918", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/brygada-1918/brygada-1918-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfc9hscv7GykboaLg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Brygada 1918", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/brygada-1918/brygada-1918-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/brygada-1918/brygada-1918.svg" - }, - { - "name": "Bubblegum Sans", - "fontFamily": "Bubblegum Sans, system-ui", - "slug": "bubblegum-sans", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bubblegumsans/v20/AYCSpXb_Z9EORv1M5QTjEzMEtdaHzoPPb7R4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bubblegum Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bubblegum-sans/bubblegum-sans-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bubblegum-sans/bubblegum-sans.svg" - }, - { - "name": "Bubbler One", - "fontFamily": "Bubbler One, sans-serif", - "slug": "bubbler-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bubblerone/v20/f0Xy0eqj68ppQV9KBLmAouHH26MPePkt.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bubbler One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bubbler-one/bubbler-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bubbler-one/bubbler-one.svg" - }, - { - "name": "Buda", - "fontFamily": "Buda, system-ui", - "slug": "buda", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/buda/v29/GFDqWAN8mnyIJSSrG7UBr7pZKA0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Buda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/buda/buda-300-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/buda/buda.svg" - }, - { - "name": "Buenard", - "fontFamily": "Buenard, serif", - "slug": "buenard", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/buenard/v17/OD5DuM6Cyma8FnnsPzf9qGi9HL4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Buenard", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/buenard/buenard-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/buenard/v17/OD5GuM6Cyma8FnnsB4vSjGCWALepwss.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Buenard", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/buenard/buenard-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/buenard/buenard.svg" - }, - { - "name": "Bungee", - "fontFamily": "Bungee, system-ui", - "slug": "bungee", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bungee/v13/N0bU2SZBIuF2PU_ECn50Kd_PmA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bungee", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bungee/bungee-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bungee/bungee.svg" - }, - { - "name": "Bungee Hairline", - "fontFamily": "Bungee Hairline, system-ui", - "slug": "bungee-hairline", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bungeehairline/v22/snfys0G548t04270a_ljTLUVrv-7YB2dQ5ZPqQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bungee Hairline", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bungee-hairline/bungee-hairline-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bungee-hairline/bungee-hairline.svg" - }, - { - "name": "Bungee Inline", - "fontFamily": "Bungee Inline, system-ui", - "slug": "bungee-inline", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bungeeinline/v15/Gg8zN58UcgnlCweMrih332VuDGJ1-FEglsc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bungee Inline", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bungee-inline/bungee-inline-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bungee-inline/bungee-inline.svg" - }, - { - "name": "Bungee Outline", - "fontFamily": "Bungee Outline, system-ui", - "slug": "bungee-outline", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bungeeoutline/v20/_6_mEDvmVP24UvU2MyiGDslL3Qg3YhJqPXxo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bungee Outline", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bungee-outline/bungee-outline-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bungee-outline/bungee-outline.svg" - }, - { - "name": "Bungee Shade", - "fontFamily": "Bungee Shade, system-ui", - "slug": "bungee-shade", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bungeeshade/v13/DtVkJxarWL0t2KdzK3oI_jks7iLSrwFUlw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bungee Shade", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bungee-shade/bungee-shade-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bungee-shade/bungee-shade.svg" - }, - { - "name": "Bungee Spice", - "fontFamily": "Bungee Spice, system-ui", - "slug": "bungee-spice", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/bungeespice/v11/nwpTtK2nIhxE0q-IwgSpZBqCzyI-aMPF7Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bungee Spice", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bungee-spice/bungee-spice-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/bungee-spice/bungee-spice.svg" - }, - { - "name": "Butcherman", - "fontFamily": "Butcherman, system-ui", - "slug": "butcherman", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/butcherman/v24/2EbiL-thF0loflXUBOdb1zWzq_5uT84.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Butcherman", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/butcherman/butcherman-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/butcherman/butcherman.svg" - }, - { - "name": "Butterfly Kids", - "fontFamily": "Butterfly Kids, cursive", - "slug": "butterfly-kids", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/butterflykids/v25/ll8lK2CWTjuqAsXDqlnIbMNs5S4arxFrAX1D.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Butterfly Kids", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/butterfly-kids/butterfly-kids-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/butterfly-kids/butterfly-kids.svg" - }, - { - "name": "Cabin", - "fontFamily": "Cabin, sans-serif", - "slug": "cabin", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EL7Gvxm7rE_s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cabin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cabin/cabin-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkW-EL7Gvxm7rE_s.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cabin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cabin/cabin-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkYODL7Gvxm7rE_s.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cabin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cabin/cabin-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkbqDL7Gvxm7rE_s.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cabin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cabin/cabin-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHx_KlwkzuA_u1Bg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cabin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cabin/cabin-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXH9fKlwkzuA_u1Bg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Cabin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cabin/cabin-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHGfWlwkzuA_u1Bg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Cabin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cabin/cabin-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHIPWlwkzuA_u1Bg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cabin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cabin/cabin-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cabin/cabin.svg" - }, - { - "name": "Cabin Condensed", - "fontFamily": "Cabin Condensed, sans-serif", - "slug": "cabin-condensed", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cabincondensed/v20/nwpMtK6mNhBK2err_hqkYhHRqmwaYOjZ5HZl8Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cabin Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cabin-condensed/cabin-condensed-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwilMH97F15-K1oqQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cabin Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cabin-condensed/cabin-condensed-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwiuMb97F15-K1oqQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cabin Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cabin-condensed/cabin-condensed-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwi3Mf97F15-K1oqQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cabin Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cabin-condensed/cabin-condensed-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cabin-condensed/cabin-condensed.svg" - }, - { - "name": "Cabin Sketch", - "fontFamily": "Cabin Sketch, system-ui", - "slug": "cabin-sketch", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cabinsketch/v21/QGYpz_kZZAGCONcK2A4bGOjMn9JM6fnuKg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cabin Sketch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cabin-sketch/cabin-sketch-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cabinsketch/v21/QGY2z_kZZAGCONcK2A4bGOj0I_1o4dLyI4CMFw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cabin Sketch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cabin-sketch/cabin-sketch-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cabin-sketch/cabin-sketch.svg" - }, - { - "name": "Caesar Dressing", - "fontFamily": "Caesar Dressing, system-ui", - "slug": "caesar-dressing", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/caesardressing/v21/yYLx0hLa3vawqtwdswbotmK4vrR3cbb6LZttyg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Caesar Dressing", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caesar-dressing/caesar-dressing-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caesar-dressing/caesar-dressing.svg" - }, - { - "name": "Cagliostro", - "fontFamily": "Cagliostro, sans-serif", - "slug": "cagliostro", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cagliostro/v21/ZgNWjP5HM73BV5amnX-TjGXEM4COoE4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cagliostro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cagliostro/cagliostro-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cagliostro/cagliostro.svg" - }, - { - "name": "Cairo", - "fontFamily": "Cairo, sans-serif", - "slug": "cairo", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hGA-W1ToLQ-HmkA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Cairo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cairo/cairo-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hL4-W1ToLQ-HmkA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cairo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cairo/cairo-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-W1ToLQ-HmkA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cairo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cairo/cairo-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hNI-W1ToLQ-HmkA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cairo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cairo/cairo-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hD45W1ToLQ-HmkA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cairo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cairo/cairo-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hAc5W1ToLQ-HmkA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cairo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cairo/cairo-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hGA5W1ToLQ-HmkA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Cairo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cairo/cairo-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hEk5W1ToLQ-HmkA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Cairo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cairo/cairo-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cairo/cairo.svg" - }, - { - "name": "Cairo Play", - "fontFamily": "Cairo Play, sans-serif", - "slug": "cairo-play", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnYq9yXa8GvzaA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Cairo Play", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cairo-play/cairo-play-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1zHYq9yXa8GvzaA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cairo Play", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cairo-play/cairo-play-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1knYq9yXa8GvzaA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cairo Play", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cairo-play/cairo-play-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1oHYq9yXa8GvzaA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cairo Play", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cairo-play/cairo-play-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1THEq9yXa8GvzaA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cairo Play", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cairo-play/cairo-play-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1dXEq9yXa8GvzaA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cairo Play", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cairo-play/cairo-play-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnEq9yXa8GvzaA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Cairo Play", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cairo-play/cairo-play-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1O3Eq9yXa8GvzaA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Cairo Play", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cairo-play/cairo-play-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cairo-play/cairo-play.svg" - }, - { - "name": "Caladea", - "fontFamily": "Caladea, serif", - "slug": "caladea", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/caladea/v7/kJEzBugZ7AAjhybUjR93-9IztOc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Caladea", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caladea/caladea-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/caladea/v7/kJExBugZ7AAjhybUvR19__A2pOdvDA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Caladea", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caladea/caladea-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/caladea/v7/kJE2BugZ7AAjhybUtaNY39oYqO52FZ0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Caladea", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caladea/caladea-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/caladea/v7/kJE0BugZ7AAjhybUvR1FQ98SrMxzBZ2lDA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Caladea", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caladea/caladea-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caladea/caladea.svg" - }, - { - "name": "Calistoga", - "fontFamily": "Calistoga, system-ui", - "slug": "calistoga", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/calistoga/v15/6NUU8F2OJg6MeR7l4e0vtMYAwdRZfw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Calistoga", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/calistoga/calistoga-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/calistoga/calistoga.svg" - }, - { - "name": "Calligraffitti", - "fontFamily": "Calligraffitti, cursive", - "slug": "calligraffitti", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/calligraffitti/v19/46k2lbT3XjDVqJw3DCmCFjE0vnFZM5ZBpYN-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Calligraffitti", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/calligraffitti/calligraffitti-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/calligraffitti/calligraffitti.svg" - }, - { - "name": "Cambay", - "fontFamily": "Cambay, sans-serif", - "slug": "cambay", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cambay/v12/SLXJc1rY6H0_ZDsGbrSIz9JsaA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cambay", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cambay/cambay-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cambay/v12/SLXLc1rY6H0_ZDs2bL6M7dd8aGZk.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cambay", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cambay/cambay-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cambay/v12/SLXKc1rY6H0_ZDs-0pusx_lwYX99kA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cambay", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cambay/cambay-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cambay/v12/SLXMc1rY6H0_ZDs2bIYwwvN0Q3ptkDMN.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cambay", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cambay/cambay-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cambay/cambay.svg" - }, - { - "name": "Cambo", - "fontFamily": "Cambo, serif", - "slug": "cambo", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cambo/v17/IFSqHeNEk8FJk416ok7xkPm8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cambo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cambo/cambo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cambo/cambo.svg" - }, - { - "name": "Candal", - "fontFamily": "Candal, sans-serif", - "slug": "candal", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/candal/v15/XoHn2YH6T7-t_8cNAR4Jt9Yxlw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Candal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/candal/candal-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/candal/candal.svg" - }, - { - "name": "Cantarell", - "fontFamily": "Cantarell, sans-serif", - "slug": "cantarell", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cantarell/v17/B50NF7ZDq37KMUvlO01Ji6hqHK-CLA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cantarell", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cantarell/cantarell-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cantarell/v17/B50LF7ZDq37KMUvlO015iaJuPqqSLJYf.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cantarell", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cantarell/cantarell-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cantarell/v17/B50IF7ZDq37KMUvlO01xN4dOFISeJY8GgQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cantarell", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cantarell/cantarell-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cantarell/v17/B50WF7ZDq37KMUvlO015iZrSEY6aB4oWgWHB.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cantarell", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cantarell/cantarell-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cantarell/cantarell.svg" - }, - { - "name": "Cantata One", - "fontFamily": "Cantata One, serif", - "slug": "cantata-one", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cantataone/v15/PlI5Fl60Nb5obNzNe2jslVxEt8CwfGaD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cantata One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cantata-one/cantata-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cantata-one/cantata-one.svg" - }, - { - "name": "Cantora One", - "fontFamily": "Cantora One, sans-serif", - "slug": "cantora-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cantoraone/v19/gyB4hws1JdgnKy56GB_JX6zdZ4vZVbgZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cantora One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cantora-one/cantora-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cantora-one/cantora-one.svg" - }, - { - "name": "Caprasimo", - "fontFamily": "Caprasimo, system-ui", - "slug": "caprasimo", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/caprasimo/v5/esDT31JQOPuXIUGBp72klZUCGpG-GQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Caprasimo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caprasimo/caprasimo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caprasimo/caprasimo.svg" - }, - { - "name": "Capriola", - "fontFamily": "Capriola, sans-serif", - "slug": "capriola", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/capriola/v14/wXKoE3YSppcvo1PDln_8L-AinG8y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Capriola", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/capriola/capriola-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/capriola/capriola.svg" - }, - { - "name": "Caramel", - "fontFamily": "Caramel, cursive", - "slug": "caramel", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/caramel/v7/P5sCzZKBbMTf_ShyxCRuiZ-uydg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Caramel", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caramel/caramel-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caramel/caramel.svg" - }, - { - "name": "Carattere", - "fontFamily": "Carattere, cursive", - "slug": "carattere", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/carattere/v7/4iCv6Kp1b9dXlgt_CkvTt2aMH4V_gg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Carattere", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/carattere/carattere-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/carattere/carattere.svg" - }, - { - "name": "Cardo", - "fontFamily": "Cardo, serif", - "slug": "cardo", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cardo/v19/wlp_gwjKBV1pqiv_1oAZ2H5O.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cardo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cardo/cardo-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cardo/v19/wlpxgwjKBV1pqhv93IQ73W5OcCk.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cardo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cardo/cardo-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cardo/v19/wlpygwjKBV1pqhND-aQR82JHaTBX.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cardo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cardo/cardo-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cardo/cardo.svg" - }, - { - "name": "Carlito", - "fontFamily": "Carlito, sans-serif", - "slug": "carlito", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/carlito/v3/3Jn9SDPw3m-pk039PDCLTXUETuE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Carlito", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/carlito/carlito-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/carlito/v3/3Jn_SDPw3m-pk039DDKBSVcBXuFb0Q.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Carlito", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/carlito/carlito-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/carlito/v3/3Jn4SDPw3m-pk039BIykaX0vUuhCyOo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Carlito", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/carlito/carlito-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/carlito/v3/3Jn6SDPw3m-pk039DDK59XglVspH2OprMQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Carlito", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/carlito/carlito-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/carlito/carlito.svg" - }, - { - "name": "Carme", - "fontFamily": "Carme, sans-serif", - "slug": "carme", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/carme/v16/ptRHTiWdbvZIDOjGxLNrxfbZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Carme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/carme/carme-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/carme/carme.svg" - }, - { - "name": "Carrois Gothic", - "fontFamily": "Carrois Gothic, sans-serif", - "slug": "carrois-gothic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/carroisgothic/v16/Z9XPDmFATg-N1PLtLOOxvIHl9ZmD3i7ajcJ-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Carrois Gothic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/carrois-gothic/carrois-gothic-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/carrois-gothic/carrois-gothic.svg" - }, - { - "name": "Carrois Gothic SC", - "fontFamily": "Carrois Gothic SC, sans-serif", - "slug": "carrois-gothic-sc", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/carroisgothicsc/v15/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28nNHabY4dN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Carrois Gothic SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/carrois-gothic-sc/carrois-gothic-sc-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/carrois-gothic-sc/carrois-gothic-sc.svg" - }, - { - "name": "Carter One", - "fontFamily": "Carter One, system-ui", - "slug": "carter-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/carterone/v17/q5uCsoe5IOB2-pXv9UcNIxR2hYxREMs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Carter One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/carter-one/carter-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/carter-one/carter-one.svg" - }, - { - "name": "Castoro", - "fontFamily": "Castoro, serif", - "slug": "castoro", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/castoro/v19/1q2GY5yMCld3-O4cHYhEzOYenEU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Castoro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/castoro/castoro-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/castoro/v19/1q2EY5yMCld3-O4cLYpOyMQbjEX5fw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Castoro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/castoro/castoro-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/castoro/castoro.svg" - }, - { - "name": "Castoro Titling", - "fontFamily": "Castoro Titling, system-ui", - "slug": "castoro-titling", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/castorotitling/v8/buEupouwccj03leTfjUAhEZWlrNqYgckeo9RMw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Castoro Titling", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/castoro-titling/castoro-titling-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/castoro-titling/castoro-titling.svg" - }, - { - "name": "Catamaran", - "fontFamily": "Catamaran, sans-serif", - "slug": "catamaran", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjc1anXuluiLyw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Catamaran", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/catamaran/catamaran-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPjd1anXuluiLyw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Catamaran", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/catamaran/catamaran-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPCbd1anXuluiLyw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Catamaran", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/catamaran/catamaran-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjd1anXuluiLyw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Catamaran", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/catamaran/catamaran-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPErd1anXuluiLyw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Catamaran", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/catamaran/catamaran-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPKba1anXuluiLyw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Catamaran", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/catamaran/catamaran-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPJ_a1anXuluiLyw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Catamaran", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/catamaran/catamaran-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPja1anXuluiLyw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Catamaran", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/catamaran/catamaran-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPNHa1anXuluiLyw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Catamaran", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/catamaran/catamaran-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/catamaran/catamaran.svg" - }, - { - "name": "Caudex", - "fontFamily": "Caudex, serif", - "slug": "caudex", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/caudex/v17/esDQ311QOP6BJUrIyviAnb4eEw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Caudex", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caudex/caudex-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/caudex/v17/esDS311QOP6BJUr4yPKEv7sOE4in.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Caudex", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caudex/caudex-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/caudex/v17/esDT311QOP6BJUrwdteklZUCGpG-GQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Caudex", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caudex/caudex-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/caudex/v17/esDV311QOP6BJUr4yMo4kJ8GOJSuGdLB.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Caudex", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caudex/caudex-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caudex/caudex.svg" - }, - { - "name": "Caveat", - "fontFamily": "Caveat, cursive", - "slug": "caveat", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjfJ9SIKjYBxPigs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Caveat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caveat/caveat-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjcB9SIKjYBxPigs.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Caveat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caveat/caveat-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjSx6SIKjYBxPigs.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Caveat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caveat/caveat-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjRV6SIKjYBxPigs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Caveat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caveat/caveat-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caveat/caveat.svg" - }, - { - "name": "Caveat Brush", - "fontFamily": "Caveat Brush, cursive", - "slug": "caveat-brush", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/caveatbrush/v11/EYq0maZfwr9S9-ETZc3fKXtMW7mT03pdQw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Caveat Brush", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caveat-brush/caveat-brush-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/caveat-brush/caveat-brush.svg" - }, - { - "name": "Cedarville Cursive", - "fontFamily": "Cedarville Cursive, cursive", - "slug": "cedarville-cursive", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cedarvillecursive/v17/yYL00g_a2veiudhUmxjo5VKkoqA-B_neJbBxw8BeTg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cedarville Cursive", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cedarville-cursive/cedarville-cursive-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cedarville-cursive/cedarville-cursive.svg" - }, - { - "name": "Ceviche One", - "fontFamily": "Ceviche One, system-ui", - "slug": "ceviche-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cevicheone/v16/gyB4hws1IcA6JzR-GB_JX6zdZ4vZVbgZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ceviche One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ceviche-one/ceviche-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ceviche-one/ceviche-one.svg" - }, - { - "name": "Chakra Petch", - "fontFamily": "Chakra Petch, sans-serif", - "slug": "chakra-petch", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chakrapetch/v11/cIflMapbsEk7TDLdtEz1BwkeNIhFQJXE3AY00g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Chakra Petch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chakra-petch/chakra-petch-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chakrapetch/v11/cIfnMapbsEk7TDLdtEz1BwkWmpLJQp_A_gMk0izH.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Chakra Petch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chakra-petch/chakra-petch-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chakrapetch/v11/cIf6MapbsEk7TDLdtEz1BwkmmKBhSL7Y1Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chakra Petch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chakra-petch/chakra-petch-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chakrapetch/v11/cIfkMapbsEk7TDLdtEz1BwkWmqplarvI1R8t.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Chakra Petch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chakra-petch/chakra-petch-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chakrapetch/v11/cIflMapbsEk7TDLdtEz1BwkebIlFQJXE3AY00g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Chakra Petch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chakra-petch/chakra-petch-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chakrapetch/v11/cIfnMapbsEk7TDLdtEz1BwkWmpKRQ5_A_gMk0izH.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Chakra Petch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chakra-petch/chakra-petch-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chakrapetch/v11/cIflMapbsEk7TDLdtEz1BwkeQI5FQJXE3AY00g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Chakra Petch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chakra-petch/chakra-petch-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chakrapetch/v11/cIfnMapbsEk7TDLdtEz1BwkWmpK9RJ_A_gMk0izH.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Chakra Petch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chakra-petch/chakra-petch-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chakrapetch/v11/cIflMapbsEk7TDLdtEz1BwkeJI9FQJXE3AY00g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Chakra Petch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chakra-petch/chakra-petch-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chakrapetch/v11/cIfnMapbsEk7TDLdtEz1BwkWmpLZRZ_A_gMk0izH.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Chakra Petch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chakra-petch/chakra-petch-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chakra-petch/chakra-petch.svg" - }, - { - "name": "Changa", - "fontFamily": "Changa, sans-serif", - "slug": "changa", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/changa/v27/2-c79JNi2YuVOUcOarRPgnNGooxCZy2xQjDp9htf1ZM.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Changa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/changa/changa-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/changa/v27/2-c79JNi2YuVOUcOarRPgnNGooxCZ_OxQjDp9htf1ZM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Changa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/changa/changa-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/changa/v27/2-c79JNi2YuVOUcOarRPgnNGooxCZ62xQjDp9htf1ZM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Changa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/changa/changa-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/changa/v27/2-c79JNi2YuVOUcOarRPgnNGooxCZ5-xQjDp9htf1ZM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Changa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/changa/changa-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/changa/v27/2-c79JNi2YuVOUcOarRPgnNGooxCZ3O2QjDp9htf1ZM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Changa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/changa/changa-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/changa/v27/2-c79JNi2YuVOUcOarRPgnNGooxCZ0q2QjDp9htf1ZM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Changa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/changa/changa-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/changa/v27/2-c79JNi2YuVOUcOarRPgnNGooxCZy22QjDp9htf1ZM.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Changa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/changa/changa-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/changa/changa.svg" - }, - { - "name": "Changa One", - "fontFamily": "Changa One, system-ui", - "slug": "changa-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/changaone/v20/xfu00W3wXn3QLUJXhzq46AbouLfbK64.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Changa One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/changa-one/changa-one-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/changaone/v20/xfu20W3wXn3QLUJXhzq42ATivJXeO67ISw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Changa One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/changa-one/changa-one-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/changa-one/changa-one.svg" - }, - { - "name": "Chango", - "fontFamily": "Chango, system-ui", - "slug": "chango", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chango/v27/2V0cKI0OB5U7WaJyz324TFUaAw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chango", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chango/chango-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chango/chango.svg" - }, - { - "name": "Charis SIL", - "fontFamily": "Charis SIL, serif", - "slug": "charis-sil", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/charissil/v2/oPWK_kV3l-s-Q8govXvKrPrmYjZ2Xn0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Charis SIL", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/charis-sil/charis-sil-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/charissil/v2/oPWI_kV3l-s-Q8govXvKnPjsZhRzTn2Ozw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Charis SIL", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/charis-sil/charis-sil-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/charissil/v2/oPWJ_kV3l-s-Q8govXvKlEbJRj5dQnSX1ko.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Charis SIL", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/charis-sil/charis-sil-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/charissil/v2/oPWX_kV3l-s-Q8govXvKnPjU2jtXRlaSxkrMCQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Charis SIL", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/charis-sil/charis-sil-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/charis-sil/charis-sil.svg" - }, - { - "name": "Charm", - "fontFamily": "Charm, cursive", - "slug": "charm", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/charm/v11/7cHmv4oii5K0MeYvIe804WIo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Charm", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/charm/charm-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/charm/v11/7cHrv4oii5K0Md6TDss8yn4hnCci.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Charm", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/charm/charm-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/charm/charm.svg" - }, - { - "name": "Charmonman", - "fontFamily": "Charmonman, cursive", - "slug": "charmonman", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/charmonman/v18/MjQDmiR3vP_nuxDv47jiWJGovLdh6OE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Charmonman", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/charmonman/charmonman-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/charmonman/v18/MjQAmiR3vP_nuxDv47jiYC2HmL9K9OhmGnY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Charmonman", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/charmonman/charmonman-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/charmonman/charmonman.svg" - }, - { - "name": "Chathura", - "fontFamily": "Chathura, sans-serif", - "slug": "chathura", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chathura/v20/_gP91R7-rzUuVjim42dEq0SbTvZyuDo.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Chathura", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chathura/chathura-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eMiWSxYPp7oSNy.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Chathura", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chathura/chathura-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chathura/v20/_gP71R7-rzUuVjim418goUC5S-Zy.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chathura", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chathura/chathura-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42ecjmSxYPp7oSNy.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Chathura", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chathura/chathura-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eAjWSxYPp7oSNy.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Chathura", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chathura/chathura-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chathura/chathura.svg" - }, - { - "name": "Chau Philomene One", - "fontFamily": "Chau Philomene One, sans-serif", - "slug": "chau-philomene-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chauphilomeneone/v15/55xxezRsPtfie1vPY49qzdgSlJiHRQFsnIx7QMISdQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chau Philomene One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chau-philomene-one/chau-philomene-one-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chauphilomeneone/v15/55xzezRsPtfie1vPY49qzdgSlJiHRQFcnoZ_YscCdXQB.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Chau Philomene One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chau-philomene-one/chau-philomene-one-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chau-philomene-one/chau-philomene-one.svg" - }, - { - "name": "Chela One", - "fontFamily": "Chela One, system-ui", - "slug": "chela-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chelaone/v21/6ae-4KC7Uqgdz_JZdPIy31vWNTMwoQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chela One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chela-one/chela-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chela-one/chela-one.svg" - }, - { - "name": "Chelsea Market", - "fontFamily": "Chelsea Market, system-ui", - "slug": "chelsea-market", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chelseamarket/v13/BCawqZsHqfr89WNP_IApC8tzKBhlLA4uKkWk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chelsea Market", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chelsea-market/chelsea-market-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chelsea-market/chelsea-market.svg" - }, - { - "name": "Chenla", - "fontFamily": "Chenla, system-ui", - "slug": "chenla", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chenla/v25/SZc43FDpIKu8WZ9eXxfonUPL6Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chenla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chenla/chenla-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chenla/chenla.svg" - }, - { - "name": "Cherish", - "fontFamily": "Cherish, cursive", - "slug": "cherish", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cherish/v8/ll88K2mXUyqsDsTN5iDCI6IJjg8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cherish", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cherish/cherish-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cherish/cherish.svg" - }, - { - "name": "Cherry Bomb One", - "fontFamily": "Cherry Bomb One, system-ui", - "slug": "cherry-bomb-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cherrybombone/v8/y83DW4od1h6KlV3c6JJhRhGOdhrKDNpF41fr-w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cherry Bomb One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cherry-bomb-one/cherry-bomb-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cherry-bomb-one/cherry-bomb-one.svg" - }, - { - "name": "Cherry Cream Soda", - "fontFamily": "Cherry Cream Soda, system-ui", - "slug": "cherry-cream-soda", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cherrycreamsoda/v21/UMBIrOxBrW6w2FFyi9paG0fdVdRciTd6Cd47DJ7G.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cherry Cream Soda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cherry-cream-soda/cherry-cream-soda-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cherry-cream-soda/cherry-cream-soda.svg" - }, - { - "name": "Cherry Swash", - "fontFamily": "Cherry Swash, system-ui", - "slug": "cherry-swash", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cherryswash/v20/i7dNIFByZjaNAMxtZcnfAy58QHi-EwWMbg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cherry Swash", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cherry-swash/cherry-swash-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cherryswash/v20/i7dSIFByZjaNAMxtZcnfAy5E_FeaGy6QZ3WfYg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cherry Swash", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cherry-swash/cherry-swash-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cherry-swash/cherry-swash.svg" - }, - { - "name": "Chewy", - "fontFamily": "Chewy, system-ui", - "slug": "chewy", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chewy/v18/uK_94ruUb-k-wk5xIDMfO-ed.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chewy", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chewy/chewy-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chewy/chewy.svg" - }, - { - "name": "Chicle", - "fontFamily": "Chicle, system-ui", - "slug": "chicle", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chicle/v25/lJwG-pw9i2dqU-BDyWKuobYSxw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chicle", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chicle/chicle-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chicle/chicle.svg" - }, - { - "name": "Chilanka", - "fontFamily": "Chilanka, cursive", - "slug": "chilanka", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chilanka/v20/WWXRlj2DZQiMJYaYRrJQI9EAZhTO.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chilanka", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chilanka/chilanka-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chilanka/chilanka.svg" - }, - { - "name": "Chivo", - "fontFamily": "Chivo, sans-serif", - "slug": "chivo", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB7ul2DSFXjQiQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Chivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo/chivo-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_PB_ul2DSFXjQiQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Chivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo/chivo-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_4h_ul2DSFXjQiQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Chivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo/chivo-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_ul2DSFXjQiQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo/chivo-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_jh_ul2DSFXjQiQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Chivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo/chivo-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_Yhjul2DSFXjQiQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Chivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo/chivo-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_Wxjul2DSFXjQiQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Chivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo/chivo-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_PBjul2DSFXjQiQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Chivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo/chivo-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_FRjul2DSFXjQiQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Chivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo/chivo-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1WrWN33AiasJ.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Chivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo/chivo-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyG1GrWN33AiasJ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Chivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo/chivo-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFxY1GrWN33AiasJ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Chivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo/chivo-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1GrWN33AiasJ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Chivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo/chivo-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFw01GrWN33AiasJ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Chivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo/chivo-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzY02rWN33AiasJ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Chivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo/chivo-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzh02rWN33AiasJ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Chivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo/chivo-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyG02rWN33AiasJ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Chivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo/chivo-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyv02rWN33AiasJ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Chivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo/chivo-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo/chivo.svg" - }, - { - "name": "Chivo Mono", - "fontFamily": "Chivo Mono, monospace", - "slug": "chivo-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivomono/v9/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hrqfVKphL03l4.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Chivo Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo-mono/chivo-mono-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivomono/v9/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5hr6fVKphL03l4.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Chivo Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo-mono/chivo-mono-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivomono/v9/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D6_r6fVKphL03l4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Chivo Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo-mono/chivo-mono-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivomono/v9/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hr6fVKphL03l4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chivo Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo-mono/chivo-mono-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivomono/v9/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7Tr6fVKphL03l4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Chivo Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo-mono/chivo-mono-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivomono/v9/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D4_qKfVKphL03l4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Chivo Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo-mono/chivo-mono-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivomono/v9/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D4GqKfVKphL03l4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Chivo Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo-mono/chivo-mono-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivomono/v9/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5hqKfVKphL03l4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Chivo Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo-mono/chivo-mono-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivomono/v9/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5IqKfVKphL03l4.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Chivo Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo-mono/chivo-mono-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivomono/v9/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7E-XIJxp1ml4imo.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Chivo Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo-mono/chivo-mono-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivomono/v9/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7M-WIJxp1ml4imo.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Chivo Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo-mono/chivo-mono-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivomono/v9/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7BGWIJxp1ml4imo.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Chivo Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo-mono/chivo-mono-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivomono/v9/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7E-WIJxp1ml4imo.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Chivo Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo-mono/chivo-mono-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivomono/v9/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7H2WIJxp1ml4imo.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Chivo Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo-mono/chivo-mono-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivomono/v9/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7JGRIJxp1ml4imo.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Chivo Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo-mono/chivo-mono-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivomono/v9/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7KiRIJxp1ml4imo.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Chivo Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo-mono/chivo-mono-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivomono/v9/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7M-RIJxp1ml4imo.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Chivo Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo-mono/chivo-mono-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chivomono/v9/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7OaRIJxp1ml4imo.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Chivo Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo-mono/chivo-mono-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chivo-mono/chivo-mono.svg" - }, - { - "name": "Chokokutai", - "fontFamily": "Chokokutai, system-ui", - "slug": "chokokutai", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chokokutai/v9/kmK4Zqw4HwvCeHGM8Fws9y7ypu1Kr7I.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chokokutai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chokokutai/chokokutai-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chokokutai/chokokutai.svg" - }, - { - "name": "Chonburi", - "fontFamily": "Chonburi, system-ui", - "slug": "chonburi", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/chonburi/v12/8AtqGs-wOpGRTBq66IWaFr3biAfZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chonburi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chonburi/chonburi-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/chonburi/chonburi.svg" - }, - { - "name": "Cinzel", - "fontFamily": "Cinzel, serif", - "slug": "cinzel", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-tbnTYrvDE5ZdqU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cinzel", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cinzel/cinzel-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-uTnTYrvDE5ZdqU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cinzel", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cinzel/cinzel-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-gjgTYrvDE5ZdqU.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cinzel", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cinzel/cinzel-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-jHgTYrvDE5ZdqU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cinzel", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cinzel/cinzel-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-lbgTYrvDE5ZdqU.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Cinzel", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cinzel/cinzel-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-n_gTYrvDE5ZdqU.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Cinzel", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cinzel/cinzel-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cinzel/cinzel.svg" - }, - { - "name": "Cinzel Decorative", - "fontFamily": "Cinzel Decorative, system-ui", - "slug": "cinzel-decorative", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cinzeldecorative/v16/daaCSScvJGqLYhG8nNt8KPPswUAPnh7URs1LaCyC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cinzel Decorative", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cinzel-decorative/cinzel-decorative-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cinzeldecorative/v16/daaHSScvJGqLYhG8nNt8KPPswUAPniZoaelDQzCLlQXE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cinzel Decorative", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cinzel-decorative/cinzel-decorative-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cinzeldecorative/v16/daaHSScvJGqLYhG8nNt8KPPswUAPniZQa-lDQzCLlQXE.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Cinzel Decorative", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cinzel-decorative/cinzel-decorative-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cinzel-decorative/cinzel-decorative.svg" - }, - { - "name": "Clicker Script", - "fontFamily": "Clicker Script, cursive", - "slug": "clicker-script", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/clickerscript/v13/raxkHiKPvt8CMH6ZWP8PdlEq72rY2zqUKafv.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Clicker Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/clicker-script/clicker-script-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/clicker-script/clicker-script.svg" - }, - { - "name": "Climate Crisis", - "fontFamily": "Climate Crisis, system-ui", - "slug": "climate-crisis", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/climatecrisis/v7/wEOpEB3AntNeKCPBVW9XOKlmp3AUgWFN1DvIvcM0gFp6jaUrGb7PsQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Climate Crisis", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/climate-crisis/climate-crisis-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/climate-crisis/climate-crisis.svg" - }, - { - "name": "Coda", - "fontFamily": "Coda, system-ui", - "slug": "coda", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/coda/v21/SLXHc1jY5nQ8JUIMapaN39I.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Coda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/coda/coda-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/coda/v21/SLXIc1jY5nQ8HeIgTp6mw9t1cX8.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Coda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/coda/coda-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/coda/coda.svg" - }, - { - "name": "Codystar", - "fontFamily": "Codystar, system-ui", - "slug": "codystar", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/codystar/v17/FwZf7-Q1xVk-40qxOuYsyuyrj0e29bfC.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Codystar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/codystar/codystar-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/codystar/v17/FwZY7-Q1xVk-40qxOt6A4sijpFu_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Codystar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/codystar/codystar-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/codystar/codystar.svg" - }, - { - "name": "Coiny", - "fontFamily": "Coiny, system-ui", - "slug": "coiny", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/coiny/v16/gyByhwU1K989PXwbElSvO5Tc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Coiny", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/coiny/coiny-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/coiny/coiny.svg" - }, - { - "name": "Combo", - "fontFamily": "Combo, system-ui", - "slug": "combo", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/combo/v21/BXRlvF3Jh_fIhg0iBu9y8Hf0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Combo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/combo/combo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/combo/combo.svg" - }, - { - "name": "Comfortaa", - "fontFamily": "Comfortaa, system-ui", - "slug": "comfortaa", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comfortaa/v45/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Comfortaa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comfortaa/comfortaa-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comfortaa/v45/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Comfortaa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comfortaa/comfortaa-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comfortaa/v45/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Comfortaa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comfortaa/comfortaa-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comfortaa/v45/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Comfortaa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comfortaa/comfortaa-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comfortaa/v45/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Comfortaa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comfortaa/comfortaa-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comfortaa/comfortaa.svg" - }, - { - "name": "Comforter", - "fontFamily": "Comforter, cursive", - "slug": "comforter", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comforter/v7/H4clBXOCl8nQnlaql3Qa6JG8iqeuag.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Comforter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comforter/comforter-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comforter/comforter.svg" - }, - { - "name": "Comforter Brush", - "fontFamily": "Comforter Brush, cursive", - "slug": "comforter-brush", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comforterbrush/v7/Y4GTYa1xVSggrfzZI5WMjxRaOz0jwLL9Th8YYA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Comforter Brush", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comforter-brush/comforter-brush-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comforter-brush/comforter-brush.svg" - }, - { - "name": "Comic Neue", - "fontFamily": "Comic Neue, cursive", - "slug": "comic-neue", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_wHLwpteLwtHJlc.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Comic Neue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comic-neue/comic-neue-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RTplUKylCNlcw_Q.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Comic Neue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comic-neue/comic-neue-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comicneue/v8/4UaHrEJDsxBrF37olUeDx63j5pN1MwI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Comic Neue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comic-neue/comic-neue-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comicneue/v8/4UaFrEJDsxBrF37olUeD96_p4rFwIwJePw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Comic Neue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comic-neue/comic-neue-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_xHMwpteLwtHJlc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Comic Neue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comic-neue/comic-neue-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RXp5UKylCNlcw_Q.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Comic Neue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comic-neue/comic-neue-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comic-neue/comic-neue.svg" - }, - { - "name": "Coming Soon", - "fontFamily": "Coming Soon, cursive", - "slug": "coming-soon", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comingsoon/v19/qWcuB6mzpYL7AJ2VfdQR1u-SUjjzsykh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Coming Soon", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/coming-soon/coming-soon-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/coming-soon/coming-soon.svg" - }, - { - "name": "Comme", - "fontFamily": "Comme, sans-serif", - "slug": "comme", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z5cBr644fWsRO9w.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Comme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comme/comme-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zZcFr644fWsRO9w.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Comme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comme/comme-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zu8Fr644fWsRO9w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Comme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comme/comme-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z5cFr644fWsRO9w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Comme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comme/comme-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z18Fr644fWsRO9w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Comme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comme/comme-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zO8Zr644fWsRO9w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Comme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comme/comme-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zAsZr644fWsRO9w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Comme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comme/comme-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zZcZr644fWsRO9w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Comme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comme/comme-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zTMZr644fWsRO9w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Comme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comme/comme-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/comme/comme.svg" - }, - { - "name": "Commissioner", - "fontFamily": "Commissioner, sans-serif", - "slug": "commissioner", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTMNcGPe7Fu0jUdk.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Commissioner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/commissioner/commissioner-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTENdGPe7Fu0jUdk.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Commissioner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/commissioner/commissioner-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTJ1dGPe7Fu0jUdk.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Commissioner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/commissioner/commissioner-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTMNdGPe7Fu0jUdk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Commissioner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/commissioner/commissioner-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTPFdGPe7Fu0jUdk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Commissioner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/commissioner/commissioner-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTB1aGPe7Fu0jUdk.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Commissioner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/commissioner/commissioner-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTCRaGPe7Fu0jUdk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Commissioner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/commissioner/commissioner-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTENaGPe7Fu0jUdk.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Commissioner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/commissioner/commissioner-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTGpaGPe7Fu0jUdk.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Commissioner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/commissioner/commissioner-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/commissioner/commissioner.svg" - }, - { - "name": "Concert One", - "fontFamily": "Concert One, system-ui", - "slug": "concert-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/concertone/v21/VEM1Ro9xs5PjtzCu-srDqRTlhv-CuVAQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Concert One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/concert-one/concert-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/concert-one/concert-one.svg" - }, - { - "name": "Condiment", - "fontFamily": "Condiment, cursive", - "slug": "condiment", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/condiment/v24/pONk1hggFNmwvXALyH6Sq4n4o1vyCQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Condiment", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/condiment/condiment-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/condiment/condiment.svg" - }, - { - "name": "Content", - "fontFamily": "Content, system-ui", - "slug": "content", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/content/v24/zrfl0HLayePhU_AwUaDyIiL0RCg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Content", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/content/content-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/content/v24/zrfg0HLayePhU_AwaRzdBirfWCHvkAI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Content", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/content/content-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/content/content.svg" - }, - { - "name": "Contrail One", - "fontFamily": "Contrail One, system-ui", - "slug": "contrail-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/contrailone/v19/eLGbP-j_JA-kG0_Zo51noafdZUvt_c092w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Contrail One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/contrail-one/contrail-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/contrail-one/contrail-one.svg" - }, - { - "name": "Convergence", - "fontFamily": "Convergence, sans-serif", - "slug": "convergence", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/convergence/v15/rax5HiePvdgXPmmMHcIPYRhasU7Q8Cad.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Convergence", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/convergence/convergence-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/convergence/convergence.svg" - }, - { - "name": "Cookie", - "fontFamily": "Cookie, cursive", - "slug": "cookie", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cookie/v21/syky-y18lb0tSbfNlQCT9tPdpw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cookie", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cookie/cookie-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cookie/cookie.svg" - }, - { - "name": "Copse", - "fontFamily": "Copse, serif", - "slug": "copse", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/copse/v15/11hPGpDKz1rGb0djHkihUb-A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Copse", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/copse/copse-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/copse/copse.svg" - }, - { - "name": "Corben", - "fontFamily": "Corben, system-ui", - "slug": "corben", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/corben/v21/LYjDdGzzklQtCMp9oAlEpVs3VQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Corben", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/corben/corben-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/corben/v21/LYjAdGzzklQtCMpFHCZgrXArXN7HWQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Corben", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/corben/corben-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/corben/corben.svg" - }, - { - "name": "Corinthia", - "fontFamily": "Corinthia, cursive", - "slug": "corinthia", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/corinthia/v11/wEO_EBrAnchaJyPMHE0FUfAL3EsHiA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Corinthia", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/corinthia/corinthia-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/corinthia/v11/wEO6EBrAnchaJyPMHE097d8v1GAbgbLXQA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Corinthia", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/corinthia/corinthia-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/corinthia/corinthia.svg" - }, - { - "name": "Cormorant", - "fontFamily": "Cormorant, serif", - "slug": "cormorant", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFk9TQ7Rg7A2uwYs.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cormorant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant/cormorant-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFhFTQ7Rg7A2uwYs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cormorant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant/cormorant-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFiNTQ7Rg7A2uwYs.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cormorant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant/cormorant-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFs9UQ7Rg7A2uwYs.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cormorant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant/cormorant-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFvZUQ7Rg7A2uwYs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cormorant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant/cormorant-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQ9fdq6C-r0YvxdA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Cormorant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant/cormorant-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQq_dq6C-r0YvxdA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cormorant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant/cormorant-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQmfdq6C-r0YvxdA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Cormorant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant/cormorant-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQdfBq6C-r0YvxdA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Cormorant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant/cormorant-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQTPBq6C-r0YvxdA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cormorant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant/cormorant-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant/cormorant.svg" - }, - { - "name": "Cormorant Garamond", - "fontFamily": "Cormorant Garamond, serif", - "slug": "cormorant-garamond", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQAllvuQWJ5heb_w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cormorant Garamond", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-garamond/cormorant-garamond-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjuw-NxBKL_y94.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Cormorant Garamond", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-garamond/cormorant-garamond-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantgaramond/v16/co3bmX5slCNuHLi8bLeY9MK7whWMhyjornFLsS6V7w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cormorant Garamond", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-garamond/cormorant-garamond-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantgaramond/v16/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtPkyuF7w6C.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cormorant Garamond", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-garamond/cormorant-garamond-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQWlhvuQWJ5heb_w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cormorant Garamond", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-garamond/cormorant-garamond-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEO7ug-NxBKL_y94.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Cormorant Garamond", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-garamond/cormorant-garamond-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQdl9vuQWJ5heb_w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cormorant Garamond", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-garamond/cormorant-garamond-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEOXvQ-NxBKL_y94.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Cormorant Garamond", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-garamond/cormorant-garamond-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vuQWJ5heb_w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cormorant Garamond", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-garamond/cormorant-garamond-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPzvA-NxBKL_y94.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cormorant Garamond", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-garamond/cormorant-garamond-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-garamond/cormorant-garamond.svg" - }, - { - "name": "Cormorant Infant", - "fontFamily": "Cormorant Infant, serif", - "slug": "cormorant-infant", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9951w3_DMrQqcdJrk.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cormorant Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-infant/cormorant-infant-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItcDEhRoUYNrn_Ig.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Cormorant Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-infant/cormorant-infant-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantinfant/v17/HhyPU44g9vKiM1sORYSiWeAsLN993_Af2DsAXq4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cormorant Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-infant/cormorant-infant-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantinfant/v17/HhyJU44g9vKiM1sORYSiWeAsLN997_IV3BkFTq4EPw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cormorant Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-infant/cormorant-infant-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995wQ2_DMrQqcdJrk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cormorant Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-infant/cormorant-infant-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItKDAhRoUYNrn_Ig.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Cormorant Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-infant/cormorant-infant-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995ygx_DMrQqcdJrk.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cormorant Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-infant/cormorant-infant-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItBDchRoUYNrn_Ig.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Cormorant Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-infant/cormorant-infant-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9950ww_DMrQqcdJrk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cormorant Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-infant/cormorant-infant-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItYDYhRoUYNrn_Ig.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cormorant Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-infant/cormorant-infant-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-infant/cormorant-infant.svg" - }, - { - "name": "Cormorant SC", - "fontFamily": "Cormorant SC, serif", - "slug": "cormorant-sc", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmABIU_R3y8DOWGA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cormorant SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-sc/cormorant-sc-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantsc/v18/0yb5GD4kxqXBmOVLG30OGwserDow9Tbu-Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cormorant SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-sc/cormorant-sc-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmWBMU_R3y8DOWGA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cormorant SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-sc/cormorant-sc-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmdBQU_R3y8DOWGA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cormorant SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-sc/cormorant-sc-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmEBUU_R3y8DOWGA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cormorant SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-sc/cormorant-sc-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-sc/cormorant-sc.svg" - }, - { - "name": "Cormorant Unicase", - "fontFamily": "Cormorant Unicase, serif", - "slug": "cormorant-unicase", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9N_tucv7Gy0DRzS.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cormorant Unicase", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-unicase/cormorant-unicase-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantunicase/v24/HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vTnsMnx3C9.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cormorant Unicase", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-unicase/cormorant-unicase-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Mnt-cv7Gy0DRzS.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cormorant Unicase", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-unicase/cormorant-unicase-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9MLsOcv7Gy0DRzS.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cormorant Unicase", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-unicase/cormorant-unicase-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Nvsecv7Gy0DRzS.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cormorant Unicase", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-unicase/cormorant-unicase-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-unicase/cormorant-unicase.svg" - }, - { - "name": "Cormorant Upright", - "fontFamily": "Cormorant Upright, serif", - "slug": "cormorant-upright", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1N5phDsU9X6RPzQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cormorant Upright", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-upright/cormorant-upright-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantupright/v18/VuJrdM3I2Y35poFONtLdafkUCHw1y2vVjjTkeMnz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cormorant Upright", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-upright/cormorant-upright-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MhpxDsU9X6RPzQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cormorant Upright", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-upright/cormorant-upright-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MNoBDsU9X6RPzQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cormorant Upright", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-upright/cormorant-upright-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1NpoRDsU9X6RPzQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cormorant Upright", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-upright/cormorant-upright-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cormorant-upright/cormorant-upright.svg" - }, - { - "name": "Courgette", - "fontFamily": "Courgette, cursive", - "slug": "courgette", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/courgette/v17/wEO_EBrAnc9BLjLQAUkFUfAL3EsHiA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Courgette", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/courgette/courgette-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/courgette/courgette.svg" - }, - { - "name": "Courier Prime", - "fontFamily": "Courier Prime, monospace", - "slug": "courier-prime", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/courierprime/v9/u-450q2lgwslOqpF_6gQ8kELWwZjW-_-tvg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Courier Prime", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/courier-prime/courier-prime-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/courierprime/v9/u-4n0q2lgwslOqpF_6gQ8kELawRpX837pvjxPA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Courier Prime", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/courier-prime/courier-prime-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/courierprime/v9/u-4k0q2lgwslOqpF_6gQ8kELY7pMf-fVqvHoJXw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Courier Prime", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/courier-prime/courier-prime-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/courierprime/v9/u-4i0q2lgwslOqpF_6gQ8kELawRR4-LfrtPtNXyeAg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Courier Prime", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/courier-prime/courier-prime-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/courier-prime/courier-prime.svg" - }, - { - "name": "Cousine", - "fontFamily": "Cousine, monospace", - "slug": "cousine", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cousine/v27/d6lIkaiiRdih4SpPzSMlzTbtz9k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cousine", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cousine/cousine-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cousine/v27/d6lKkaiiRdih4SpP_SEvyRTo39l8hw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cousine", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cousine/cousine-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cousine/v27/d6lNkaiiRdih4SpP9Z8K6T7G09BlnmQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cousine", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cousine/cousine-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cousine/v27/d6lPkaiiRdih4SpP_SEXdTvM1_JgjmRpOA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cousine", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cousine/cousine-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cousine/cousine.svg" - }, - { - "name": "Coustard", - "fontFamily": "Coustard, serif", - "slug": "coustard", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/coustard/v16/3XFpErgg3YsZ5fqUU9UPvWXuROTd.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Coustard", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/coustard/coustard-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/coustard/v16/3XFuErgg3YsZ5fqUU-2LkEHmb_jU3eRL.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Coustard", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/coustard/coustard-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/coustard/coustard.svg" - }, - { - "name": "Covered By Your Grace", - "fontFamily": "Covered By Your Grace, cursive", - "slug": "covered-by-your-grace", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/coveredbyyourgrace/v15/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0FgItq6bFIg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Covered By Your Grace", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/covered-by-your-grace/covered-by-your-grace-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/covered-by-your-grace/covered-by-your-grace.svg" - }, - { - "name": "Crafty Girls", - "fontFamily": "Crafty Girls, cursive", - "slug": "crafty-girls", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/craftygirls/v16/va9B4kXI39VaDdlPJo8N_NvuQR37fF3Wlg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Crafty Girls", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crafty-girls/crafty-girls-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crafty-girls/crafty-girls.svg" - }, - { - "name": "Creepster", - "fontFamily": "Creepster, system-ui", - "slug": "creepster", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/creepster/v13/AlZy_zVUqJz4yMrniH4hdXf4XB0Tow.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Creepster", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/creepster/creepster-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/creepster/creepster.svg" - }, - { - "name": "Crete Round", - "fontFamily": "Crete Round, serif", - "slug": "crete-round", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/creteround/v14/55xoey1sJNPjPiv1ZZZrxJ1827zAKnxN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Crete Round", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crete-round/crete-round-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/creteround/v14/55xqey1sJNPjPiv1ZZZrxK1-0bjiL2xNhKc.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Crete Round", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crete-round/crete-round-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crete-round/crete-round.svg" - }, - { - "name": "Crimson Pro", - "fontFamily": "Crimson Pro, serif", - "slug": "crimson-pro", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTm18OJE_VNWoyQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Crimson Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-pro/crimson-pro-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZkG18OJE_VNWoyQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Crimson Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-pro/crimson-pro-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZzm18OJE_VNWoyQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Crimson Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-pro/crimson-pro-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZ_G18OJE_VNWoyQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Crimson Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-pro/crimson-pro-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZEGp8OJE_VNWoyQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Crimson Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-pro/crimson-pro-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZKWp8OJE_VNWoyQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Crimson Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-pro/crimson-pro-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTmp8OJE_VNWoyQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Crimson Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-pro/crimson-pro-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZZ2p8OJE_VNWoyQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Crimson Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-pro/crimson-pro-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4Ue5s7dtC4yZNE.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Crimson Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-pro/crimson-pro-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi7Ke5s7dtC4yZNE.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Crimson Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-pro/crimson-pro-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6Ue5s7dtC4yZNE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Crimson Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-pro/crimson-pro-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6me5s7dtC4yZNE.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Crimson Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-pro/crimson-pro-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5KfJs7dtC4yZNE.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Crimson Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-pro/crimson-pro-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5zfJs7dtC4yZNE.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Crimson Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-pro/crimson-pro-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4UfJs7dtC4yZNE.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Crimson Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-pro/crimson-pro-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi49fJs7dtC4yZNE.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Crimson Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-pro/crimson-pro-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-pro/crimson-pro.svg" - }, - { - "name": "Crimson Text", - "fontFamily": "Crimson Text, serif", - "slug": "crimson-text", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crimsontext/v19/wlp2gwHKFkZgtmSR3NB0oRJvaAJSA_JN3Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Crimson Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-text/crimson-text-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crimsontext/v19/wlpogwHKFkZgtmSR3NB0oRJfaghWIfdd3ahG.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Crimson Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-text/crimson-text-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJXsCx2C9lR1LFffg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Crimson Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-text/crimson-text-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajCOD9NV9rRPfrKu.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Crimson Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-text/crimson-text-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJX1C12C9lR1LFffg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Crimson Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-text/crimson-text-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajDqDtNV9rRPfrKu.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Crimson Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-text/crimson-text-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crimson-text/crimson-text.svg" - }, - { - "name": "Croissant One", - "fontFamily": "Croissant One, system-ui", - "slug": "croissant-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/croissantone/v26/3y9n6bU9bTPg4m8NDy3Kq24UM3pqn5cdJ-4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Croissant One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/croissant-one/croissant-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/croissant-one/croissant-one.svg" - }, - { - "name": "Crushed", - "fontFamily": "Crushed, system-ui", - "slug": "crushed", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/crushed/v29/U9Mc6dym6WXImTlFT1kfuIqyLzA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Crushed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crushed/crushed-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/crushed/crushed.svg" - }, - { - "name": "Cuprum", - "fontFamily": "Cuprum, sans-serif", - "slug": "cuprum", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmg-X6ZjzSJjQjgnU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cuprum", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cuprum/cuprum-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmg9f6ZjzSJjQjgnU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cuprum", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cuprum/cuprum-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmgzv9ZjzSJjQjgnU.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cuprum", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cuprum/cuprum-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmgwL9ZjzSJjQjgnU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cuprum", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cuprum/cuprum-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25jn_YIhYmknUPEA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cuprum", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cuprum/cuprum-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25vH_YIhYmknUPEA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Cuprum", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cuprum/cuprum-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25UHjYIhYmknUPEA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Cuprum", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cuprum/cuprum-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25aXjYIhYmknUPEA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cuprum", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cuprum/cuprum-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cuprum/cuprum.svg" - }, - { - "name": "Cute Font", - "fontFamily": "Cute Font, system-ui", - "slug": "cute-font", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cutefont/v22/Noaw6Uny2oWPbSHMrY6vmJNVNC9hkw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cute Font", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cute-font/cute-font-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cute-font/cute-font.svg" - }, - { - "name": "Cutive", - "fontFamily": "Cutive, serif", - "slug": "cutive", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cutive/v21/NaPZcZ_fHOhV3Ip7T_hDoyqlZQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cutive", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cutive/cutive-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cutive/cutive.svg" - }, - { - "name": "Cutive Mono", - "fontFamily": "Cutive Mono, monospace", - "slug": "cutive-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/cutivemono/v20/m8JWjfRfY7WVjVi2E-K9H5RFRG-K3Mud.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cutive Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cutive-mono/cutive-mono-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/cutive-mono/cutive-mono.svg" - }, - { - "name": "DM Mono", - "fontFamily": "DM Mono, monospace", - "slug": "dm-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmmono/v14/aFTR7PB1QTsUX8KYvrGyIYSnbKX9Rlk.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "DM Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-mono/dm-mono-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmmono/v14/aFTT7PB1QTsUX8KYth-orYataIf4VllXuA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "DM Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-mono/dm-mono-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmmono/v14/aFTU7PB1QTsUX8KYhh2aBYyMcKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "DM Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-mono/dm-mono-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmmono/v14/aFTW7PB1QTsUX8KYth-QAa6JYKzkXw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "DM Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-mono/dm-mono-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmmono/v14/aFTR7PB1QTsUX8KYvumzIYSnbKX9Rlk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "DM Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-mono/dm-mono-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmmono/v14/aFTT7PB1QTsUX8KYth-o9YetaIf4VllXuA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "DM Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-mono/dm-mono-500-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-mono/dm-mono.svg" - }, - { - "name": "DM Sans", - "fontFamily": "DM Sans, sans-serif", - "slug": "dm-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAop1hTmf3ZGMZpg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "DM Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-sans/dm-sans-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAIpxhTmf3ZGMZpg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "DM Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-sans/dm-sans-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwA_JxhTmf3ZGMZpg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "DM Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-sans/dm-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhTmf3ZGMZpg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "DM Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-sans/dm-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhTmf3ZGMZpg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "DM Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-sans/dm-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAfJthTmf3ZGMZpg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "DM Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-sans/dm-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthTmf3ZGMZpg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "DM Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-sans/dm-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAIpthTmf3ZGMZpg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "DM Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-sans/dm-sans-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAC5thTmf3ZGMZpg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "DM Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-sans/dm-sans-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-JDG3zRmYJpso5.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "DM Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-sans/dm-sans-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat8JDW3zRmYJpso5.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "DM Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-sans/dm-sans-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat_XDW3zRmYJpso5.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "DM Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-sans/dm-sans-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-JDW3zRmYJpso5.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "DM Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-sans/dm-sans-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-7DW3zRmYJpso5.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "DM Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-sans/dm-sans-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9XCm3zRmYJpso5.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "DM Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-sans/dm-sans-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm3zRmYJpso5.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "DM Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-sans/dm-sans-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat8JCm3zRmYJpso5.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "DM Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-sans/dm-sans-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmsans/v14/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat8gCm3zRmYJpso5.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "DM Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-sans/dm-sans-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-sans/dm-sans.svg" - }, - { - "name": "DM Serif Display", - "fontFamily": "DM Serif Display, serif", - "slug": "dm-serif-display", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmserifdisplay/v15/-nFnOHM81r4j6k0gjAW3mujVU2B2K_d709jy92k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "DM Serif Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-serif-display/dm-serif-display-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmserifdisplay/v15/-nFhOHM81r4j6k0gjAW3mujVU2B2G_Vx1_r352np3Q.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "DM Serif Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-serif-display/dm-serif-display-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-serif-display/dm-serif-display.svg" - }, - { - "name": "DM Serif Text", - "fontFamily": "DM Serif Text, serif", - "slug": "dm-serif-text", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmseriftext/v12/rnCu-xZa_krGokauCeNq1wWyafOPXHIJErY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "DM Serif Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-serif-text/dm-serif-text-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dmseriftext/v12/rnCw-xZa_krGokauCeNq1wWyWfGFWFAMArZKqQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "DM Serif Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-serif-text/dm-serif-text-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dm-serif-text/dm-serif-text.svg" - }, - { - "name": "Dai Banna SIL", - "fontFamily": "Dai Banna SIL, serif", - "slug": "dai-banna-sil", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/daibannasil/v2/lW-lwj0AJWmpwGyJ2uEoA4I7tYKoDsrKOgMX95A.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Dai Banna SIL", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dai-banna-sil/dai-banna-sil-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/daibannasil/v2/lW-jwj0AJWmpwGyJ2uEoA4I7vSyygsjAPiES55D3Vg.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Dai Banna SIL", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dai-banna-sil/dai-banna-sil-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/daibannasil/v2/lW-4wj0AJWmpwGyJ2uEoA4I7jS6AKsLhJgo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dai Banna SIL", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dai-banna-sil/dai-banna-sil-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/daibannasil/v2/lW-mwj0AJWmpwGyJ2uEoA4I7vSyKLuDkNgoO7g.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Dai Banna SIL", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dai-banna-sil/dai-banna-sil-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/daibannasil/v2/lW-lwj0AJWmpwGyJ2uEoA4I7tdqpDsrKOgMX95A.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Dai Banna SIL", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dai-banna-sil/dai-banna-sil-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/daibannasil/v2/lW-jwj0AJWmpwGyJ2uEoA4I7vSyy2snAPiES55D3Vg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Dai Banna SIL", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dai-banna-sil/dai-banna-sil-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/daibannasil/v2/lW-lwj0AJWmpwGyJ2uEoA4I7tfauDsrKOgMX95A.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Dai Banna SIL", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dai-banna-sil/dai-banna-sil-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/daibannasil/v2/lW-jwj0AJWmpwGyJ2uEoA4I7vSyy9s7APiES55D3Vg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Dai Banna SIL", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dai-banna-sil/dai-banna-sil-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/daibannasil/v2/lW-lwj0AJWmpwGyJ2uEoA4I7tZKvDsrKOgMX95A.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Dai Banna SIL", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dai-banna-sil/dai-banna-sil-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/daibannasil/v2/lW-jwj0AJWmpwGyJ2uEoA4I7vSyyks_APiES55D3Vg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Dai Banna SIL", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dai-banna-sil/dai-banna-sil-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dai-banna-sil/dai-banna-sil.svg" - }, - { - "name": "Damion", - "fontFamily": "Damion, cursive", - "slug": "damion", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/damion/v14/hv-XlzJ3KEUe_YZUbWY3MTFgVg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Damion", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/damion/damion-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/damion/damion.svg" - }, - { - "name": "Dancing Script", - "fontFamily": "Dancing Script, cursive", - "slug": "dancing-script", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSoHTeB9ptDqpw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dancing Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dancing-script/dancing-script-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BAyoHTeB9ptDqpw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Dancing Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dancing-script/dancing-script-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B7y0HTeB9ptDqpw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Dancing Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dancing-script/dancing-script-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B1i0HTeB9ptDqpw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Dancing Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dancing-script/dancing-script-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dancing-script/dancing-script.svg" - }, - { - "name": "Dangrek", - "fontFamily": "Dangrek, system-ui", - "slug": "dangrek", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dangrek/v30/LYjCdG30nEgoH8E2gCNqqVIuTN4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dangrek", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dangrek/dangrek-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dangrek/dangrek.svg" - }, - { - "name": "Darker Grotesque", - "fontFamily": "Darker Grotesque, sans-serif", - "slug": "darker-grotesque", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXxpqn7y-XFyZFUB.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Darker Grotesque", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/darker-grotesque/darker-grotesque-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXw3qn7y-XFyZFUB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Darker Grotesque", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/darker-grotesque/darker-grotesque-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXwFqn7y-XFyZFUB.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Darker Grotesque", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/darker-grotesque/darker-grotesque-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXzprX7y-XFyZFUB.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Darker Grotesque", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/darker-grotesque/darker-grotesque-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXzQrX7y-XFyZFUB.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Darker Grotesque", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/darker-grotesque/darker-grotesque-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXy3rX7y-XFyZFUB.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Darker Grotesque", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/darker-grotesque/darker-grotesque-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXyerX7y-XFyZFUB.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Darker Grotesque", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/darker-grotesque/darker-grotesque-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/darker-grotesque/darker-grotesque.svg" - }, - { - "name": "Darumadrop One", - "fontFamily": "Darumadrop One, system-ui", - "slug": "darumadrop-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/darumadropone/v10/cY9cfjeIW11dpCKgRLi675a87IhHBJOxZQPp.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Darumadrop One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/darumadrop-one/darumadrop-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/darumadrop-one/darumadrop-one.svg" - }, - { - "name": "David Libre", - "fontFamily": "David Libre, serif", - "slug": "david-libre", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/davidlibre/v14/snfus0W_99N64iuYSvp4W_l86p6TYS-Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "David Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/david-libre/david-libre-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/davidlibre/v14/snfzs0W_99N64iuYSvp4W8GIw7qbSjORSo9W.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "David Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/david-libre/david-libre-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/davidlibre/v14/snfzs0W_99N64iuYSvp4W8HAxbqbSjORSo9W.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "David Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/david-libre/david-libre-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/david-libre/david-libre.svg" - }, - { - "name": "Dawning of a New Day", - "fontFamily": "Dawning of a New Day, cursive", - "slug": "dawning-of-a-new-day", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dawningofanewday/v20/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8bhWJGNoBE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dawning of a New Day", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dawning-of-a-new-day/dawning-of-a-new-day-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dawning-of-a-new-day/dawning-of-a-new-day.svg" - }, - { - "name": "Days One", - "fontFamily": "Days One, sans-serif", - "slug": "days-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/daysone/v18/mem9YaCnxnKRiYZOCLYVeLkWVNBt.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Days One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/days-one/days-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/days-one/days-one.svg" - }, - { - "name": "Dekko", - "fontFamily": "Dekko, cursive", - "slug": "dekko", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dekko/v21/46khlb_wWjfSrttFR0vsfl1B.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dekko", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dekko/dekko-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dekko/dekko.svg" - }, - { - "name": "Dela Gothic One", - "fontFamily": "Dela Gothic One, system-ui", - "slug": "dela-gothic-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/delagothicone/v15/hESp6XxvMDRA-2eD0lXpDa6QkBAGRUsJQAlbUA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dela Gothic One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dela-gothic-one/dela-gothic-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dela-gothic-one/dela-gothic-one.svg" - }, - { - "name": "Delicious Handrawn", - "fontFamily": "Delicious Handrawn, cursive", - "slug": "delicious-handrawn", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/delicioushandrawn/v8/wlpsgx_NAUNkpmKQifcxkQchDFo3fJ113JpDd6u3AQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Delicious Handrawn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/delicious-handrawn/delicious-handrawn-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/delicious-handrawn/delicious-handrawn.svg" - }, - { - "name": "Delius", - "fontFamily": "Delius, cursive", - "slug": "delius", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/delius/v19/PN_xRfK0pW_9e1rtYcI-jT3L_w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Delius", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/delius/delius-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/delius/delius.svg" - }, - { - "name": "Delius Swash Caps", - "fontFamily": "Delius Swash Caps, cursive", - "slug": "delius-swash-caps", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/deliusswashcaps/v23/oY1E8fPLr7v4JWCExZpWebxVKORpXXedKmeBvEYs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Delius Swash Caps", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/delius-swash-caps/delius-swash-caps-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/delius-swash-caps/delius-swash-caps.svg" - }, - { - "name": "Delius Unicase", - "fontFamily": "Delius Unicase, cursive", - "slug": "delius-unicase", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/deliusunicase/v28/845BNMEwEIOVT8BmgfSzIr_6mmLHd-73LXWs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Delius Unicase", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/delius-unicase/delius-unicase-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/deliusunicase/v28/845CNMEwEIOVT8BmgfSzIr_6mlp7WMr_BmmlS5aw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Delius Unicase", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/delius-unicase/delius-unicase-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/delius-unicase/delius-unicase.svg" - }, - { - "name": "Della Respira", - "fontFamily": "Della Respira, serif", - "slug": "della-respira", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dellarespira/v22/RLp5K5v44KaueWI6iEJQBiGPRfkSu6EuTHo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Della Respira", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/della-respira/della-respira-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/della-respira/della-respira.svg" - }, - { - "name": "Denk One", - "fontFamily": "Denk One, sans-serif", - "slug": "denk-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/denkone/v19/dg4m_pzhrqcFb2IzROtHpbglShon.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Denk One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/denk-one/denk-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/denk-one/denk-one.svg" - }, - { - "name": "Devonshire", - "fontFamily": "Devonshire, cursive", - "slug": "devonshire", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/devonshire/v27/46kqlbDwWirWr4gtBD2BX0Vq01lYAZM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Devonshire", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/devonshire/devonshire-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/devonshire/devonshire.svg" - }, - { - "name": "Dhurjati", - "fontFamily": "Dhurjati, sans-serif", - "slug": "dhurjati", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dhurjati/v24/_6_8ED3gSeatXfFiFX3ySKQtuTA2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dhurjati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dhurjati/dhurjati-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dhurjati/dhurjati.svg" - }, - { - "name": "Didact Gothic", - "fontFamily": "Didact Gothic, sans-serif", - "slug": "didact-gothic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/didactgothic/v20/ahcfv8qz1zt6hCC5G4F_P4ASpUySp0LlcyQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Didact Gothic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/didact-gothic/didact-gothic-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/didact-gothic/didact-gothic.svg" - }, - { - "name": "Diphylleia", - "fontFamily": "Diphylleia, serif", - "slug": "diphylleia", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/diphylleia/v1/DtVmJxCtRKMixK4_HXsIulwm6gDXvwE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Diphylleia", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/diphylleia/diphylleia-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/diphylleia/diphylleia.svg" - }, - { - "name": "Diplomata", - "fontFamily": "Diplomata, system-ui", - "slug": "diplomata", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/diplomata/v31/Cn-0JtiMXwhNwp-wKxyfYGxYrdM9Sg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Diplomata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/diplomata/diplomata-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/diplomata/diplomata.svg" - }, - { - "name": "Diplomata SC", - "fontFamily": "Diplomata SC, system-ui", - "slug": "diplomata-sc", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/diplomatasc/v28/buExpoi3ecvs3kidKgBJo2kf-P5Oaiw4cw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Diplomata SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/diplomata-sc/diplomata-sc-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/diplomata-sc/diplomata-sc.svg" - }, - { - "name": "Do Hyeon", - "fontFamily": "Do Hyeon, sans-serif", - "slug": "do-hyeon", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dohyeon/v18/TwMN-I8CRRU2zM86HFE3ZwaH__-C.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Do Hyeon", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/do-hyeon/do-hyeon-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/do-hyeon/do-hyeon.svg" - }, - { - "name": "Dokdo", - "fontFamily": "Dokdo, system-ui", - "slug": "dokdo", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dokdo/v17/esDf315XNuCBLxLo4NaMlKcH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dokdo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dokdo/dokdo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dokdo/dokdo.svg" - }, - { - "name": "Domine", - "fontFamily": "Domine, serif", - "slug": "domine", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X3LAI10VErGuW8Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Domine", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/domine/domine-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X0DAI10VErGuW8Q.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Domine", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/domine/domine-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X6zHI10VErGuW8Q.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Domine", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/domine/domine-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X5XHI10VErGuW8Q.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Domine", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/domine/domine-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/domine/domine.svg" - }, - { - "name": "Donegal One", - "fontFamily": "Donegal One, serif", - "slug": "donegal-one", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/donegalone/v21/m8JWjfRYea-ZnFz6fsK9FZRFRG-K3Mud.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Donegal One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/donegal-one/donegal-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/donegal-one/donegal-one.svg" - }, - { - "name": "Dongle", - "fontFamily": "Dongle, sans-serif", - "slug": "dongle", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dongle/v12/sJoG3Ltdjt6VPkqeEcxrYjWNzXvVPA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Dongle", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dongle/dongle-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dongle/v12/sJoF3Ltdjt6VPkqmveRPah6RxA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dongle", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dongle/dongle-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dongle/v12/sJoG3Ltdjt6VPkqeActrYjWNzXvVPA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Dongle", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dongle/dongle-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dongle/dongle.svg" - }, - { - "name": "Doppio One", - "fontFamily": "Doppio One, sans-serif", - "slug": "doppio-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/doppioone/v13/Gg8wN5gSaBfyBw2MqCh-lgshKGpe5Fg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Doppio One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/doppio-one/doppio-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/doppio-one/doppio-one.svg" - }, - { - "name": "Dorsa", - "fontFamily": "Dorsa, sans-serif", - "slug": "dorsa", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dorsa/v27/yYLn0hjd0OGwqo493XCFxAnQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dorsa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dorsa/dorsa-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dorsa/dorsa.svg" - }, - { - "name": "Dosis", - "fontFamily": "Dosis, sans-serif", - "slug": "dosis", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dosis/v32/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7MV3BkFTq4EPw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Dosis", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dosis/dosis-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dosis/v32/HhyJU5sn9vOmLxNkIwRSjTVNWLEJabMV3BkFTq4EPw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Dosis", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dosis/dosis-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dosis/v32/HhyJU5sn9vOmLxNkIwRSjTVNWLEJN7MV3BkFTq4EPw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dosis", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dosis/dosis-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dosis/v32/HhyJU5sn9vOmLxNkIwRSjTVNWLEJBbMV3BkFTq4EPw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Dosis", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dosis/dosis-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dosis/v32/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ6bQV3BkFTq4EPw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Dosis", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dosis/dosis-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dosis/v32/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ0LQV3BkFTq4EPw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Dosis", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dosis/dosis-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dosis/v32/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7QV3BkFTq4EPw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Dosis", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dosis/dosis-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dosis/dosis.svg" - }, - { - "name": "DotGothic16", - "fontFamily": "DotGothic16, sans-serif", - "slug": "dotgothic16", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dotgothic16/v17/v6-QGYjBJFKgyw5nSoDAGE7L435YPFrT.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "DotGothic16", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dotgothic16/dotgothic16-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dotgothic16/dotgothic16.svg" - }, - { - "name": "Dr Sugiyama", - "fontFamily": "Dr Sugiyama, cursive", - "slug": "dr-sugiyama", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/drsugiyama/v28/HTxoL2k4N3O9n5I1boGI7abRM4-t-g7y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dr Sugiyama", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dr-sugiyama/dr-sugiyama-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dr-sugiyama/dr-sugiyama.svg" - }, - { - "name": "Duru Sans", - "fontFamily": "Duru Sans, sans-serif", - "slug": "duru-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/durusans/v20/xn7iYH8xwmSyTvEV_HOxT_fYdN-WZw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Duru Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/duru-sans/duru-sans-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/duru-sans/duru-sans.svg" - }, - { - "name": "DynaPuff", - "fontFamily": "DynaPuff, system-ui", - "slug": "dynapuff", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSxYu6YjrSRs4wn8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "DynaPuff", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dynapuff/dynapuff-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSyQu6YjrSRs4wn8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "DynaPuff", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dynapuff/dynapuff-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS8gp6YjrSRs4wn8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "DynaPuff", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dynapuff/dynapuff-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS_Ep6YjrSRs4wn8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "DynaPuff", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dynapuff/dynapuff-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dynapuff/dynapuff.svg" - }, - { - "name": "Dynalight", - "fontFamily": "Dynalight, system-ui", - "slug": "dynalight", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/dynalight/v22/1Ptsg8LOU_aOmQvTsF4ISotrDfGGxA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dynalight", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dynalight/dynalight-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/dynalight/dynalight.svg" - }, - { - "name": "EB Garamond", - "fontFamily": "EB Garamond, serif", - "slug": "eb-garamond", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-6_RUA4V-e6yHgQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "EB Garamond", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/eb-garamond/eb-garamond-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-2fRUA4V-e6yHgQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "EB Garamond", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/eb-garamond/eb-garamond-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-NfNUA4V-e6yHgQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "EB Garamond", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/eb-garamond/eb-garamond-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNUA4V-e6yHgQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "EB Garamond", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/eb-garamond/eb-garamond-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-a_NUA4V-e6yHgQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "EB Garamond", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/eb-garamond/eb-garamond-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7e8QI96WamXgXFI.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "EB Garamond", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/eb-garamond/eb-garamond-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7eOQI96WamXgXFI.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "EB Garamond", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/eb-garamond/eb-garamond-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7diR496WamXgXFI.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "EB Garamond", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/eb-garamond/eb-garamond-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7dbR496WamXgXFI.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "EB Garamond", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/eb-garamond/eb-garamond-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7c8R496WamXgXFI.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "EB Garamond", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/eb-garamond/eb-garamond-800-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/eb-garamond/eb-garamond.svg" - }, - { - "name": "Eagle Lake", - "fontFamily": "Eagle Lake, cursive", - "slug": "eagle-lake", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/eaglelake/v24/ptRMTiqbbuNJDOiKj9wG5O7yKQNute8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Eagle Lake", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/eagle-lake/eagle-lake-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/eagle-lake/eagle-lake.svg" - }, - { - "name": "East Sea Dokdo", - "fontFamily": "East Sea Dokdo, cursive", - "slug": "east-sea-dokdo", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/eastseadokdo/v22/xfuo0Wn2V2_KanASqXSZp22m05_aGavYS18y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "East Sea Dokdo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/east-sea-dokdo/east-sea-dokdo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/east-sea-dokdo/east-sea-dokdo.svg" - }, - { - "name": "Eater", - "fontFamily": "Eater, system-ui", - "slug": "eater", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/eater/v25/mtG04_FCK7bOvpu2u3FwsXsR.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Eater", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/eater/eater-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/eater/eater.svg" - }, - { - "name": "Economica", - "fontFamily": "Economica, sans-serif", - "slug": "economica", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/economica/v15/Qw3fZQZaHCLgIWa29ZBrMcgAAl1lfQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Economica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/economica/economica-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/economica/v15/Qw3ZZQZaHCLgIWa29ZBbM8IEIFh1fWUl.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Economica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/economica/economica-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/economica/v15/Qw3aZQZaHCLgIWa29ZBTjeckCnZ5dHw8iw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Economica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/economica/economica-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/economica/v15/Qw3EZQZaHCLgIWa29ZBbM_q4D3x9Vnksi4M7.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Economica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/economica/economica-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/economica/economica.svg" - }, - { - "name": "Eczar", - "fontFamily": "Eczar, serif", - "slug": "eczar", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXHd6WqTIVKWJKWg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Eczar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/eczar/eczar-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXL96WqTIVKWJKWg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Eczar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/eczar/eczar-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXw9mWqTIVKWJKWg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Eczar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/eczar/eczar-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDX-tmWqTIVKWJKWg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Eczar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/eczar/eczar-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXndmWqTIVKWJKWg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Eczar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/eczar/eczar-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/eczar/eczar.svg" - }, - { - "name": "Edu NSW ACT Foundation", - "fontFamily": "Edu NSW ACT Foundation, cursive", - "slug": "edu-nsw-act-foundation", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9tovGLeC-sfguJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Edu NSW ACT Foundation", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-nsw-act-foundation/edu-nsw-act-foundation-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9fovGLeC-sfguJ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Edu NSW ACT Foundation", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-nsw-act-foundation/edu-nsw-act-foundation-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-zpfGLeC-sfguJ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Edu NSW ACT Foundation", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-nsw-act-foundation/edu-nsw-act-foundation-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-KpfGLeC-sfguJ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Edu NSW ACT Foundation", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-nsw-act-foundation/edu-nsw-act-foundation-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-nsw-act-foundation/edu-nsw-act-foundation.svg" - }, - { - "name": "Edu QLD Beginner", - "fontFamily": "Edu QLD Beginner, cursive", - "slug": "edu-qld-beginner", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE4E3oebi6vyVWCN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Edu QLD Beginner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-qld-beginner/edu-qld-beginner-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE423oebi6vyVWCN.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Edu QLD Beginner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-qld-beginner/edu-qld-beginner-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7a2Yebi6vyVWCN.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Edu QLD Beginner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-qld-beginner/edu-qld-beginner-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7j2Yebi6vyVWCN.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Edu QLD Beginner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-qld-beginner/edu-qld-beginner-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-qld-beginner/edu-qld-beginner.svg" - }, - { - "name": "Edu SA Beginner", - "fontFamily": "Edu SA Beginner, cursive", - "slug": "edu-sa-beginner", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9989fo1yBydUEDs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Edu SA Beginner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-sa-beginner/edu-sa-beginner-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9-09fo1yBydUEDs.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Edu SA Beginner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-sa-beginner/edu-sa-beginner-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9wE6fo1yBydUEDs.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Edu SA Beginner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-sa-beginner/edu-sa-beginner-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9zg6fo1yBydUEDs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Edu SA Beginner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-sa-beginner/edu-sa-beginner-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-sa-beginner/edu-sa-beginner.svg" - }, - { - "name": "Edu TAS Beginner", - "fontFamily": "Edu TAS Beginner, cursive", - "slug": "edu-tas-beginner", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HwemkrBWRhvk02.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Edu TAS Beginner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-tas-beginner/edu-tas-beginner-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HCemkrBWRhvk02.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Edu TAS Beginner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-tas-beginner/edu-tas-beginner-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EufWkrBWRhvk02.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Edu TAS Beginner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-tas-beginner/edu-tas-beginner-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EXfWkrBWRhvk02.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Edu TAS Beginner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-tas-beginner/edu-tas-beginner-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-tas-beginner/edu-tas-beginner.svg" - }, - { - "name": "Edu VIC WA NT Beginner", - "fontFamily": "Edu VIC WA NT Beginner, cursive", - "slug": "edu-vic-wa-nt-beginner", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OXlPmFXwnpkeGR.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Edu VIC WA NT Beginner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-vic-wa-nt-beginner/edu-vic-wa-nt-beginner-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OllPmFXwnpkeGR.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Edu VIC WA NT Beginner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-vic-wa-nt-beginner/edu-vic-wa-nt-beginner-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-NJk_mFXwnpkeGR.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Edu VIC WA NT Beginner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-vic-wa-nt-beginner/edu-vic-wa-nt-beginner-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-Nwk_mFXwnpkeGR.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Edu VIC WA NT Beginner", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-vic-wa-nt-beginner/edu-vic-wa-nt-beginner-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/edu-vic-wa-nt-beginner/edu-vic-wa-nt-beginner.svg" - }, - { - "name": "El Messiri", - "fontFamily": "El Messiri, sans-serif", - "slug": "el-messiri", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXwe65ghj3OoapG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "El Messiri", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/el-messiri/el-messiri-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXCe65ghj3OoapG.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "El Messiri", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/el-messiri/el-messiri-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUufK5ghj3OoapG.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "El Messiri", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/el-messiri/el-messiri-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUXfK5ghj3OoapG.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "El Messiri", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/el-messiri/el-messiri-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/el-messiri/el-messiri.svg" - }, - { - "name": "Electrolize", - "fontFamily": "Electrolize, sans-serif", - "slug": "electrolize", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/electrolize/v18/cIf5Ma1dtE0zSiGSiED7AUEGso5tQafB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Electrolize", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/electrolize/electrolize-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/electrolize/electrolize.svg" - }, - { - "name": "Elsie", - "fontFamily": "Elsie, system-ui", - "slug": "elsie", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/elsie/v24/BCanqZABrez54yYu9slAeLgX.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Elsie", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/elsie/elsie-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/elsie/v24/BCaqqZABrez54x6q2-1IU6QeXSBk.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Elsie", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/elsie/elsie-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/elsie/elsie.svg" - }, - { - "name": "Elsie Swash Caps", - "fontFamily": "Elsie Swash Caps, system-ui", - "slug": "elsie-swash-caps", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/elsieswashcaps/v23/845DNN8xGZyVX5MVo_upKf7KnjK0ferVKGWsUo8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Elsie Swash Caps", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/elsie-swash-caps/elsie-swash-caps-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/elsieswashcaps/v23/845ENN8xGZyVX5MVo_upKf7KnjK0RW74DG2HToawrdU.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Elsie Swash Caps", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/elsie-swash-caps/elsie-swash-caps-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/elsie-swash-caps/elsie-swash-caps.svg" - }, - { - "name": "Emblema One", - "fontFamily": "Emblema One, system-ui", - "slug": "emblema-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/emblemaone/v21/nKKT-GQ0F5dSY8vzG0rOEIRBHl57G_f_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Emblema One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/emblema-one/emblema-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/emblema-one/emblema-one.svg" - }, - { - "name": "Emilys Candy", - "fontFamily": "Emilys Candy, system-ui", - "slug": "emilys-candy", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/emilyscandy/v19/2EbgL-1mD1Rnb0OGKudbk0y5r9xrX84JjA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Emilys Candy", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/emilys-candy/emilys-candy-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/emilys-candy/emilys-candy.svg" - }, - { - "name": "Encode Sans", - "fontFamily": "Encode Sans, sans-serif", - "slug": "encode-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHiZtWP7FJCt2c.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Encode Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans/encode-sans-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHjZtWP7FJCt2c.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Encode Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans/encode-sans-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGD_jZtWP7FJCt2c.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Encode Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans/encode-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjZtWP7FJCt2c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Encode Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans/encode-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGFPjZtWP7FJCt2c.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Encode Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans/encode-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGL_kZtWP7FJCt2c.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Encode Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans/encode-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGIbkZtWP7FJCt2c.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Encode Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans/encode-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHkZtWP7FJCt2c.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Encode Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans/encode-sans-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGMjkZtWP7FJCt2c.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Encode Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans/encode-sans-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans/encode-sans.svg" - }, - { - "name": "Encode Sans Condensed", - "fontFamily": "Encode Sans Condensed, sans-serif", - "slug": "encode-sans-condensed", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanscondensed/v10/j8_76_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-5a-JLQoFI2KR.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-condensed/encode-sans-condensed-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-SY6pByQJKnuIFA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-condensed/encode-sans-condensed-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-LY2pByQJKnuIFA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-condensed/encode-sans-condensed-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanscondensed/v10/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGgaWNDw8VIw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-condensed/encode-sans-condensed-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-dYypByQJKnuIFA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-condensed/encode-sans-condensed-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-WYupByQJKnuIFA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-condensed/encode-sans-condensed-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-PYqpByQJKnuIFA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-condensed/encode-sans-condensed-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-IYmpByQJKnuIFA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-condensed/encode-sans-condensed-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-BYipByQJKnuIFA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-condensed/encode-sans-condensed-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-condensed/encode-sans-condensed.svg" - }, - { - "name": "Encode Sans Expanded", - "fontFamily": "Encode Sans Expanded, sans-serif", - "slug": "encode-sans-expanded", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesansexpanded/v11/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGKQNicoAbJlw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-expanded/encode-sans-expanded-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCCNIXIwSP0XD.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-expanded/encode-sans-expanded-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCyNIXIwSP0XD.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-expanded/encode-sans-expanded-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesansexpanded/v11/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqoiIwdAd5Ab.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-expanded/encode-sans-expanded-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWCiNIXIwSP0XD.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-expanded/encode-sans-expanded-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DSNIXIwSP0XD.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-expanded/encode-sans-expanded-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDCNIXIwSP0XD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-expanded/encode-sans-expanded-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDyNIXIwSP0XD.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-expanded/encode-sans-expanded-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDiNIXIwSP0XD.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-expanded/encode-sans-expanded-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-expanded/encode-sans-expanded.svg" - }, - { - "name": "Encode Sans SC", - "fontFamily": "Encode Sans SC, sans-serif", - "slug": "encode-sans-sc", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhn8c9NOEEClIc.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-sc/encode-sans-sc-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhm8c9NOEEClIc.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-sc/encode-sans-sc-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HCZm8c9NOEEClIc.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-sc/encode-sans-sc-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhm8c9NOEEClIc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-sc/encode-sans-sc-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HEpm8c9NOEEClIc.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-sc/encode-sans-sc-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HKZh8c9NOEEClIc.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-sc/encode-sans-sc-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HJ9h8c9NOEEClIc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-sc/encode-sans-sc-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhh8c9NOEEClIc.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-sc/encode-sans-sc-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HNFh8c9NOEEClIc.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-sc/encode-sans-sc-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-sc/encode-sans-sc.svg" - }, - { - "name": "Encode Sans Semi Condensed", - "fontFamily": "Encode Sans Semi Condensed, sans-serif", - "slug": "encode-sans-semi-condensed", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT6oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1T19MFtQ9jpVUA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-semi-condensed/encode-sans-semi-condensed-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RZ1eFHbdTgTFmr.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-semi-condensed/encode-sans-semi-condensed-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Q91uFHbdTgTFmr.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-semi-condensed/encode-sans-semi-condensed-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yR_sVPRsjp.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-semi-condensed/encode-sans-semi-condensed-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Rl1-FHbdTgTFmr.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-semi-condensed/encode-sans-semi-condensed-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RJ0OFHbdTgTFmr.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-semi-condensed/encode-sans-semi-condensed-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qt0eFHbdTgTFmr.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-semi-condensed/encode-sans-semi-condensed-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qx0uFHbdTgTFmr.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-semi-condensed/encode-sans-semi-condensed-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1QV0-FHbdTgTFmr.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-semi-condensed/encode-sans-semi-condensed-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-semi-condensed/encode-sans-semi-condensed.svg" - }, - { - "name": "Encode Sans Semi Expanded", - "fontFamily": "Encode Sans Semi Expanded, sans-serif", - "slug": "encode-sans-semi-expanded", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8xOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM-41KwrlKXeOEA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-semi-expanded/encode-sans-semi-expanded-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM0IUCyDLJX6XCWU.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-semi-expanded/encode-sans-semi-expanded-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyYXCyDLJX6XCWU.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-semi-expanded/encode-sans-semi-expanded-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC4o_LyjgOXc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-semi-expanded/encode-sans-semi-expanded-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM34WCyDLJX6XCWU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-semi-expanded/encode-sans-semi-expanded-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM1IRCyDLJX6XCWU.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-semi-expanded/encode-sans-semi-expanded-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMzYQCyDLJX6XCWU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-semi-expanded/encode-sans-semi-expanded-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyoTCyDLJX6XCWU.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-semi-expanded/encode-sans-semi-expanded-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMw4SCyDLJX6XCWU.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-semi-expanded/encode-sans-semi-expanded-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/encode-sans-semi-expanded/encode-sans-semi-expanded.svg" - }, - { - "name": "Engagement", - "fontFamily": "Engagement, cursive", - "slug": "engagement", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/engagement/v26/x3dlckLDZbqa7RUs9MFVXNossybsHQI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Engagement", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/engagement/engagement-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/engagement/engagement.svg" - }, - { - "name": "Englebert", - "fontFamily": "Englebert, sans-serif", - "slug": "englebert", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/englebert/v21/xn7iYH8w2XGrC8AR4HSxT_fYdN-WZw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Englebert", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/englebert/englebert-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/englebert/englebert.svg" - }, - { - "name": "Enriqueta", - "fontFamily": "Enriqueta, serif", - "slug": "enriqueta", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/enriqueta/v17/goksH6L7AUFrRvV44HVTS0CjkP1Yog.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Enriqueta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/enriqueta/enriqueta-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/enriqueta/v17/gokpH6L7AUFrRvV44HVrv2mHmNZEq6TTFw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Enriqueta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/enriqueta/enriqueta-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/enriqueta/v17/gokpH6L7AUFrRvV44HVrk26HmNZEq6TTFw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Enriqueta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/enriqueta/enriqueta-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/enriqueta/v17/gokpH6L7AUFrRvV44HVr92-HmNZEq6TTFw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Enriqueta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/enriqueta/enriqueta-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/enriqueta/enriqueta.svg" - }, - { - "name": "Ephesis", - "fontFamily": "Ephesis, cursive", - "slug": "ephesis", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ephesis/v9/uU9PCBUS8IerL2VG7xPb3vyHmlI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ephesis", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ephesis/ephesis-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ephesis/ephesis.svg" - }, - { - "name": "Epilogue", - "fontFamily": "Epilogue, sans-serif", - "slug": "epilogue", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDLiDJXVigHPVA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Epilogue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/epilogue/epilogue-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDPiDJXVigHPVA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Epilogue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/epilogue/epilogue-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXbjPiDJXVigHPVA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Epilogue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/epilogue/epilogue-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDPiDJXVigHPVA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Epilogue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/epilogue/epilogue-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXAjPiDJXVigHPVA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Epilogue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/epilogue/epilogue-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX7jTiDJXVigHPVA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Epilogue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/epilogue/epilogue-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX1zTiDJXVigHPVA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Epilogue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/epilogue/epilogue-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDTiDJXVigHPVA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Epilogue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/epilogue/epilogue-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXmTTiDJXVigHPVA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Epilogue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/epilogue/epilogue-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKTp_RqATfVHNU.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Epilogue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/epilogue/epilogue-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKT5_RqATfVHNU.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Epilogue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/epilogue/epilogue-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HBUT5_RqATfVHNU.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Epilogue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/epilogue/epilogue-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKT5_RqATfVHNU.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Epilogue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/epilogue/epilogue-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HA4T5_RqATfVHNU.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Epilogue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/epilogue/epilogue-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDUSJ_RqATfVHNU.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Epilogue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/epilogue/epilogue-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDtSJ_RqATfVHNU.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Epilogue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/epilogue/epilogue-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKSJ_RqATfVHNU.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Epilogue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/epilogue/epilogue-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCjSJ_RqATfVHNU.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Epilogue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/epilogue/epilogue-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/epilogue/epilogue.svg" - }, - { - "name": "Erica One", - "fontFamily": "Erica One, system-ui", - "slug": "erica-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ericaone/v27/WBLnrEXccV9VGrOKmGD1W0_MJMGxiQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Erica One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/erica-one/erica-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/erica-one/erica-one.svg" - }, - { - "name": "Esteban", - "fontFamily": "Esteban, serif", - "slug": "esteban", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/esteban/v15/r05bGLZE-bdGdN-GdOuD5jokU8E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Esteban", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/esteban/esteban-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/esteban/esteban.svg" - }, - { - "name": "Estonia", - "fontFamily": "Estonia, cursive", - "slug": "estonia", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/estonia/v11/7Au_p_4ijSecA1yHCCL8zkwMIFg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Estonia", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/estonia/estonia-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/estonia/estonia.svg" - }, - { - "name": "Euphoria Script", - "fontFamily": "Euphoria Script, cursive", - "slug": "euphoria-script", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/euphoriascript/v20/mFTpWb0X2bLb_cx6To2B8GpKoD5ak_ZT1D8x7Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Euphoria Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/euphoria-script/euphoria-script-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/euphoria-script/euphoria-script.svg" - }, - { - "name": "Ewert", - "fontFamily": "Ewert, system-ui", - "slug": "ewert", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ewert/v25/va9I4kzO2tFODYBvS-J3kbDP.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ewert", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ewert/ewert-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ewert/ewert.svg" - }, - { - "name": "Exo", - "fontFamily": "Exo, sans-serif", - "slug": "exo", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM2CwNsOl4p5Is.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Exo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo/exo-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4tM3CwNsOl4p5Is.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Exo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo/exo-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4g03CwNsOl4p5Is.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Exo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo/exo-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3CwNsOl4p5Is.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Exo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo/exo-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4mE3CwNsOl4p5Is.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Exo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo/exo-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4o0wCwNsOl4p5Is.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Exo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo/exo-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4rQwCwNsOl4p5Is.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Exo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo/exo-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4tMwCwNsOl4p5Is.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Exo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo/exo-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4vowCwNsOl4p5Is.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Exo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo/exo-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t040FmPnws9Iu-uA.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Exo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo/exo-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0Y0BmPnws9Iu-uA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Exo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo/exo-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0vUBmPnws9Iu-uA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Exo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo/exo-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t040BmPnws9Iu-uA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Exo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo/exo-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t00UBmPnws9Iu-uA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Exo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo/exo-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0PUdmPnws9Iu-uA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Exo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo/exo-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0BEdmPnws9Iu-uA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Exo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo/exo-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0Y0dmPnws9Iu-uA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Exo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo/exo-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0SkdmPnws9Iu-uA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Exo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo/exo-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo/exo.svg" - }, - { - "name": "Exo 2", - "fontFamily": "Exo 2, sans-serif", - "slug": "exo-2", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvOcPtq-rpvLpQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Exo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo-2/exo-2-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvKcPtq-rpvLpQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Exo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo-2/exo-2-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8j4PKcPtq-rpvLpQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Exo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo-2/exo-2-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvKcPtq-rpvLpQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Exo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo-2/exo-2-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jjPKcPtq-rpvLpQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Exo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo-2/exo-2-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jYPWcPtq-rpvLpQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Exo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo-2/exo-2-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jWfWcPtq-rpvLpQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Exo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo-2/exo-2-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvWcPtq-rpvLpQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Exo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo-2/exo-2-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jF_WcPtq-rpvLpQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Exo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo-2/exo-2-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fNC6jJ7bpQBL.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Exo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo-2/exo-2-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0fdC6jJ7bpQBL.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Exo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo-2/exo-2-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drEqfdC6jJ7bpQBL.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Exo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo-2/exo-2-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fdC6jJ7bpQBL.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Exo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo-2/exo-2-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drFGfdC6jJ7bpQBL.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Exo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo-2/exo-2-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGqetC6jJ7bpQBL.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Exo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo-2/exo-2-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGTetC6jJ7bpQBL.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Exo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo-2/exo-2-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0etC6jJ7bpQBL.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Exo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo-2/exo-2-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drHdetC6jJ7bpQBL.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Exo 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo-2/exo-2-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/exo-2/exo-2.svg" - }, - { - "name": "Expletus Sans", - "fontFamily": "Expletus Sans, system-ui", - "slug": "expletus-sans", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/expletussans/v29/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSY2s1oFQTcXfMm.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Expletus Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/expletus-sans/expletus-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/expletussans/v29/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSq2s1oFQTcXfMm.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Expletus Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/expletus-sans/expletus-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/expletussans/v29/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaRG3c1oFQTcXfMm.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Expletus Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/expletus-sans/expletus-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/expletussans/v29/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaR_3c1oFQTcXfMm.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Expletus Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/expletus-sans/expletus-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/expletussans/v29/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmSUrHwD-WOMmKKY.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Expletus Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/expletus-sans/expletus-sans-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/expletussans/v29/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmRcrHwD-WOMmKKY.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Expletus Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/expletus-sans/expletus-sans-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/expletussans/v29/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmfssHwD-WOMmKKY.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Expletus Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/expletus-sans/expletus-sans-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/expletussans/v29/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmcIsHwD-WOMmKKY.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Expletus Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/expletus-sans/expletus-sans-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/expletus-sans/expletus-sans.svg" - }, - { - "name": "Explora", - "fontFamily": "Explora, cursive", - "slug": "explora", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/explora/v9/tsstApxFfjUH4wrvc1qPonC3vqc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Explora", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/explora/explora-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/explora/explora.svg" - }, - { - "name": "Fahkwang", - "fontFamily": "Fahkwang, sans-serif", - "slug": "fahkwang", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJHmZlRFipxkwjx.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Fahkwang", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fahkwang/fahkwang-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgHFQHC5Tlhjxdw4.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Fahkwang", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fahkwang/fahkwang-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIjmplRFipxkwjx.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Fahkwang", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fahkwang/fahkwang-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgBVTHC5Tlhjxdw4.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Fahkwang", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fahkwang/fahkwang-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fahkwang/v16/Noax6Uj3zpmBOgbNpNqPsr1ZPTZ4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fahkwang", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fahkwang/fahkwang-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fahkwang/v16/Noa36Uj3zpmBOgbNpOqNuLl7OCZ4ihE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fahkwang", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fahkwang/fahkwang-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJ7m5lRFipxkwjx.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fahkwang", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fahkwang/fahkwang-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgE1SHC5Tlhjxdw4.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Fahkwang", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fahkwang/fahkwang-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJXnJlRFipxkwjx.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Fahkwang", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fahkwang/fahkwang-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgGFVHC5Tlhjxdw4.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Fahkwang", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fahkwang/fahkwang-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIznZlRFipxkwjx.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fahkwang", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fahkwang/fahkwang-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgAVUHC5Tlhjxdw4.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Fahkwang", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fahkwang/fahkwang-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fahkwang/fahkwang.svg" - }, - { - "name": "Familjen Grotesk", - "fontFamily": "Familjen Grotesk, sans-serif", - "slug": "familjen-grotesk", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMGJaSztc1jcEYq2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Familjen Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/familjen-grotesk/familjen-grotesk-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMG7aSztc1jcEYq2.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Familjen Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/familjen-grotesk/familjen-grotesk-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFXbiztc1jcEYq2.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Familjen Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/familjen-grotesk/familjen-grotesk-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFubiztc1jcEYq2.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Familjen Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/familjen-grotesk/familjen-grotesk-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKsSueVz-FJq2Rv4.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Familjen Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/familjen-grotesk/familjen-grotesk-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKvaueVz-FJq2Rv4.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Familjen Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/familjen-grotesk/familjen-grotesk-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKhqpeVz-FJq2Rv4.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Familjen Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/familjen-grotesk/familjen-grotesk-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKiOpeVz-FJq2Rv4.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Familjen Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/familjen-grotesk/familjen-grotesk-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/familjen-grotesk/familjen-grotesk.svg" - }, - { - "name": "Fanwood Text", - "fontFamily": "Fanwood Text, serif", - "slug": "fanwood-text", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fanwoodtext/v15/3XFtErwl05Ad_vSCF6Fq7xXGRdbY1P1Sbg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fanwood Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fanwood-text/fanwood-text-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fanwoodtext/v15/3XFzErwl05Ad_vSCF6Fq7xX2R9zc9vhCblye.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fanwood Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fanwood-text/fanwood-text-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fanwood-text/fanwood-text.svg" - }, - { - "name": "Farro", - "fontFamily": "Farro, sans-serif", - "slug": "farro", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3hNJ6-WkJUQUq7.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Farro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/farro/farro-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/farro/v14/i7dEIFl3byGNHZVNHLq2cV5d.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Farro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/farro/farro-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa25NZ6-WkJUQUq7.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Farro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/farro/farro-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3xM56-WkJUQUq7.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Farro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/farro/farro-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/farro/farro.svg" - }, - { - "name": "Farsan", - "fontFamily": "Farsan, system-ui", - "slug": "farsan", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/farsan/v22/VEMwRoJ0vY_zsyz62q-pxDX9rQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Farsan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/farsan/farsan-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/farsan/farsan.svg" - }, - { - "name": "Fascinate", - "fontFamily": "Fascinate, system-ui", - "slug": "fascinate", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fascinate/v21/z7NWdRrufC8XJK0IIEli1LbQRPyNrw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fascinate", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fascinate/fascinate-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fascinate/fascinate.svg" - }, - { - "name": "Fascinate Inline", - "fontFamily": "Fascinate Inline, system-ui", - "slug": "fascinate-inline", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fascinateinline/v22/jVyR7mzzB3zc-jp6QCAu60poNqIy1g3CfRXxWZQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fascinate Inline", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fascinate-inline/fascinate-inline-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fascinate-inline/fascinate-inline.svg" - }, - { - "name": "Faster One", - "fontFamily": "Faster One, system-ui", - "slug": "faster-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fasterone/v19/H4ciBXCHmdfClFb-vWhfyLuShq63czE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Faster One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/faster-one/faster-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/faster-one/faster-one.svg" - }, - { - "name": "Fasthand", - "fontFamily": "Fasthand, system-ui", - "slug": "fasthand", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fasthand/v30/0yb9GDohyKTYn_ZEESkuYkw2rQg1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fasthand", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fasthand/fasthand-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fasthand/fasthand.svg" - }, - { - "name": "Fauna One", - "fontFamily": "Fauna One, serif", - "slug": "fauna-one", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/faunaone/v15/wlpzgwTPBVpjpCuwkuEx2UxLYClOCg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fauna One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fauna-one/fauna-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fauna-one/fauna-one.svg" - }, - { - "name": "Faustina", - "fontFamily": "Faustina, serif", - "slug": "faustina", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHls3IEvGVWWe8tbEg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Faustina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/faustina/faustina-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsgoEvGVWWe8tbEg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Faustina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/faustina/faustina-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlssIEvGVWWe8tbEg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Faustina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/faustina/faustina-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsXIYvGVWWe8tbEg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Faustina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/faustina/faustina-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsZYYvGVWWe8tbEg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Faustina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/faustina/faustina-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsAoYvGVWWe8tbEg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Faustina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/faustina/faustina-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsKZWl-SWc5LEnoF.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Faustina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/faustina/faustina-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsLHWl-SWc5LEnoF.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Faustina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/faustina/faustina-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsL1Wl-SWc5LEnoF.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Faustina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/faustina/faustina-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIZXV-SWc5LEnoF.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Faustina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/faustina/faustina-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIgXV-SWc5LEnoF.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Faustina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/faustina/faustina-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsJHXV-SWc5LEnoF.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Faustina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/faustina/faustina-800-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/faustina/faustina.svg" - }, - { - "name": "Federant", - "fontFamily": "Federant, system-ui", - "slug": "federant", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/federant/v29/2sDdZGNfip_eirT0_U0jRUG0AqUc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Federant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/federant/federant-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/federant/federant.svg" - }, - { - "name": "Federo", - "fontFamily": "Federo, sans-serif", - "slug": "federo", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/federo/v19/iJWFBX-cbD_ETsbmjVOe2WTG7Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Federo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/federo/federo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/federo/federo.svg" - }, - { - "name": "Felipa", - "fontFamily": "Felipa, cursive", - "slug": "felipa", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/felipa/v25/FwZa7-owz1Eu4F_wSNSEwM2zpA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Felipa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/felipa/felipa-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/felipa/felipa.svg" - }, - { - "name": "Fenix", - "fontFamily": "Fenix, serif", - "slug": "fenix", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fenix/v20/XoHo2YL_S7-g5ostKzAFvs8o.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fenix", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fenix/fenix-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fenix/fenix.svg" - }, - { - "name": "Festive", - "fontFamily": "Festive, cursive", - "slug": "festive", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/festive/v9/cY9Ffj6KX1xcoDWhFtfgy9HTkak.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Festive", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/festive/festive-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/festive/festive.svg" - }, - { - "name": "Figtree", - "fontFamily": "Figtree, sans-serif", - "slug": "figtree", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_chQF5ewkEU4HTy.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Figtree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/figtree/figtree-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5ewkEU4HTy.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Figtree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/figtree/figtree-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5ewkEU4HTy.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Figtree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/figtree/figtree-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15ewkEU4HTy.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Figtree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/figtree/figtree-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_eYR15ewkEU4HTy.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Figtree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/figtree/figtree-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_f_R15ewkEU4HTy.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Figtree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/figtree/figtree-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_fWR15ewkEU4HTy.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Figtree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/figtree/figtree-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/figtree/v5/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A-gdyEU25WTybO8.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Figtree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/figtree/figtree-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/figtree/v5/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A7YdyEU25WTybO8.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Figtree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/figtree/figtree-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/figtree/v5/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A4QdyEU25WTybO8.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Figtree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/figtree/figtree-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/figtree/v5/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A2gayEU25WTybO8.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Figtree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/figtree/figtree-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/figtree/v5/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A1EayEU25WTybO8.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Figtree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/figtree/figtree-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/figtree/v5/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3AzYayEU25WTybO8.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Figtree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/figtree/figtree-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/figtree/v5/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3Ax8ayEU25WTybO8.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Figtree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/figtree/figtree-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/figtree/figtree.svg" - }, - { - "name": "Finger Paint", - "fontFamily": "Finger Paint, system-ui", - "slug": "finger-paint", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fingerpaint/v19/0QInMXVJ-o-oRn_7dron8YWO85bS8ANesw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Finger Paint", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/finger-paint/finger-paint-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/finger-paint/finger-paint.svg" - }, - { - "name": "Finlandica", - "fontFamily": "Finlandica, sans-serif", - "slug": "finlandica", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19A7rEjx9i5ss3a3.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Finlandica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/finlandica/finlandica-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19AJrEjx9i5ss3a3.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Finlandica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/finlandica/finlandica-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dlq0jx9i5ss3a3.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Finlandica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/finlandica/finlandica-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dcq0jx9i5ss3a3.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Finlandica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/finlandica/finlandica-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz76Cy_CpOtma3uNQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Finlandica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/finlandica/finlandica-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz75Ky_CpOtma3uNQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Finlandica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/finlandica/finlandica-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz7361_CpOtma3uNQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Finlandica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/finlandica/finlandica-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz70e1_CpOtma3uNQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Finlandica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/finlandica/finlandica-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/finlandica/finlandica.svg" - }, - { - "name": "Fira Code", - "fontFamily": "Fira Code, monospace", - "slug": "fira-code", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_GNsFVfxN87gsj0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Fira Code", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-code/fira-code-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sFVfxN87gsj0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fira Code", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-code/fira-code-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_A9sFVfxN87gsj0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fira Code", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-code/fira-code-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_ONrFVfxN87gsj0.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Fira Code", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-code/fira-code-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_NprFVfxN87gsj0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fira Code", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-code/fira-code-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-code/fira-code.svg" - }, - { - "name": "Fira Mono", - "fontFamily": "Fira Mono, monospace", - "slug": "fira-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firamono/v14/N0bX2SlFPv1weGeLZDtQIfTTkdbJYA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fira Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-mono/fira-mono-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDto1d33mf3VaZBRBQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fira Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-mono/fira-mono-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDtondv3mf3VaZBRBQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fira Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-mono/fira-mono-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-mono/fira-mono.svg" - }, - { - "name": "Fira Sans", - "fontFamily": "Fira Sans, sans-serif", - "slug": "fira-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasans/v17/va9C4kDNxMZdWfMOD5Vn9IjOazP3dUTP.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Fira Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans/fira-sans-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasans/v17/va9A4kDNxMZdWfMOD5VvkrCqYTfVcFTPj0s.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Fira Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans/fira-sans-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnWKnuQR37fF3Wlg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Fira Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans/fira-sans-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrAGQBf_XljGllLX.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Fira Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans/fira-sans-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnPKruQR37fF3Wlg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Fira Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans/fira-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBiQxf_XljGllLX.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Fira Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans/fira-sans-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasans/v17/va9E4kDNxMZdWfMOD5VfkILKSTbndQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fira Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans/fira-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasans/v17/va9C4kDNxMZdWfMOD5VvkojOazP3dUTP.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fira Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans/fira-sans-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnZKvuQR37fF3Wlg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fira Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans/fira-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrA6Qhf_XljGllLX.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Fira Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans/fira-sans-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnSKzuQR37fF3Wlg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Fira Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans/fira-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrAWRRf_XljGllLX.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Fira Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans/fira-sans-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnLK3uQR37fF3Wlg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fira Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans/fira-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrByRBf_XljGllLX.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Fira Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans/fira-sans-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnMK7uQR37fF3Wlg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Fira Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans/fira-sans-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBuRxf_XljGllLX.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Fira Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans/fira-sans-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnFK_uQR37fF3Wlg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Fira Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans/fira-sans-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBKRhf_XljGllLX.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Fira Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans/fira-sans-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans/fira-sans.svg" - }, - { - "name": "Fira Sans Condensed", - "fontFamily": "Fira Sans Condensed, sans-serif", - "slug": "fira-sans-condensed", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarWZXtqOlQfx9CjA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-condensed/fira-sans-condensed-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasanscondensed/v10/wEOtEADFm8hSaQTFG18FErVhsC9x-tarUfPVzONUXRpSjJcu.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-condensed/fira-sans-condensed-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWTnMiMN-cxZblY4.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-condensed/fira-sans-condensed-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVYMJ0dzRehY43EA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-condensed/fira-sans-condensed-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWV3PiMN-cxZblY4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-condensed/fira-sans-condensed-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVBMF0dzRehY43EA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-condensed/fira-sans-condensed-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasanscondensed/v10/wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfHnrMtVbx8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-condensed/fira-sans-condensed-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarUfPtqOlQfx9CjA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-condensed/fira-sans-condensed-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWQXOiMN-cxZblY4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-condensed/fira-sans-condensed-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVXMB0dzRehY43EA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-condensed/fira-sans-condensed-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWSnJiMN-cxZblY4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-condensed/fira-sans-condensed-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVcMd0dzRehY43EA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-condensed/fira-sans-condensed-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWU3IiMN-cxZblY4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-condensed/fira-sans-condensed-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVFMZ0dzRehY43EA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-condensed/fira-sans-condensed-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWVHLiMN-cxZblY4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-condensed/fira-sans-condensed-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVCMV0dzRehY43EA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-condensed/fira-sans-condensed-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWXXKiMN-cxZblY4.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-condensed/fira-sans-condensed-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVLMR0dzRehY43EA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-condensed/fira-sans-condensed-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-condensed/fira-sans-condensed.svg" - }, - { - "name": "Fira Sans Extra Condensed", - "fontFamily": "Fira Sans Extra Condensed, sans-serif", - "slug": "fira-sans-extra-condensed", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3Zyuv1WarE9ncg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPOcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqW21-ejkp3cn22.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3TCPn3-0oEZ-a2Q.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWd36-pGR7e2SvJQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3VSMn3-0oEZ-a2Q.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWE32-pGR7e2SvJQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5fiku3efvE8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fquv1WarE9ncg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3QyNn3-0oEZ-a2Q.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWS3y-pGR7e2SvJQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3SCKn3-0oEZ-a2Q.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWZ3u-pGR7e2SvJQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3USLn3-0oEZ-a2Q.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWA3q-pGR7e2SvJQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3ViIn3-0oEZ-a2Q.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWH3m-pGR7e2SvJQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3XyJn3-0oEZ-a2Q.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWO3i-pGR7e2SvJQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-extra-condensed/fira-sans-extra-condensed-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fira-sans-extra-condensed/fira-sans-extra-condensed.svg" - }, - { - "name": "Fjalla One", - "fontFamily": "Fjalla One, sans-serif", - "slug": "fjalla-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fjallaone/v15/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fjalla One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fjalla-one/fjalla-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fjalla-one/fjalla-one.svg" - }, - { - "name": "Fjord One", - "fontFamily": "Fjord One, serif", - "slug": "fjord-one", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fjordone/v21/zOL-4pbEnKBY_9S1jNKr6e5As-FeiQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fjord One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fjord-one/fjord-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fjord-one/fjord-one.svg" - }, - { - "name": "Flamenco", - "fontFamily": "Flamenco, system-ui", - "slug": "flamenco", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/flamenco/v18/neIPzCehqYguo67ssZ0qNIkyepH9qGsf.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Flamenco", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/flamenco/flamenco-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/flamenco/v18/neIIzCehqYguo67ssaWGHK06UY30.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Flamenco", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/flamenco/flamenco-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/flamenco/flamenco.svg" - }, - { - "name": "Flavors", - "fontFamily": "Flavors, system-ui", - "slug": "flavors", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/flavors/v26/FBV2dDrhxqmveJTpbkzlNqkG9UY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Flavors", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/flavors/flavors-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/flavors/flavors.svg" - }, - { - "name": "Fleur De Leah", - "fontFamily": "Fleur De Leah, cursive", - "slug": "fleur-de-leah", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fleurdeleah/v9/AYCNpXX7ftYZWLhv9UmPJTMC5vat4I_Gdq0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fleur De Leah", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fleur-de-leah/fleur-de-leah-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fleur-de-leah/fleur-de-leah.svg" - }, - { - "name": "Flow Block", - "fontFamily": "Flow Block, system-ui", - "slug": "flow-block", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/flowblock/v11/wlp0gwfPCEB65UmTk-d6-WZlbCBXE_I.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Flow Block", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/flow-block/flow-block-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/flow-block/flow-block.svg" - }, - { - "name": "Flow Circular", - "fontFamily": "Flow Circular, system-ui", - "slug": "flow-circular", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/flowcircular/v11/lJwB-pc4j2F-H8YKuyvfxdZ45ifpWdr2rIg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Flow Circular", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/flow-circular/flow-circular-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/flow-circular/flow-circular.svg" - }, - { - "name": "Flow Rounded", - "fontFamily": "Flow Rounded, system-ui", - "slug": "flow-rounded", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/flowrounded/v11/-zki91mtwsU9qlLiGwD4oQX3oZX-Xup87g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Flow Rounded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/flow-rounded/flow-rounded-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/flow-rounded/flow-rounded.svg" - }, - { - "name": "Foldit", - "fontFamily": "Foldit, system-ui", - "slug": "foldit", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/foldit/v5/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XpANmapUYLHkN80.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Foldit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/foldit/foldit-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/foldit/v5/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XhAMmapUYLHkN80.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Foldit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/foldit/foldit-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/foldit/v5/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8Xs4MmapUYLHkN80.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Foldit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/foldit/foldit-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/foldit/v5/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XpAMmapUYLHkN80.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Foldit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/foldit/foldit-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/foldit/v5/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XqIMmapUYLHkN80.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Foldit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/foldit/foldit-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/foldit/v5/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8Xk4LmapUYLHkN80.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Foldit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/foldit/foldit-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/foldit/v5/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XncLmapUYLHkN80.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Foldit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/foldit/foldit-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/foldit/v5/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XhALmapUYLHkN80.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Foldit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/foldit/foldit-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/foldit/v5/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XjkLmapUYLHkN80.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Foldit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/foldit/foldit-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/foldit/foldit.svg" - }, - { - "name": "Fondamento", - "fontFamily": "Fondamento, cursive", - "slug": "fondamento", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fondamento/v20/4UaHrEJGsxNmFTPDnkaJx63j5pN1MwI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fondamento", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fondamento/fondamento-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fondamento/v20/4UaFrEJGsxNmFTPDnkaJ96_p4rFwIwJePw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fondamento", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fondamento/fondamento-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fondamento/fondamento.svg" - }, - { - "name": "Fontdiner Swanky", - "fontFamily": "Fontdiner Swanky, system-ui", - "slug": "fontdiner-swanky", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fontdinerswanky/v23/ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uEfKiGvxts.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fontdiner Swanky", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fontdiner-swanky/fontdiner-swanky-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fontdiner-swanky/fontdiner-swanky.svg" - }, - { - "name": "Forum", - "fontFamily": "Forum, system-ui", - "slug": "forum", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/forum/v18/6aey4Ky-Vb8Ew_IWMJMa3mnT.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Forum", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/forum/forum-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/forum/forum.svg" - }, - { - "name": "Fragment Mono", - "fontFamily": "Fragment Mono, monospace", - "slug": "fragment-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4RNh4UI_1U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fragment Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fragment-mono/fragment-mono-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fragmentmono/v4/4iC16K5wfMRRjxp0DA6-2CLnB4ZHg6cN71URtQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fragment Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fragment-mono/fragment-mono-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fragment-mono/fragment-mono.svg" - }, - { - "name": "Francois One", - "fontFamily": "Francois One, sans-serif", - "slug": "francois-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/francoisone/v21/_Xmr-H4zszafZw3A-KPSZutNxgKQu_avAg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Francois One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/francois-one/francois-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/francois-one/francois-one.svg" - }, - { - "name": "Frank Ruhl Libre", - "fontFamily": "Frank Ruhl Libre, serif", - "slug": "frank-ruhl-libre", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/frankruhllibre/v20/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw6bYVqQPxR2EUR_.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Frank Ruhl Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/frank-ruhl-libre/frank-ruhl-libre-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/frankruhllibre/v20/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw7FYVqQPxR2EUR_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Frank Ruhl Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/frank-ruhl-libre/frank-ruhl-libre-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/frankruhllibre/v20/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw73YVqQPxR2EUR_.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Frank Ruhl Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/frank-ruhl-libre/frank-ruhl-libre-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/frankruhllibre/v20/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw4bZlqQPxR2EUR_.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Frank Ruhl Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/frank-ruhl-libre/frank-ruhl-libre-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/frankruhllibre/v20/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw4iZlqQPxR2EUR_.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Frank Ruhl Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/frank-ruhl-libre/frank-ruhl-libre-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/frankruhllibre/v20/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw5FZlqQPxR2EUR_.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Frank Ruhl Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/frank-ruhl-libre/frank-ruhl-libre-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/frankruhllibre/v20/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw5sZlqQPxR2EUR_.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Frank Ruhl Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/frank-ruhl-libre/frank-ruhl-libre-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/frank-ruhl-libre/frank-ruhl-libre.svg" - }, - { - "name": "Fraunces", - "fontFamily": "Fraunces, serif", - "slug": "fraunces", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxqjDvTShUtWNg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Fraunces", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fraunces/fraunces-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxujDvTShUtWNg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Fraunces", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fraunces/fraunces-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIc6RujDvTShUtWNg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Fraunces", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fraunces/fraunces-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxujDvTShUtWNg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fraunces", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fraunces/fraunces-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIchRujDvTShUtWNg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fraunces", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fraunces/fraunces-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcaRyjDvTShUtWNg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Fraunces", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fraunces/fraunces-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcUByjDvTShUtWNg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fraunces", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fraunces/fraunces-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxyjDvTShUtWNg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Fraunces", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fraunces/fraunces-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcHhyjDvTShUtWNg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Fraunces", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fraunces/fraunces-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTP7Wp05GNi3k.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Fraunces", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fraunces/fraunces-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLTf7Wp05GNi3k.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Fraunces", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fraunces/fraunces-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1gVTf7Wp05GNi3k.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Fraunces", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fraunces/fraunces-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTf7Wp05GNi3k.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fraunces", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fraunces/fraunces-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1h5Tf7Wp05GNi3k.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Fraunces", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fraunces/fraunces-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1iVSv7Wp05GNi3k.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Fraunces", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fraunces/fraunces-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1isSv7Wp05GNi3k.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Fraunces", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fraunces/fraunces-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLSv7Wp05GNi3k.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Fraunces", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fraunces/fraunces-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jiSv7Wp05GNi3k.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Fraunces", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fraunces/fraunces-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fraunces/fraunces.svg" - }, - { - "name": "Freckle Face", - "fontFamily": "Freckle Face, system-ui", - "slug": "freckle-face", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/freckleface/v15/AMOWz4SXrmKHCvXTohxY-YI0U1K2w9lb4g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Freckle Face", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/freckle-face/freckle-face-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/freckle-face/freckle-face.svg" - }, - { - "name": "Fredericka the Great", - "fontFamily": "Fredericka the Great, system-ui", - "slug": "fredericka-the-great", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/frederickathegreat/v21/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Skz7Ylch2L.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fredericka the Great", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fredericka-the-great/fredericka-the-great-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fredericka-the-great/fredericka-the-great.svg" - }, - { - "name": "Fredoka", - "fontFamily": "Fredoka, sans-serif", - "slug": "fredoka", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OryLMFuOLlNldbw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Fredoka", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fredoka/fredoka-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3O8SLMFuOLlNldbw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fredoka", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fredoka/fredoka-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OwyLMFuOLlNldbw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fredoka", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fredoka/fredoka-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OLyXMFuOLlNldbw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Fredoka", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fredoka/fredoka-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OFiXMFuOLlNldbw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fredoka", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fredoka/fredoka-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fredoka/fredoka.svg" - }, - { - "name": "Freehand", - "fontFamily": "Freehand, system-ui", - "slug": "freehand", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/freehand/v31/cIf-Ma5eqk01VjKTgAmBTmUOmZJk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Freehand", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/freehand/freehand-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/freehand/freehand.svg" - }, - { - "name": "Fresca", - "fontFamily": "Fresca, sans-serif", - "slug": "fresca", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fresca/v22/6ae94K--SKgCzbM2Gr0W13DKPA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fresca", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fresca/fresca-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fresca/fresca.svg" - }, - { - "name": "Frijole", - "fontFamily": "Frijole, system-ui", - "slug": "frijole", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/frijole/v14/uU9PCBUR8oakM2BQ7xPb3vyHmlI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Frijole", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/frijole/frijole-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/frijole/frijole.svg" - }, - { - "name": "Fruktur", - "fontFamily": "Fruktur, system-ui", - "slug": "fruktur", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fruktur/v27/SZc53FHsOru5QYsMfz3GkUrS8DI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fruktur", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fruktur/fruktur-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fruktur/v27/SZc73FHsOru5QYsMTz_MlWjX4DJXgQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fruktur", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fruktur/fruktur-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fruktur/fruktur.svg" - }, - { - "name": "Fugaz One", - "fontFamily": "Fugaz One, system-ui", - "slug": "fugaz-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fugazone/v19/rax_HiWKp9EAITukFslMBBJek0vA8A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fugaz One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fugaz-one/fugaz-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fugaz-one/fugaz-one.svg" - }, - { - "name": "Fuggles", - "fontFamily": "Fuggles, cursive", - "slug": "fuggles", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fuggles/v12/k3kQo8UEJOlD1hpOTd7iL0nAMaM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fuggles", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fuggles/fuggles-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fuggles/fuggles.svg" - }, - { - "name": "Fuzzy Bubbles", - "fontFamily": "Fuzzy Bubbles, cursive", - "slug": "fuzzy-bubbles", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fuzzybubbles/v7/6qLGKZMbrgv9pwtjPEVNV0F2NnP5Zxsreko.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fuzzy Bubbles", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fuzzy-bubbles/fuzzy-bubbles-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/fuzzybubbles/v7/6qLbKZMbrgv9pwtjPEVNV0F2Ds_WQxMAZkM1pn4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fuzzy Bubbles", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fuzzy-bubbles/fuzzy-bubbles-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/fuzzy-bubbles/fuzzy-bubbles.svg" - }, - { - "name": "GFS Didot", - "fontFamily": "GFS Didot, serif", - "slug": "gfs-didot", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gfsdidot/v15/Jqzh5TybZ9vZMWFssvwiF-fGFSCGAA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "GFS Didot", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gfs-didot/gfs-didot-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gfs-didot/gfs-didot.svg" - }, - { - "name": "GFS Neohellenic", - "fontFamily": "GFS Neohellenic, sans-serif", - "slug": "gfs-neohellenic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gfsneohellenic/v25/8QIRdiDOrfiq0b7R8O1Iw9WLcY5TLahP46UDUw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "GFS Neohellenic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gfs-neohellenic/gfs-neohellenic-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gfsneohellenic/v25/8QITdiDOrfiq0b7R8O1Iw9WLcY5jL6JLwaATU91X.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "GFS Neohellenic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gfs-neohellenic/gfs-neohellenic-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gfsneohellenic/v25/8QIUdiDOrfiq0b7R8O1Iw9WLcY5rkYdr644fWsRO9w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "GFS Neohellenic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gfs-neohellenic/gfs-neohellenic-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gfsneohellenic/v25/8QIWdiDOrfiq0b7R8O1Iw9WLcY5jL5r37oQbeMFe985V.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "GFS Neohellenic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gfs-neohellenic/gfs-neohellenic-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gfs-neohellenic/gfs-neohellenic.svg" - }, - { - "name": "Gabriela", - "fontFamily": "Gabriela, serif", - "slug": "gabriela", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gabriela/v20/qkBWXvsO6sreR8E-b_m-zrpHmRzC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gabriela", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gabriela/gabriela-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gabriela/gabriela.svg" - }, - { - "name": "Gaegu", - "fontFamily": "Gaegu, cursive", - "slug": "gaegu", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gaegu/v17/TuGSUVB6Up9NU57nifw74sdtBk0x.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Gaegu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gaegu/gaegu-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gaegu/v17/TuGfUVB6Up9NU6ZLodgzydtk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gaegu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gaegu/gaegu-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gaegu/v17/TuGSUVB6Up9NU573jvw74sdtBk0x.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gaegu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gaegu/gaegu-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gaegu/gaegu.svg" - }, - { - "name": "Gafata", - "fontFamily": "Gafata, sans-serif", - "slug": "gafata", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gafata/v20/XRXV3I6Cn0VJKon4MuyAbsrVcA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gafata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gafata/gafata-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gafata/gafata.svg" - }, - { - "name": "Gajraj One", - "fontFamily": "Gajraj One, system-ui", - "slug": "gajraj-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gajrajone/v5/1cX2aUDCDpXsuWVb1jIjr1GqhcitzeM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gajraj One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gajraj-one/gajraj-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gajraj-one/gajraj-one.svg" - }, - { - "name": "Galada", - "fontFamily": "Galada, system-ui", - "slug": "galada", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/galada/v18/H4cmBXyGmcjXlUX-8iw-4Lqggw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Galada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/galada/galada-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/galada/galada.svg" - }, - { - "name": "Galdeano", - "fontFamily": "Galdeano, sans-serif", - "slug": "galdeano", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/galdeano/v22/uU9MCBoQ4YOqOW1boDPx8PCOg0uX.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Galdeano", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/galdeano/galdeano-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/galdeano/galdeano.svg" - }, - { - "name": "Galindo", - "fontFamily": "Galindo, system-ui", - "slug": "galindo", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/galindo/v24/HI_KiYMeLqVKqwyuQ5HiRp-dhpQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Galindo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/galindo/galindo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/galindo/galindo.svg" - }, - { - "name": "Gamja Flower", - "fontFamily": "Gamja Flower, cursive", - "slug": "gamja-flower", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gamjaflower/v22/6NUR8FiKJg-Pa0rM6uN40Z4kyf9Fdty2ew.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gamja Flower", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gamja-flower/gamja-flower-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gamja-flower/gamja-flower.svg" - }, - { - "name": "Gantari", - "fontFamily": "Gantari, sans-serif", - "slug": "gantari", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOz3wa5GD2qnm.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Gantari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gantari/gantari-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gOj3wa5GD2qnm.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Gantari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gantari/gantari-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g1-Oj3wa5GD2qnm.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Gantari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gantari/gantari-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOj3wa5GD2qnm.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gantari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gantari/gantari-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0SOj3wa5GD2qnm.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Gantari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gantari/gantari-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3-PT3wa5GD2qnm.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Gantari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gantari/gantari-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3HPT3wa5GD2qnm.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gantari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gantari/gantari-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gPT3wa5GD2qnm.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Gantari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gantari/gantari-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2JPT3wa5GD2qnm.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Gantari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gantari/gantari-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWyYZWh37nmpWc.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Gantari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gantari/gantari-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVWzYZWh37nmpWc.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Gantari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gantari/gantari-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeYuzYZWh37nmpWc.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Gantari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gantari/gantari-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWzYZWh37nmpWc.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Gantari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gantari/gantari-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeeezYZWh37nmpWc.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Gantari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gantari/gantari-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeQu0YZWh37nmpWc.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Gantari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gantari/gantari-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeTK0YZWh37nmpWc.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Gantari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gantari/gantari-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVW0YZWh37nmpWc.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Gantari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gantari/gantari-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeXy0YZWh37nmpWc.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Gantari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gantari/gantari-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gantari/gantari.svg" - }, - { - "name": "Gasoek One", - "fontFamily": "Gasoek One, sans-serif", - "slug": "gasoek-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gasoekone/v3/EJRTQgQ_UMUKvDgnlX80zrq_cyb-vco.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gasoek One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gasoek-one/gasoek-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gasoek-one/gasoek-one.svg" - }, - { - "name": "Gayathri", - "fontFamily": "Gayathri, sans-serif", - "slug": "gayathri", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gayathri/v17/MCoWzAb429DbBilWLLhc-pvSA_gA2W8.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Gayathri", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gayathri/gayathri-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gayathri/v17/MCoQzAb429DbBilWLIA48J_wBugA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gayathri", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gayathri/gayathri-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gayathri/v17/MCoXzAb429DbBilWLLiE37v4LfQJwHbn.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gayathri", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gayathri/gayathri-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gayathri/gayathri.svg" - }, - { - "name": "Gelasio", - "fontFamily": "Gelasio, serif", - "slug": "gelasio", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gelasio/v10/cIf9MaFfvUQxTTqSxCmrYGkHgIs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gelasio", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gelasio/gelasio-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gelasio/v10/cIf_MaFfvUQxTTqS9CuhZEsCkIt9QQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Gelasio", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gelasio/gelasio-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_N2CRGEsnIJkWL4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Gelasio", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gelasio/gelasio-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZkGImmKBhSL7Y1Q.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Gelasio", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gelasio/gelasio-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_PGFRGEsnIJkWL4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Gelasio", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gelasio/gelasio-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZvGUmmKBhSL7Y1Q.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Gelasio", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gelasio/gelasio-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_JWERGEsnIJkWL4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gelasio", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gelasio/gelasio-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZ2GQmmKBhSL7Y1Q.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Gelasio", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gelasio/gelasio-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gelasio/gelasio.svg" - }, - { - "name": "Gemunu Libre", - "fontFamily": "Gemunu Libre, sans-serif", - "slug": "gemunu-libre", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gemunulibre/v14/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iJPvSLeMXPIWA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Gemunu Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gemunu-libre/gemunu-libre-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gemunulibre/v14/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp00aJPvSLeMXPIWA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Gemunu Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gemunu-libre/gemunu-libre-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gemunulibre/v14/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0xiJPvSLeMXPIWA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gemunu Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gemunu-libre/gemunu-libre-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gemunulibre/v14/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0yqJPvSLeMXPIWA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Gemunu Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gemunu-libre/gemunu-libre-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gemunulibre/v14/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp08aOPvSLeMXPIWA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Gemunu Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gemunu-libre/gemunu-libre-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gemunulibre/v14/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0_-OPvSLeMXPIWA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gemunu Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gemunu-libre/gemunu-libre-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gemunulibre/v14/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iOPvSLeMXPIWA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Gemunu Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gemunu-libre/gemunu-libre-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gemunu-libre/gemunu-libre.svg" - }, - { - "name": "Genos", - "fontFamily": "Genos, sans-serif", - "slug": "genos", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/genos/v12/SlGNmQqPqpUOYTYjacb0Hc91fTwVqknorUK6K7ZsAg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Genos", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/genos/genos-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/genos/v12/SlGNmQqPqpUOYTYjacb0Hc91fTwVKkjorUK6K7ZsAg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Genos", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/genos/genos-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/genos/v12/SlGNmQqPqpUOYTYjacb0Hc91fTwV9EjorUK6K7ZsAg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Genos", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/genos/genos-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/genos/v12/SlGNmQqPqpUOYTYjacb0Hc91fTwVqkjorUK6K7ZsAg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Genos", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/genos/genos-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/genos/v12/SlGNmQqPqpUOYTYjacb0Hc91fTwVmEjorUK6K7ZsAg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Genos", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/genos/genos-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/genos/v12/SlGNmQqPqpUOYTYjacb0Hc91fTwVdE_orUK6K7ZsAg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Genos", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/genos/genos-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/genos/v12/SlGNmQqPqpUOYTYjacb0Hc91fTwVTU_orUK6K7ZsAg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Genos", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/genos/genos-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/genos/v12/SlGNmQqPqpUOYTYjacb0Hc91fTwVKk_orUK6K7ZsAg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Genos", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/genos/genos-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/genos/v12/SlGNmQqPqpUOYTYjacb0Hc91fTwVA0_orUK6K7ZsAg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Genos", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/genos/genos-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/genos/v12/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA70i-CbN8Ard7.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Genos", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/genos/genos-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/genos/v12/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA7ki-CbN8Ard7.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Genos", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/genos/genos-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/genos/v12/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgte7ki-CbN8Ard7.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Genos", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/genos/genos-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/genos/v12/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA7ki-CbN8Ard7.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Genos", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/genos/genos-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/genos/v12/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsy7ki-CbN8Ard7.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Genos", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/genos/genos-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/genos/v12/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgve6Ui-CbN8Ard7.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Genos", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/genos/genos-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/genos/v12/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgvn6Ui-CbN8Ard7.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Genos", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/genos/genos-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/genos/v12/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA6Ui-CbN8Ard7.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Genos", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/genos/genos-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/genos/v12/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgup6Ui-CbN8Ard7.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Genos", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/genos/genos-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/genos/genos.svg" - }, - { - "name": "Gentium Book Plus", - "fontFamily": "Gentium Book Plus, serif", - "slug": "gentium-book-plus", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gentiumbookplus/v1/vEFL2-RHBgUK5fbjKxRpbBtJPyRpofKfdbLOrdPV.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gentium Book Plus", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gentium-book-plus/gentium-book-plus-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gentiumbookplus/v1/vEFN2-RHBgUK5fbjKxRpbBtJPyRpocKdf7bsqMPVZb4.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Gentium Book Plus", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gentium-book-plus/gentium-book-plus-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gentiumbookplus/v1/vEFO2-RHBgUK5fbjKxRpbBtJPyRpocojWpbGhs_cfKe1.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gentium Book Plus", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gentium-book-plus/gentium-book-plus-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gentiumbookplus/v1/vEFA2-RHBgUK5fbjKxRpbBtJPyRpocKdRwrDjMv-ebe1Els.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Gentium Book Plus", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gentium-book-plus/gentium-book-plus-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gentium-book-plus/gentium-book-plus.svg" - }, - { - "name": "Gentium Plus", - "fontFamily": "Gentium Plus, serif", - "slug": "gentium-plus", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gentiumplus/v2/Iurd6Ytw-oSPaZ00r2bNe8VpjJtM6G0t9w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gentium Plus", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gentium-plus/gentium-plus-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gentiumplus/v2/IurD6Ytw-oSPaZ00r2bNe8VZjpFIymg9957e.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Gentium Plus", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gentium-plus/gentium-plus-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gentiumplus/v2/IurC6Ytw-oSPaZ00r2bNe8VRMLRo4EYx_ofHsw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gentium Plus", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gentium-plus/gentium-plus-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gentiumplus/v2/IurA6Ytw-oSPaZ00r2bNe8VZjqn05Uw13ILXs-h6.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Gentium Plus", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gentium-plus/gentium-plus-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gentium-plus/gentium-plus.svg" - }, - { - "name": "Geo", - "fontFamily": "Geo, sans-serif", - "slug": "geo", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/geo/v21/CSRz4zRZlufVL3BmQjlCbQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Geo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/geo/geo-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/geo/v21/CSRx4zRZluflLXpiYDxSbf8r.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Geo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/geo/geo-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/geo/geo.svg" - }, - { - "name": "Geologica", - "fontFamily": "Geologica, sans-serif", - "slug": "geologica", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqDx_qQ-MYAXWnqFs.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Geologica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/geologica/geologica-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD5_rQ-MYAXWnqFs.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Geologica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/geologica/geologica-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD0HrQ-MYAXWnqFs.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Geologica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/geologica/geologica-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqDx_rQ-MYAXWnqFs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Geologica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/geologica/geologica-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqDy3rQ-MYAXWnqFs.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Geologica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/geologica/geologica-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD8HsQ-MYAXWnqFs.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Geologica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/geologica/geologica-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD_jsQ-MYAXWnqFs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Geologica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/geologica/geologica-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD5_sQ-MYAXWnqFs.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Geologica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/geologica/geologica-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD7bsQ-MYAXWnqFs.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Geologica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/geologica/geologica-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/geologica/geologica.svg" - }, - { - "name": "Georama", - "fontFamily": "Georama, sans-serif", - "slug": "georama", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/georama/v13/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvktmQsL5_tgbg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Georama", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/georama/georama-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/georama/v13/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mvgtmQsL5_tgbg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Georama", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/georama/georama-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/georama/v13/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5RPgtmQsL5_tgbg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Georama", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/georama/georama-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/georama/v13/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvgtmQsL5_tgbg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Georama", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/georama/georama-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/georama/v13/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5KPgtmQsL5_tgbg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Georama", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/georama/georama-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/georama/v13/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5xP8tmQsL5_tgbg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Georama", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/georama/georama-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/georama/v13/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5_f8tmQsL5_tgbg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Georama", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/georama/georama-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/georama/v13/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mv8tmQsL5_tgbg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Georama", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/georama/georama-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/georama/v13/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5s_8tmQsL5_tgbg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Georama", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/georama/georama-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/georama/v13/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2wEPxf5wbh3T.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Georama", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/georama/georama-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/georama/v13/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF2gEPxf5wbh3T.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Georama", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/georama/georama-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/georama/v13/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rub2gEPxf5wbh3T.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Georama", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/georama/georama-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/georama/v13/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2gEPxf5wbh3T.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Georama", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/georama/georama-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/georama/v13/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rv32gEPxf5wbh3T.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Georama", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/georama/georama-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/georama/v13/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsb3QEPxf5wbh3T.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Georama", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/georama/georama-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/georama/v13/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsi3QEPxf5wbh3T.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Georama", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/georama/georama-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/georama/v13/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF3QEPxf5wbh3T.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Georama", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/georama/georama-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/georama/v13/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rts3QEPxf5wbh3T.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Georama", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/georama/georama-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/georama/georama.svg" - }, - { - "name": "Geostar", - "fontFamily": "Geostar, system-ui", - "slug": "geostar", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/geostar/v26/sykz-yx4n701VLOftSq9-trEvlQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Geostar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/geostar/geostar-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/geostar/geostar.svg" - }, - { - "name": "Geostar Fill", - "fontFamily": "Geostar Fill, system-ui", - "slug": "geostar-fill", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/geostarfill/v26/AMOWz4SWuWiXFfjEohxQ9os0U1K2w9lb4g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Geostar Fill", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/geostar-fill/geostar-fill-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/geostar-fill/geostar-fill.svg" - }, - { - "name": "Germania One", - "fontFamily": "Germania One, system-ui", - "slug": "germania-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/germaniaone/v20/Fh4yPjrqIyv2ucM2qzBjeS3ezAJONau6ew.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Germania One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/germania-one/germania-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/germania-one/germania-one.svg" - }, - { - "name": "Gideon Roman", - "fontFamily": "Gideon Roman, system-ui", - "slug": "gideon-roman", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gideonroman/v11/e3tmeuGrVOys8sxzZgWlmXoge0PWovdU4w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gideon Roman", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gideon-roman/gideon-roman-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gideon-roman/gideon-roman.svg" - }, - { - "name": "Gidugu", - "fontFamily": "Gidugu, sans-serif", - "slug": "gidugu", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gidugu/v25/L0x8DFMkk1Uf6w3RvPCmRSlUig.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gidugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gidugu/gidugu-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gidugu/gidugu.svg" - }, - { - "name": "Gilda Display", - "fontFamily": "Gilda Display, serif", - "slug": "gilda-display", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gildadisplay/v18/t5tmIRoYMoaYG0WEOh7HwMeR7TnFrpOHYh4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gilda Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gilda-display/gilda-display-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gilda-display/gilda-display.svg" - }, - { - "name": "Girassol", - "fontFamily": "Girassol, system-ui", - "slug": "girassol", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/girassol/v22/JTUUjIo_-DK48laaNC9Nz2pJzxbi.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Girassol", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/girassol/girassol-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/girassol/girassol.svg" - }, - { - "name": "Give You Glory", - "fontFamily": "Give You Glory, cursive", - "slug": "give-you-glory", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/giveyouglory/v15/8QIQdiHOgt3vv4LR7ahjw9-XYc1zB4ZD6rwa.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Give You Glory", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/give-you-glory/give-you-glory-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/give-you-glory/give-you-glory.svg" - }, - { - "name": "Glass Antiqua", - "fontFamily": "Glass Antiqua, system-ui", - "slug": "glass-antiqua", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/glassantiqua/v24/xfu30Wr0Wn3NOQM2piC0uXOjnL_wN6fRUkY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Glass Antiqua", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/glass-antiqua/glass-antiqua-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/glass-antiqua/glass-antiqua.svg" - }, - { - "name": "Glegoo", - "fontFamily": "Glegoo, serif", - "slug": "glegoo", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/glegoo/v16/_Xmt-HQyrTKWaw2Ji6mZAI91xw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Glegoo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/glegoo/glegoo-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/glegoo/v16/_Xmu-HQyrTKWaw2xN4a9CKRpzimMsg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Glegoo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/glegoo/glegoo-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/glegoo/glegoo.svg" - }, - { - "name": "Gloock", - "fontFamily": "Gloock, serif", - "slug": "gloock", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gloock/v6/Iurb6YFw84WUY4N5jxylBrdRjQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gloock", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gloock/gloock-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gloock/gloock.svg" - }, - { - "name": "Gloria Hallelujah", - "fontFamily": "Gloria Hallelujah, cursive", - "slug": "gloria-hallelujah", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gloriahallelujah/v21/LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy3TKEvkCF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gloria Hallelujah", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gloria-hallelujah/gloria-hallelujah-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gloria-hallelujah/gloria-hallelujah.svg" - }, - { - "name": "Glory", - "fontFamily": "Glory, sans-serif", - "slug": "glory", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/glory/v15/q5uasoi9Lf1w5t3Est24nq9blIRQwIiDpn-dDi9EOQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Glory", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/glory/glory-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/glory/v15/q5uasoi9Lf1w5t3Est24nq9blIRQQImDpn-dDi9EOQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Glory", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/glory/glory-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/glory/v15/q5uasoi9Lf1w5t3Est24nq9blIRQnomDpn-dDi9EOQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Glory", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/glory/glory-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/glory/v15/q5uasoi9Lf1w5t3Est24nq9blIRQwImDpn-dDi9EOQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Glory", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/glory/glory-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/glory/v15/q5uasoi9Lf1w5t3Est24nq9blIRQ8omDpn-dDi9EOQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Glory", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/glory/glory-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/glory/v15/q5uasoi9Lf1w5t3Est24nq9blIRQHo6Dpn-dDi9EOQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Glory", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/glory/glory-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/glory/v15/q5uasoi9Lf1w5t3Est24nq9blIRQJ46Dpn-dDi9EOQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Glory", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/glory/glory-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/glory/v15/q5uasoi9Lf1w5t3Est24nq9blIRQQI6Dpn-dDi9EOQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Glory", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/glory/glory-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/glory/v15/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Glory", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/glory/glory-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/glory/v15/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Glory", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/glory/glory-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/glory/v15/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMo15XWZLCpUOaM6.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Glory", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/glory/glory-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/glory/v15/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Glory", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/glory/glory-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/glory/v15/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Glory", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/glory/glory-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/glory/v15/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMq14nWZLCpUOaM6.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Glory", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/glory/glory-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/glory/v15/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Glory", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/glory/glory-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/glory/v15/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Glory", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/glory/glory-800-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/glory/glory.svg" - }, - { - "name": "Gluten", - "fontFamily": "Gluten, system-ui", - "slug": "gluten", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gluten/v16/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7B1Luni7ciJh.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Gluten", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gluten/gluten-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gluten/v16/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb7R1Luni7ciJh.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Gluten", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gluten/gluten-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gluten/v16/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8UF7R1Luni7ciJh.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Gluten", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gluten/gluten-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gluten/v16/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7R1Luni7ciJh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gluten", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gluten/gluten-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gluten/v16/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vp7R1Luni7ciJh.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Gluten", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gluten/gluten-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gluten/v16/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8WF6h1Luni7ciJh.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Gluten", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gluten/gluten-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gluten/v16/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8W86h1Luni7ciJh.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gluten", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gluten/gluten-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gluten/v16/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb6h1Luni7ciJh.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Gluten", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gluten/gluten-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gluten/v16/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xy6h1Luni7ciJh.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Gluten", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gluten/gluten-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gluten/gluten.svg" - }, - { - "name": "Goblin One", - "fontFamily": "Goblin One, system-ui", - "slug": "goblin-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/goblinone/v26/CSR64z1ZnOqZRjRCBVY_TOcATNt_pOU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Goblin One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/goblin-one/goblin-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/goblin-one/goblin-one.svg" - }, - { - "name": "Gochi Hand", - "fontFamily": "Gochi Hand, cursive", - "slug": "gochi-hand", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gochihand/v23/hES06XlsOjtJsgCkx1PkTo71-n0nXWA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gochi Hand", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gochi-hand/gochi-hand-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gochi-hand/gochi-hand.svg" - }, - { - "name": "Goldman", - "fontFamily": "Goldman, system-ui", - "slug": "goldman", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/goldman/v19/pe0uMIWbN4JFplR2LDJ4Bt-7G98.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Goldman", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/goldman/goldman-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/goldman/v19/pe0rMIWbN4JFplR2FI5XIteQB9Zra1U.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Goldman", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/goldman/goldman-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/goldman/goldman.svg" - }, - { - "name": "Golos Text", - "fontFamily": "Golos Text, sans-serif", - "slug": "golos-text", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVRRQ5cEr8zXcyx.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Golos Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/golos-text/golos-text-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVjRQ5cEr8zXcyx.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Golos Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/golos-text/golos-text-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plWPQg5cEr8zXcyx.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Golos Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/golos-text/golos-text-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plW2Qg5cEr8zXcyx.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Golos Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/golos-text/golos-text-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plXRQg5cEr8zXcyx.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Golos Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/golos-text/golos-text-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plX4Qg5cEr8zXcyx.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Golos Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/golos-text/golos-text-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/golos-text/golos-text.svg" - }, - { - "name": "Gorditas", - "fontFamily": "Gorditas, system-ui", - "slug": "gorditas", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gorditas/v22/ll8_K2aTVD26DsPEtQDoDa4AlxYb.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gorditas", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gorditas/gorditas-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gorditas/v22/ll84K2aTVD26DsPEtThUIooIvAoShA1i.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gorditas", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gorditas/gorditas-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gorditas/gorditas.svg" - }, - { - "name": "Gothic A1", - "fontFamily": "Gothic A1, sans-serif", - "slug": "gothic-a1", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gothica1/v13/CSR74z5ZnPydRjlCCwlCCMcqYtd2vfwk.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Gothic A1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gothic-a1/gothic-a1-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCpOYKSPl6tOU9Eg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Gothic A1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gothic-a1/gothic-a1-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCwOUKSPl6tOU9Eg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Gothic A1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gothic-a1/gothic-a1-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gothica1/v13/CSR94z5ZnPydRjlCCwl6bM0uQNJmvQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gothic A1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gothic-a1/gothic-a1-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCmOQKSPl6tOU9Eg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Gothic A1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gothic-a1/gothic-a1-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCtOMKSPl6tOU9Eg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Gothic A1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gothic-a1/gothic-a1-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC0OIKSPl6tOU9Eg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gothic A1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gothic-a1/gothic-a1-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCzOEKSPl6tOU9Eg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Gothic A1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gothic-a1/gothic-a1-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC6OAKSPl6tOU9Eg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Gothic A1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gothic-a1/gothic-a1-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gothic-a1/gothic-a1.svg" - }, - { - "name": "Gotu", - "fontFamily": "Gotu, sans-serif", - "slug": "gotu", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gotu/v14/o-0FIpksx3QOlH0Lioh6-hU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gotu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gotu/gotu-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gotu/gotu.svg" - }, - { - "name": "Goudy Bookletter 1911", - "fontFamily": "Goudy Bookletter 1911, serif", - "slug": "goudy-bookletter-1911", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/goudybookletter1911/v19/sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5tRbXZ4IXAA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Goudy Bookletter 1911", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/goudy-bookletter-1911/goudy-bookletter-1911-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/goudy-bookletter-1911/goudy-bookletter-1911.svg" - }, - { - "name": "Gowun Batang", - "fontFamily": "Gowun Batang, serif", - "slug": "gowun-batang", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gowunbatang/v7/ijwSs5nhRMIjYsdSgcMa3wRhXLH-yuAtLw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gowun Batang", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gowun-batang/gowun-batang-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gowunbatang/v7/ijwNs5nhRMIjYsdSgcMa3wRZ4J7awssxJii23w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gowun Batang", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gowun-batang/gowun-batang-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gowun-batang/gowun-batang.svg" - }, - { - "name": "Gowun Dodum", - "fontFamily": "Gowun Dodum, sans-serif", - "slug": "gowun-dodum", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gowundodum/v7/3Jn5SD_00GqwlBnWc1TUJF0FfORL0fNy.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gowun Dodum", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gowun-dodum/gowun-dodum-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gowun-dodum/gowun-dodum.svg" - }, - { - "name": "Graduate", - "fontFamily": "Graduate, serif", - "slug": "graduate", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/graduate/v17/C8cg4cs3o2n15t_2YxgR6X2NZAn2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Graduate", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/graduate/graduate-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/graduate/graduate.svg" - }, - { - "name": "Grand Hotel", - "fontFamily": "Grand Hotel, cursive", - "slug": "grand-hotel", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grandhotel/v19/7Au7p_IgjDKdCRWuR1azpmQNEl0O0kEx.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Grand Hotel", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grand-hotel/grand-hotel-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grand-hotel/grand-hotel.svg" - }, - { - "name": "Grandiflora One", - "fontFamily": "Grandiflora One, serif", - "slug": "grandiflora-one", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grandifloraone/v3/0ybmGD0g27bCk_5MGWZcKWhxwnUU_R3y8DOWGA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Grandiflora One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grandiflora-one/grandiflora-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grandiflora-one/grandiflora-one.svg" - }, - { - "name": "Grandstander", - "fontFamily": "Grandstander, system-ui", - "slug": "grandstander", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grandstander/v17/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1-_D3jWttFGmQk.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Grandstander", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grandstander/grandstander-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grandstander/v17/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9--D3jWttFGmQk.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Grandstander", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grandstander/grandstander-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grandstander/v17/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQDwG-D3jWttFGmQk.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Grandstander", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grandstander/grandstander-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grandstander/v17/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1--D3jWttFGmQk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Grandstander", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grandstander/grandstander-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grandstander/v17/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD22-D3jWttFGmQk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Grandstander", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grandstander/grandstander-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grandstander/v17/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD4G5D3jWttFGmQk.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Grandstander", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grandstander/grandstander-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grandstander/v17/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD7i5D3jWttFGmQk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Grandstander", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grandstander/grandstander-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grandstander/v17/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9-5D3jWttFGmQk.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Grandstander", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grandstander/grandstander-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grandstander/v17/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD_a5D3jWttFGmQk.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Grandstander", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grandstander/grandstander-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grandstander/v17/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zrcsvNDiQlBYQ.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Grandstander", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grandstander/grandstander-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grandstander/v17/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzvcsvNDiQlBYQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Grandstander", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grandstander/grandstander-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grandstander/v17/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9uTvcsvNDiQlBYQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Grandstander", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grandstander/grandstander-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grandstander/v17/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zvcsvNDiQlBYQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Grandstander", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grandstander/grandstander-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grandstander/v17/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf91TvcsvNDiQlBYQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Grandstander", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grandstander/grandstander-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grandstander/v17/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9OTzcsvNDiQlBYQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Grandstander", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grandstander/grandstander-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grandstander/v17/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ADzcsvNDiQlBYQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Grandstander", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grandstander/grandstander-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grandstander/v17/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzzcsvNDiQlBYQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Grandstander", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grandstander/grandstander-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grandstander/v17/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9TjzcsvNDiQlBYQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Grandstander", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grandstander/grandstander-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grandstander/grandstander.svg" - }, - { - "name": "Grape Nuts", - "fontFamily": "Grape Nuts, cursive", - "slug": "grape-nuts", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grapenuts/v5/syk2-yF4iLM2RfKj4F7k3tLvol2RN1E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Grape Nuts", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grape-nuts/grape-nuts-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grape-nuts/grape-nuts.svg" - }, - { - "name": "Gravitas One", - "fontFamily": "Gravitas One, system-ui", - "slug": "gravitas-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gravitasone/v19/5h1diZ4hJ3cblKy3LWakKQmaDWRNr3DzbQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gravitas One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gravitas-one/gravitas-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gravitas-one/gravitas-one.svg" - }, - { - "name": "Great Vibes", - "fontFamily": "Great Vibes, cursive", - "slug": "great-vibes", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/greatvibes/v18/RWmMoKWR9v4ksMfaWd_JN-XCg6UKDXlq.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Great Vibes", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/great-vibes/great-vibes-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/great-vibes/great-vibes.svg" - }, - { - "name": "Grechen Fuemen", - "fontFamily": "Grechen Fuemen, cursive", - "slug": "grechen-fuemen", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grechenfuemen/v9/vEFI2_tHEQ4d5ObgKxBzZh0MAWgc-NaXXq7H.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Grechen Fuemen", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grechen-fuemen/grechen-fuemen-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grechen-fuemen/grechen-fuemen.svg" - }, - { - "name": "Grenze", - "fontFamily": "Grenze, serif", - "slug": "grenze", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenze/v15/O4ZRFGb7hR12BxqPm2IjuAkalnmd.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Grenze", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze/grenze-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenze/v15/O4ZXFGb7hR12BxqH_VpHsg04k2md0kI.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Grenze", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze/grenze-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPN0MDkicWn2CEyw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Grenze", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze/grenze-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vrrky0SvWWUy1uW.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Grenze", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze/grenze-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPU0ADkicWn2CEyw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Grenze", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze/grenze-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqPkC0SvWWUy1uW.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Grenze", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze/grenze-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenze/v15/O4ZTFGb7hR12Bxq3_2gnmgwKlg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Grenze", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze/grenze-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenze/v15/O4ZRFGb7hR12BxqH_WIjuAkalnmd.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Grenze", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze/grenze-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPC0EDkicWn2CEyw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Grenze", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze/grenze-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VrXkS0SvWWUy1uW.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Grenze", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze/grenze-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPJ0YDkicWn2CEyw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Grenze", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze/grenze-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vr7li0SvWWUy1uW.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Grenze", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze/grenze-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPQ0cDkicWn2CEyw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Grenze", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze/grenze-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vqfly0SvWWUy1uW.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Grenze", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze/grenze-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPX0QDkicWn2CEyw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Grenze", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze/grenze-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqDlC0SvWWUy1uW.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Grenze", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze/grenze-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPe0UDkicWn2CEyw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Grenze", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze/grenze-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqnlS0SvWWUy1uW.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Grenze", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze/grenze-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze/grenze.svg" - }, - { - "name": "Grenze Gotisch", - "fontFamily": "Grenze Gotisch, system-ui", - "slug": "grenze-gotisch", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenzegotisch/v18/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz5UcICdYPSd_w.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze-gotisch/grenze-gotisch-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenzegotisch/v18/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rz9UcICdYPSd_w.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze-gotisch/grenze-gotisch-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenzegotisch/v18/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5cT9UcICdYPSd_w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze-gotisch/grenze-gotisch-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenzegotisch/v18/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz9UcICdYPSd_w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze-gotisch/grenze-gotisch-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenzegotisch/v18/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5HT9UcICdYPSd_w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze-gotisch/grenze-gotisch-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenzegotisch/v18/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i58ThUcICdYPSd_w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze-gotisch/grenze-gotisch-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenzegotisch/v18/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5yDhUcICdYPSd_w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze-gotisch/grenze-gotisch-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenzegotisch/v18/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rzhUcICdYPSd_w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze-gotisch/grenze-gotisch-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/grenzegotisch/v18/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5hjhUcICdYPSd_w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze-gotisch/grenze-gotisch-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grenze-gotisch/grenze-gotisch.svg" - }, - { - "name": "Grey Qo", - "fontFamily": "Grey Qo, cursive", - "slug": "grey-qo", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/greyqo/v9/BXRrvF_Nmv_TyXxNDOtQ9Wf0QcE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Grey Qo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grey-qo/grey-qo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/grey-qo/grey-qo.svg" - }, - { - "name": "Griffy", - "fontFamily": "Griffy, system-ui", - "slug": "griffy", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/griffy/v22/FwZa7-ox2FQh9kfwSNSEwM2zpA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Griffy", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/griffy/griffy-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/griffy/griffy.svg" - }, - { - "name": "Gruppo", - "fontFamily": "Gruppo, sans-serif", - "slug": "gruppo", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gruppo/v21/WwkfxPmzE06v_ZWFWXDAOIEQUQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gruppo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gruppo/gruppo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gruppo/gruppo.svg" - }, - { - "name": "Gudea", - "fontFamily": "Gudea, sans-serif", - "slug": "gudea", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gudea/v15/neIFzCqgsI0mp-CP9IGON7Ez.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gudea", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gudea/gudea-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gudea/v15/neILzCqgsI0mp9CN_oWsMqEzSJQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Gudea", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gudea/gudea-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gudea/v15/neIIzCqgsI0mp9gz26WGHK06UY30.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gudea", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gudea/gudea-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gudea/gudea.svg" - }, - { - "name": "Gugi", - "fontFamily": "Gugi, system-ui", - "slug": "gugi", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gugi/v15/A2BVn5dXywshVA6A9DEfgqM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gugi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gugi/gugi-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gugi/gugi.svg" - }, - { - "name": "Gulzar", - "fontFamily": "Gulzar, serif", - "slug": "gulzar", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gulzar/v12/Wnz6HAc9eB3HB2ILYTwZqg_MPQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gulzar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gulzar/gulzar-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gulzar/gulzar.svg" - }, - { - "name": "Gupter", - "fontFamily": "Gupter, serif", - "slug": "gupter", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gupter/v14/2-cm9JNmxJqPO1QUYZa_Wu_lpA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gupter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gupter/gupter-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qslb-bUsT5rZhaZg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Gupter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gupter/gupter-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qs3bmbUsT5rZhaZg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gupter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gupter/gupter-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gupter/gupter.svg" - }, - { - "name": "Gurajada", - "fontFamily": "Gurajada, serif", - "slug": "gurajada", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gurajada/v19/FwZY7-Qx308m-l-0Kd6A4sijpFu_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gurajada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gurajada/gurajada-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gurajada/gurajada.svg" - }, - { - "name": "Gwendolyn", - "fontFamily": "Gwendolyn, cursive", - "slug": "gwendolyn", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gwendolyn/v7/qkBXXvoO_M3CSss-d7ee5JRLkAXbMQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gwendolyn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gwendolyn/gwendolyn-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/gwendolyn/v7/qkBSXvoO_M3CSss-d7emWLtvmC7HONiSFQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gwendolyn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gwendolyn/gwendolyn-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/gwendolyn/gwendolyn.svg" - }, - { - "name": "Habibi", - "fontFamily": "Habibi, serif", - "slug": "habibi", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/habibi/v21/CSR-4zFWkuqcTTNCShJeZOYySQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Habibi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/habibi/habibi-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/habibi/habibi.svg" - }, - { - "name": "Hachi Maru Pop", - "fontFamily": "Hachi Maru Pop, cursive", - "slug": "hachi-maru-pop", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hachimarupop/v19/HI_TiYoRLqpLrEiMAuO9Ysfz7rW1EM_btd8u.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hachi Maru Pop", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hachi-maru-pop/hachi-maru-pop-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hachi-maru-pop/hachi-maru-pop.svg" - }, - { - "name": "Hahmlet", - "fontFamily": "Hahmlet, serif", - "slug": "hahmlet", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKOdjobsO-aVxn.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Hahmlet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hahmlet/hahmlet-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKONjobsO-aVxn.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Hahmlet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hahmlet/hahmlet-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RgUONjobsO-aVxn.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hahmlet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hahmlet/hahmlet-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKONjobsO-aVxn.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hahmlet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hahmlet/hahmlet-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4Rh4ONjobsO-aVxn.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hahmlet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hahmlet/hahmlet-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RiUP9jobsO-aVxn.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hahmlet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hahmlet/hahmlet-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RitP9jobsO-aVxn.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hahmlet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hahmlet/hahmlet-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKP9jobsO-aVxn.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Hahmlet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hahmlet/hahmlet-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjjP9jobsO-aVxn.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Hahmlet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hahmlet/hahmlet-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hahmlet/hahmlet.svg" - }, - { - "name": "Halant", - "fontFamily": "Halant, serif", - "slug": "halant", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/halant/v14/u-490qaujRI2Pbsvc_pCmwZqcwdRXg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Halant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/halant/halant-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/halant/v14/u-4-0qaujRI2PbsX39Jmky12eg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Halant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/halant/halant-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvK_tCmwZqcwdRXg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Halant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/halant/halant-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvB_xCmwZqcwdRXg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Halant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/halant/halant-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvY_1CmwZqcwdRXg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Halant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/halant/halant-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/halant/halant.svg" - }, - { - "name": "Hammersmith One", - "fontFamily": "Hammersmith One, sans-serif", - "slug": "hammersmith-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hammersmithone/v17/qWcyB624q4L_C4jGQ9IK0O_dFlnbshsks4MRXw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hammersmith One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hammersmith-one/hammersmith-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hammersmith-one/hammersmith-one.svg" - }, - { - "name": "Hanalei", - "fontFamily": "Hanalei, system-ui", - "slug": "hanalei", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hanalei/v23/E21n_dD8iufIjBRHXzgmVydREus.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hanalei", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanalei/hanalei-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanalei/hanalei.svg" - }, - { - "name": "Hanalei Fill", - "fontFamily": "Hanalei Fill, system-ui", - "slug": "hanalei-fill", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hanaleifill/v22/fC1mPYtObGbfyQznIaQzPQiMVwLBplm9aw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hanalei Fill", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanalei-fill/hanalei-fill-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanalei-fill/hanalei-fill.svg" - }, - { - "name": "Handjet", - "fontFamily": "Handjet, system-ui", - "slug": "handjet", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/handjet/v19/oY1n8eXHq7n1OnbQrOY_2FrEwYEMLlcdP1mCtZaLaTutCwcIhGZ0lGU0akFcO3XFHTmbUkUsEHFAH2A.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Handjet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/handjet/handjet-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/handjet/v19/oY1n8eXHq7n1OnbQrOY_2FrEwYEMLlcdP1mCtZaLaTutCwcIhGZ0lGU0akFcO3XFHbmaUkUsEHFAH2A.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Handjet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/handjet/handjet-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/handjet/v19/oY1n8eXHq7n1OnbQrOY_2FrEwYEMLlcdP1mCtZaLaTutCwcIhGZ0lGU0akFcO3XFHWeaUkUsEHFAH2A.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Handjet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/handjet/handjet-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/handjet/v19/oY1n8eXHq7n1OnbQrOY_2FrEwYEMLlcdP1mCtZaLaTutCwcIhGZ0lGU0akFcO3XFHTmaUkUsEHFAH2A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Handjet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/handjet/handjet-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/handjet/v19/oY1n8eXHq7n1OnbQrOY_2FrEwYEMLlcdP1mCtZaLaTutCwcIhGZ0lGU0akFcO3XFHQuaUkUsEHFAH2A.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Handjet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/handjet/handjet-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/handjet/v19/oY1n8eXHq7n1OnbQrOY_2FrEwYEMLlcdP1mCtZaLaTutCwcIhGZ0lGU0akFcO3XFHeedUkUsEHFAH2A.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Handjet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/handjet/handjet-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/handjet/v19/oY1n8eXHq7n1OnbQrOY_2FrEwYEMLlcdP1mCtZaLaTutCwcIhGZ0lGU0akFcO3XFHd6dUkUsEHFAH2A.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Handjet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/handjet/handjet-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/handjet/v19/oY1n8eXHq7n1OnbQrOY_2FrEwYEMLlcdP1mCtZaLaTutCwcIhGZ0lGU0akFcO3XFHbmdUkUsEHFAH2A.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Handjet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/handjet/handjet-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/handjet/v19/oY1n8eXHq7n1OnbQrOY_2FrEwYEMLlcdP1mCtZaLaTutCwcIhGZ0lGU0akFcO3XFHZCdUkUsEHFAH2A.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Handjet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/handjet/handjet-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/handjet/handjet.svg" - }, - { - "name": "Handlee", - "fontFamily": "Handlee, cursive", - "slug": "handlee", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/handlee/v18/-F6xfjBsISg9aMakDmr6oilJ3ik.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Handlee", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/handlee/handlee-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/handlee/handlee.svg" - }, - { - "name": "Hanken Grotesk", - "fontFamily": "Hanken Grotesk, sans-serif", - "slug": "hanken-grotesk", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2da4fpNzXhRKA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanken-grotesk/hanken-grotesk-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcM2Za4fpNzXhRKA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanken-grotesk/hanken-grotesk-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Nc7WZa4fpNzXhRKA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanken-grotesk/hanken-grotesk-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2Za4fpNzXhRKA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanken-grotesk/hanken-grotesk-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcgWZa4fpNzXhRKA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanken-grotesk/hanken-grotesk-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcbWFa4fpNzXhRKA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanken-grotesk/hanken-grotesk-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcVGFa4fpNzXhRKA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanken-grotesk/hanken-grotesk-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcM2Fa4fpNzXhRKA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanken-grotesk/hanken-grotesk-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcGmFa4fpNzXhRKA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanken-grotesk/hanken-grotesk-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWyo_BJ731BKMSK.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanken-grotesk/hanken-grotesk-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUyovBJ731BKMSK.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanken-grotesk/hanken-grotesk-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyXsovBJ731BKMSK.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanken-grotesk/hanken-grotesk-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWyovBJ731BKMSK.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanken-grotesk/hanken-grotesk-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWAovBJ731BKMSK.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanken-grotesk/hanken-grotesk-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyVspfBJ731BKMSK.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanken-grotesk/hanken-grotesk-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyVVpfBJ731BKMSK.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanken-grotesk/hanken-grotesk-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUypfBJ731BKMSK.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanken-grotesk/hanken-grotesk-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUbpfBJ731BKMSK.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanken-grotesk/hanken-grotesk-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanken-grotesk/hanken-grotesk.svg" - }, - { - "name": "Hanuman", - "fontFamily": "Hanuman, serif", - "slug": "hanuman", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hanuman/v22/VuJzdNvD15HhpJJBQMLdPKNiaRpFvg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Hanuman", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanuman/hanuman-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQAr_HIlMZRNcp0o.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hanuman", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanuman/hanuman-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hanuman/v22/VuJxdNvD15HhpJJBeKbXOIFneRo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hanuman", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanuman/hanuman-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQBr4HIlMZRNcp0o.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hanuman", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanuman/hanuman-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQCL6HIlMZRNcp0o.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Hanuman", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanuman/hanuman-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hanuman/hanuman.svg" - }, - { - "name": "Happy Monkey", - "fontFamily": "Happy Monkey, system-ui", - "slug": "happy-monkey", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/happymonkey/v14/K2F2fZZcl-9SXwl5F_C4R_OABwD2bWqVjw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Happy Monkey", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/happy-monkey/happy-monkey-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/happy-monkey/happy-monkey.svg" - }, - { - "name": "Harmattan", - "fontFamily": "Harmattan, sans-serif", - "slug": "harmattan", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/harmattan/v19/goksH6L2DkFvVvRp9XpTS0CjkP1Yog.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Harmattan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/harmattan/harmattan-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/harmattan/v19/gokpH6L2DkFvVvRp9Xprv2mHmNZEq6TTFw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Harmattan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/harmattan/harmattan-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/harmattan/v19/gokpH6L2DkFvVvRp9Xprk26HmNZEq6TTFw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Harmattan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/harmattan/harmattan-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/harmattan/v19/gokpH6L2DkFvVvRp9Xpr92-HmNZEq6TTFw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Harmattan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/harmattan/harmattan-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/harmattan/harmattan.svg" - }, - { - "name": "Headland One", - "fontFamily": "Headland One, serif", - "slug": "headland-one", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/headlandone/v16/yYLu0hHR2vKnp89Tk1TCq3Tx0PlTeZ3mJA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Headland One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/headland-one/headland-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/headland-one/headland-one.svg" - }, - { - "name": "Heebo", - "fontFamily": "Heebo, sans-serif", - "slug": "heebo", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiS2cckOnz02SXQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Heebo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/heebo/heebo-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSycckOnz02SXQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Heebo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/heebo/heebo-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1E1yycckOnz02SXQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Heebo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/heebo/heebo-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSycckOnz02SXQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Heebo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/heebo/heebo-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EuyycckOnz02SXQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Heebo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/heebo/heebo-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EVyucckOnz02SXQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Heebo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/heebo/heebo-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EbiucckOnz02SXQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Heebo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/heebo/heebo-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSucckOnz02SXQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Heebo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/heebo/heebo-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EICucckOnz02SXQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Heebo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/heebo/heebo-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/heebo/heebo.svg" - }, - { - "name": "Henny Penny", - "fontFamily": "Henny Penny, system-ui", - "slug": "henny-penny", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hennypenny/v17/wXKvE3UZookzsxz_kjGSfMQqt3M7tMDT.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Henny Penny", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/henny-penny/henny-penny-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/henny-penny/henny-penny.svg" - }, - { - "name": "Hepta Slab", - "fontFamily": "Hepta Slab, serif", - "slug": "hepta-slab", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/heptaslab/v23/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5jfbY5B0NBkz.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Hepta Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hepta-slab/hepta-slab-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/heptaslab/v23/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV5zfbY5B0NBkz.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Hepta Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hepta-slab/hepta-slab-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/heptaslab/v23/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvlL5zfbY5B0NBkz.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hepta Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hepta-slab/hepta-slab-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/heptaslab/v23/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5zfbY5B0NBkz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hepta Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hepta-slab/hepta-slab-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/heptaslab/v23/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvkn5zfbY5B0NBkz.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hepta Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hepta-slab/hepta-slab-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/heptaslab/v23/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvnL4DfbY5B0NBkz.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hepta Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hepta-slab/hepta-slab-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/heptaslab/v23/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvny4DfbY5B0NBkz.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hepta Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hepta-slab/hepta-slab-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/heptaslab/v23/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV4DfbY5B0NBkz.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Hepta Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hepta-slab/hepta-slab-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/heptaslab/v23/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvm84DfbY5B0NBkz.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Hepta Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hepta-slab/hepta-slab-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hepta-slab/hepta-slab.svg" - }, - { - "name": "Herr Von Muellerhoff", - "fontFamily": "Herr Von Muellerhoff, cursive", - "slug": "herr-von-muellerhoff", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/herrvonmuellerhoff/v21/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c6_qJY3QPQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Herr Von Muellerhoff", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/herr-von-muellerhoff/herr-von-muellerhoff-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/herr-von-muellerhoff/herr-von-muellerhoff.svg" - }, - { - "name": "Hi Melody", - "fontFamily": "Hi Melody, cursive", - "slug": "hi-melody", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/himelody/v15/46ktlbP8Vnz0pJcqCTbEf29E31BBGA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hi Melody", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hi-melody/hi-melody-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hi-melody/hi-melody.svg" - }, - { - "name": "Hina Mincho", - "fontFamily": "Hina Mincho, serif", - "slug": "hina-mincho", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hinamincho/v12/2sDaZGBRhpXa2Jjz5w5LAGW8KbkVZTHR.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hina Mincho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hina-mincho/hina-mincho-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hina-mincho/hina-mincho.svg" - }, - { - "name": "Hind", - "fontFamily": "Hind, sans-serif", - "slug": "hind", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfMJaIRuYjDpf5Vw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hind", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind/hind-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hind/v16/5aU69_a8oxmIRG5yBROzkDM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hind", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind/hind-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfJpbIRuYjDpf5Vw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hind", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind/hind-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfLZcIRuYjDpf5Vw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hind", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind/hind-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfNJdIRuYjDpf5Vw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hind", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind/hind-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind/hind.svg" - }, - { - "name": "Hind Guntur", - "fontFamily": "Hind Guntur, sans-serif", - "slug": "hind-guntur", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yGn1czn9zaj5Ju.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hind Guntur", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-guntur/hind-guntur-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hindguntur/v12/wXKvE3UZrok56nvamSuJd8Qqt3M7tMDT.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hind Guntur", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-guntur/hind-guntur-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zenlczn9zaj5Ju.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hind Guntur", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-guntur/hind-guntur-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zymVczn9zaj5Ju.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hind Guntur", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-guntur/hind-guntur-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yWmFczn9zaj5Ju.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hind Guntur", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-guntur/hind-guntur-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-guntur/hind-guntur.svg" - }, - { - "name": "Hind Madurai", - "fontFamily": "Hind Madurai, sans-serif", - "slug": "hind-madurai", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfXaUnecsoMJ0b_g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hind Madurai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-madurai/hind-madurai-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hindmadurai/v11/f0Xx0e2p98ZvDXdZQIOcpqjn8Y0DceA0OQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hind Madurai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-madurai/hind-madurai-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfBaQnecsoMJ0b_g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hind Madurai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-madurai/hind-madurai-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfKaMnecsoMJ0b_g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hind Madurai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-madurai/hind-madurai-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfTaInecsoMJ0b_g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hind Madurai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-madurai/hind-madurai-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-madurai/hind-madurai.svg" - }, - { - "name": "Hind Siliguri", - "fontFamily": "Hind Siliguri, sans-serif", - "slug": "hind-siliguri", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRDf44uEfKiGvxts.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hind Siliguri", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-siliguri/hind-siliguri-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hindsiliguri/v12/ijwTs5juQtsyLLR5jN4cxBEofJvQxuk0Nig.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hind Siliguri", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-siliguri/hind-siliguri-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRG_54uEfKiGvxts.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hind Siliguri", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-siliguri/hind-siliguri-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoREP-4uEfKiGvxts.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hind Siliguri", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-siliguri/hind-siliguri-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRCf_4uEfKiGvxts.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hind Siliguri", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-siliguri/hind-siliguri-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-siliguri/hind-siliguri.svg" - }, - { - "name": "Hind Vadodara", - "fontFamily": "Hind Vadodara, sans-serif", - "slug": "hind-vadodara", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSDn3iXM0oSOL2Yw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hind Vadodara", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-vadodara/hind-vadodara-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hindvadodara/v13/neINzCKvrIcn5pbuuuriV9tTcJXfrXsfvSo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hind Vadodara", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-vadodara/hind-vadodara-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSGH2iXM0oSOL2Yw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hind Vadodara", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-vadodara/hind-vadodara-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSE3xiXM0oSOL2Yw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hind Vadodara", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-vadodara/hind-vadodara-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSCnwiXM0oSOL2Yw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hind Vadodara", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-vadodara/hind-vadodara-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hind-vadodara/hind-vadodara.svg" - }, - { - "name": "Holtwood One SC", - "fontFamily": "Holtwood One SC, serif", - "slug": "holtwood-one-sc", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/holtwoodonesc/v20/yYLx0hLR0P-3vMFSk1TCq3Txg5B3cbb6LZttyg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Holtwood One SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/holtwood-one-sc/holtwood-one-sc-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/holtwood-one-sc/holtwood-one-sc.svg" - }, - { - "name": "Homemade Apple", - "fontFamily": "Homemade Apple, cursive", - "slug": "homemade-apple", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/homemadeapple/v22/Qw3EZQFXECDrI2q789EKQZJob3x9Vnksi4M7.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Homemade Apple", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/homemade-apple/homemade-apple-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/homemade-apple/homemade-apple.svg" - }, - { - "name": "Homenaje", - "fontFamily": "Homenaje, sans-serif", - "slug": "homenaje", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/homenaje/v16/FwZY7-Q-xVAi_l-6Ld6A4sijpFu_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Homenaje", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/homenaje/homenaje-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/homenaje/homenaje.svg" - }, - { - "name": "Hubballi", - "fontFamily": "Hubballi, sans-serif", - "slug": "hubballi", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hubballi/v7/o-0JIpUj3WIZ1RFN56B7yBBNYuSF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hubballi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hubballi/hubballi-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hubballi/hubballi.svg" - }, - { - "name": "Hurricane", - "fontFamily": "Hurricane, cursive", - "slug": "hurricane", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/hurricane/v7/pe0sMIuULZxTolZ5YldyAv2-C99ycg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hurricane", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hurricane/hurricane-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/hurricane/hurricane.svg" - }, - { - "name": "IBM Plex Mono", - "fontFamily": "IBM Plex Mono, monospace", - "slug": "ibm-plex-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexmono/v19/-F6pfjptAgt5VM-kVkqdyU8n3kwq0n1hj-sNFQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-mono/ibm-plex-mono-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexmono/v19/-F6rfjptAgt5VM-kVkqdyU8n1ioStndlre4dFcFh.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "IBM Plex Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-mono/ibm-plex-mono-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3uAL8ldPg-IUDNg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-mono/ibm-plex-mono-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSGlZFh8ARHNh4zg.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "IBM Plex Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-mono/ibm-plex-mono-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3oQI8ldPg-IUDNg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-mono/ibm-plex-mono-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSflVFh8ARHNh4zg.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "IBM Plex Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-mono/ibm-plex-mono-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexmono/v19/-F63fjptAgt5VM-kVkqdyU8n5igg1l9kn-s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-mono/ibm-plex-mono-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexmono/v19/-F6pfjptAgt5VM-kVkqdyU8n1ioq0n1hj-sNFQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IBM Plex Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-mono/ibm-plex-mono-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3twJ8ldPg-IUDNg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-mono/ibm-plex-mono-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSJlRFh8ARHNh4zg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "IBM Plex Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-mono/ibm-plex-mono-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3vAO8ldPg-IUDNg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-mono/ibm-plex-mono-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSClNFh8ARHNh4zg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "IBM Plex Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-mono/ibm-plex-mono-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3pQP8ldPg-IUDNg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-mono/ibm-plex-mono-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSblJFh8ARHNh4zg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "IBM Plex Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-mono/ibm-plex-mono-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-mono/ibm-plex-mono.svg" - }, - { - "name": "IBM Plex Sans", - "fontFamily": "IBM Plex Sans, sans-serif", - "slug": "ibm-plex-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKjbLeEKxIedbzDw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans/ibm-plex-sans-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsans/v19/zYX8KVElMYYaJe8bpLHnCwDKhdTmdKZMW9PjD3N8.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans/ibm-plex-sans-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjR7_MIZmdd_qFmo.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans/ibm-plex-sans-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTm2Idscf3vBmpl8A.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans/ibm-plex-sans-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjXr8MIZmdd_qFmo.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans/ibm-plex-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRscf3vBmpl8A.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans/ibm-plex-sans-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsans/v19/zYXgKVElMYYaJe8bpLHnCwDKtdbUFI5NadY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans/ibm-plex-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKhdTeEKxIedbzDw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans/ibm-plex-sans-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjSL9MIZmdd_qFmo.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans/ibm-plex-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTm5IVscf3vBmpl8A.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans/ibm-plex-sans-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjQ76MIZmdd_qFmo.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans/ibm-plex-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJscf3vBmpl8A.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans/ibm-plex-sans-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjWr7MIZmdd_qFmo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans/ibm-plex-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINscf3vBmpl8A.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans/ibm-plex-sans-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans/ibm-plex-sans.svg" - }, - { - "name": "IBM Plex Sans Arabic", - "fontFamily": "IBM Plex Sans Arabic, sans-serif", - "slug": "ibm-plex-sans-arabic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3MZRtWPQCuHme67tEYUIx3Kh0PHR9N6YNe3PC5eMlAMg0.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-arabic/ibm-plex-sans-arabic-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPy_dCTVsVJKxTs.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-arabic/ibm-plex-sans-arabic-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOW_tCTVsVJKxTs.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-arabic/ibm-plex-sans-arabic-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3CZRtWPQCuHme67tEYUIx3Kh0PHR9N6bs61vSbfdlA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-arabic/ibm-plex-sans-arabic-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPO_9CTVsVJKxTs.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-arabic/ibm-plex-sans-arabic-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPi-NCTVsVJKxTs.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-arabic/ibm-plex-sans-arabic-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOG-dCTVsVJKxTs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-arabic/ibm-plex-sans-arabic-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-arabic/ibm-plex-sans-arabic.svg" - }, - { - "name": "IBM Plex Sans Condensed", - "fontFamily": "IBM Plex Sans Condensed, sans-serif", - "slug": "ibm-plex-sans-condensed", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY7KyKvBgYsMDhM.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8hN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8M_LhakJHhOgBg.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5m6Yvrr4cFFwq5.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8GPqpYMnEhq5H1w.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4C6ovrr4cFFwq5.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8AfppYMnEhq5H1w.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbauwq_jhJsM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYasyKvBgYsMDhM.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5a64vrr4cFFwq5.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8F_opYMnEhq5H1w.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY527Ivrr4cFFwq5.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8HPvpYMnEhq5H1w.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4S7Yvrr4cFFwq5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8BfupYMnEhq5H1w.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-condensed/ibm-plex-sans-condensed.svg" - }, - { - "name": "IBM Plex Sans Devanagari", - "fontFamily": "IBM Plex Sans Devanagari, sans-serif", - "slug": "ibm-plex-sans-devanagari", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXB3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HMUjwUcjwCEQq.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-devanagari/ibm-plex-sans-devanagari-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HnWnQe-b8AV0z0w.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-devanagari/ibm-plex-sans-devanagari-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H-WrQe-b8AV0z0w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-devanagari/ibm-plex-sans-devanagari-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXH3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O__VUL0c83gCA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-devanagari/ibm-plex-sans-devanagari-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HoWvQe-b8AV0z0w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-devanagari/ibm-plex-sans-devanagari-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HjWzQe-b8AV0z0w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-devanagari/ibm-plex-sans-devanagari-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H6W3Qe-b8AV0z0w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-devanagari/ibm-plex-sans-devanagari-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-devanagari/ibm-plex-sans-devanagari.svg" - }, - { - "name": "IBM Plex Sans Hebrew", - "fontFamily": "IBM Plex Sans Hebrew, sans-serif", - "slug": "ibm-plex-sans-hebrew", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa4qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEXB-l0VqDaM7C4.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-hebrew/ibm-plex-sans-hebrew-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVt230_hjqF9Tc2.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-hebrew/ibm-plex-sans-hebrew-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUJ2H0_hjqF9Tc2.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-hebrew/ibm-plex-sans-hebrew-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa2qYENg9Kw1mpLpO0bGM5lfHAAZHhDXH2l8Fk3rSaM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-hebrew/ibm-plex-sans-hebrew-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVR2X0_hjqF9Tc2.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-hebrew/ibm-plex-sans-hebrew-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEV93n0_hjqF9Tc2.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-hebrew/ibm-plex-sans-hebrew-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUZ330_hjqF9Tc2.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-hebrew/ibm-plex-sans-hebrew-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-hebrew/ibm-plex-sans-hebrew.svg" - }, - { - "name": "IBM Plex Sans JP", - "fontFamily": "IBM Plex Sans JP, sans-serif", - "slug": "ibm-plex-sans-jp", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XLDn9KbTDf6_f7dISNqYf_tvPT7E7yjPB7twdmHQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-jp/ibm-plex-sans-jp-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7OLTrNpVuw5_BAM.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-jp/ibm-plex-sans-jp-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7IbQrNpVuw5_BAM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-jp/ibm-plex-sans-jp-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XNDn9KbTDf6_f7dISNqYf_tvPT1Cr4iNJ-pwc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-jp/ibm-plex-sans-jp-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7N7RrNpVuw5_BAM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-jp/ibm-plex-sans-jp-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7PLWrNpVuw5_BAM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-jp/ibm-plex-sans-jp-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7JbXrNpVuw5_BAM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-jp/ibm-plex-sans-jp-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-jp/ibm-plex-sans-jp.svg" - }, - { - "name": "IBM Plex Sans KR", - "fontFamily": "IBM Plex Sans KR, sans-serif", - "slug": "ibm-plex-sans-kr", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFM2-VJISZe3O_rc3ZVYh4aTwNOyra_X5zCpMrMfA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-kr/ibm-plex-sans-kr-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyhqef7bsqMPVZb4.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-kr/ibm-plex-sans-kr-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyn6df7bsqMPVZb4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-kr/ibm-plex-sans-kr-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFK2-VJISZe3O_rc3ZVYh4aTwNO8tK1W77HtMo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-kr/ibm-plex-sans-kr-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyiacf7bsqMPVZb4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-kr/ibm-plex-sans-kr-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOygqbf7bsqMPVZb4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-kr/ibm-plex-sans-kr-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOym6af7bsqMPVZb4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-kr/ibm-plex-sans-kr-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-kr/ibm-plex-sans-kr.svg" - }, - { - "name": "IBM Plex Sans Thai", - "fontFamily": "IBM Plex Sans Thai, sans-serif", - "slug": "ibm-plex-sans-thai", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JNje1VVIzcq1HzJq2AEdo2Tj_qvLqEatYlR8ZKUqcX.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-thai/ibm-plex-sans-thai-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqExvcFbehGW74OXw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-thai/ibm-plex-sans-thai-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEovQFbehGW74OXw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-thai/ibm-plex-sans-thai-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JPje1VVIzcq1HzJq2AEdo2Tj_qvLq8DtwhZcNaUg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-thai/ibm-plex-sans-thai-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE-vUFbehGW74OXw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-thai/ibm-plex-sans-thai-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE1vIFbehGW74OXw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-thai/ibm-plex-sans-thai-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEsvMFbehGW74OXw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-thai/ibm-plex-sans-thai-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-thai/ibm-plex-sans-thai.svg" - }, - { - "name": "IBM Plex Sans Thai Looped", - "fontFamily": "IBM Plex Sans Thai Looped, sans-serif", - "slug": "ibm-plex-sans-thai-looped", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss5AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_HaKpHOtFCQ76Q.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-thai-looped/ibm-plex-sans-thai-looped-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_NqrhFmDGC0i8Cc.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-thai-looped/ibm-plex-sans-thai-looped-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_L6ohFmDGC0i8Cc.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-thai-looped/ibm-plex-sans-thai-looped-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss_AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30LxBKAoFGoBCQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-thai-looped/ibm-plex-sans-thai-looped-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_OaphFmDGC0i8Cc.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-thai-looped/ibm-plex-sans-thai-looped-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_MquhFmDGC0i8Cc.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-thai-looped/ibm-plex-sans-thai-looped-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_K6vhFmDGC0i8Cc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-thai-looped/ibm-plex-sans-thai-looped-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-sans-thai-looped/ibm-plex-sans-thai-looped.svg" - }, - { - "name": "IBM Plex Serif", - "fontFamily": "IBM Plex Serif, serif", - "slug": "ibm-plex-serif", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexserif/v19/jizBREVNn1dOx-zrZ2X3pZvkTi182zIZj1bIkNo.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-serif/ibm-plex-serif-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexserif/v19/jizHREVNn1dOx-zrZ2X3pZvkTiUa41YTi3TNgNq55w.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "IBM Plex Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-serif/ibm-plex-serif-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3Q-hIzoVrBicOg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-serif/ibm-plex-serif-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4_oyq17jjNOg_oc.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "IBM Plex Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-serif/ibm-plex-serif-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi20-RIzoVrBicOg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-serif/ibm-plex-serif-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa454xq17jjNOg_oc.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "IBM Plex Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-serif/ibm-plex-serif-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexserif/v19/jizDREVNn1dOx-zrZ2X3pZvkThUY0TY7ikbI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-serif/ibm-plex-serif-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexserif/v19/jizBREVNn1dOx-zrZ2X3pZvkTiUa2zIZj1bIkNo.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IBM Plex Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-serif/ibm-plex-serif-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3s-BIzoVrBicOg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-serif/ibm-plex-serif-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa48Ywq17jjNOg_oc.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "IBM Plex Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-serif/ibm-plex-serif-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3A_xIzoVrBicOg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-serif/ibm-plex-serif-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4-o3q17jjNOg_oc.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "IBM Plex Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-serif/ibm-plex-serif-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi2k_hIzoVrBicOg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-serif/ibm-plex-serif-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4442q17jjNOg_oc.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "IBM Plex Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-serif/ibm-plex-serif-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibm-plex-serif/ibm-plex-serif.svg" - }, - { - "name": "IM Fell DW Pica", - "fontFamily": "IM Fell DW Pica, serif", - "slug": "im-fell-dw-pica", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imfelldwpica/v16/2sDGZGRQotv9nbn2qSl0TxXVYNw9ZAPUvi88MQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell DW Pica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-dw-pica/im-fell-dw-pica-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imfelldwpica/v16/2sDEZGRQotv9nbn2qSl0TxXVYNwNZgnQnCosMXm0.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IM Fell DW Pica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-dw-pica/im-fell-dw-pica-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-dw-pica/im-fell-dw-pica.svg" - }, - { - "name": "IM Fell DW Pica SC", - "fontFamily": "IM Fell DW Pica SC, serif", - "slug": "im-fell-dw-pica-sc", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imfelldwpicasc/v21/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW-BiKEUiBGA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell DW Pica SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-dw-pica-sc/im-fell-dw-pica-sc-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-dw-pica-sc/im-fell-dw-pica-sc.svg" - }, - { - "name": "IM Fell Double Pica", - "fontFamily": "IM Fell Double Pica, serif", - "slug": "im-fell-double-pica", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imfelldoublepica/v14/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0S1UL5Ayp0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell Double Pica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-double-pica/im-fell-double-pica-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imfelldoublepica/v14/3XF0EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0a_VJxF2p2G8g.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IM Fell Double Pica", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-double-pica/im-fell-double-pica-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-double-pica/im-fell-double-pica.svg" - }, - { - "name": "IM Fell Double Pica SC", - "fontFamily": "IM Fell Double Pica SC, serif", - "slug": "im-fell-double-pica-sc", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imfelldoublepicasc/v21/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4Y0Eeru2dGg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell Double Pica SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-double-pica-sc/im-fell-double-pica-sc-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-double-pica-sc/im-fell-double-pica-sc.svg" - }, - { - "name": "IM Fell English", - "fontFamily": "IM Fell English, serif", - "slug": "im-fell-english", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imfellenglish/v14/Ktk1ALSLW8zDe0rthJysWrnLsAz3F6mZVY9Y5w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell English", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-english/im-fell-english-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imfellenglish/v14/Ktk3ALSLW8zDe0rthJysWrnLsAzHFaOdd4pI59zg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IM Fell English", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-english/im-fell-english-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-english/im-fell-english.svg" - }, - { - "name": "IM Fell English SC", - "fontFamily": "IM Fell English SC, serif", - "slug": "im-fell-english-sc", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imfellenglishsc/v16/a8IENpD3CDX-4zrWfr1VY879qFF05pZLO4gOg0shzA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell English SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-english-sc/im-fell-english-sc-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-english-sc/im-fell-english-sc.svg" - }, - { - "name": "IM Fell French Canon", - "fontFamily": "IM Fell French Canon, serif", - "slug": "im-fell-french-canon", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coVPt1ozoPz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell French Canon", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-french-canon/im-fell-french-canon-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6gfiNtDWYfYc-tDiyiw08rrghJszkK6foXNNlKy5PzzrU.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IM Fell French Canon", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-french-canon/im-fell-french-canon-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-french-canon/im-fell-french-canon.svg" - }, - { - "name": "IM Fell French Canon SC", - "fontFamily": "IM Fell French Canon SC, serif", - "slug": "im-fell-french-canon-sc", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imfellfrenchcanonsc/v22/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3c0UBCVIVqH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell French Canon SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-french-canon-sc/im-fell-french-canon-sc-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-french-canon-sc/im-fell-french-canon-sc.svg" - }, - { - "name": "IM Fell Great Primer", - "fontFamily": "IM Fell Great Primer, serif", - "slug": "im-fell-great-primer", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorXvDo3SQY1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell Great Primer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-great-primer/im-fell-great-primer-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6UNwSJtayYxOkbYFsT6hMsLzX7u85rJrrVtj4VTBY1N6U.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IM Fell Great Primer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-great-primer/im-fell-great-primer-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-great-primer/im-fell-great-primer.svg" - }, - { - "name": "IM Fell Great Primer SC", - "fontFamily": "IM Fell Great Primer SC, serif", - "slug": "im-fell-great-primer-sc", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imfellgreatprimersc/v21/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf9BXz0s8FG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell Great Primer SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-great-primer-sc/im-fell-great-primer-sc-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/im-fell-great-primer-sc/im-fell-great-primer-sc.svg" - }, - { - "name": "Ibarra Real Nova", - "fontFamily": "Ibarra Real Nova, serif", - "slug": "ibarra-real-nova", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibarrarealnova/v27/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdg5MDtVT9TWIvS.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ibarra Real Nova", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibarra-real-nova/ibarra-real-nova-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibarrarealnova/v27/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdS5MDtVT9TWIvS.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Ibarra Real Nova", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibarra-real-nova/ibarra-real-nova-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibarrarealnova/v27/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXe-48DtVT9TWIvS.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Ibarra Real Nova", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibarra-real-nova/ibarra-real-nova-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibarrarealnova/v27/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXeH48DtVT9TWIvS.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Ibarra Real Nova", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibarra-real-nova/ibarra-real-nova-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibarrarealnova/v27/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopyiuXztxXZvSkTo.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Ibarra Real Nova", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibarra-real-nova/ibarra-real-nova-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibarrarealnova/v27/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopxquXztxXZvSkTo.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Ibarra Real Nova", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibarra-real-nova/ibarra-real-nova-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibarrarealnova/v27/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop_apXztxXZvSkTo.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Ibarra Real Nova", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibarra-real-nova/ibarra-real-nova-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ibarrarealnova/v27/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop8-pXztxXZvSkTo.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Ibarra Real Nova", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibarra-real-nova/ibarra-real-nova-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ibarra-real-nova/ibarra-real-nova.svg" - }, - { - "name": "Iceberg", - "fontFamily": "Iceberg, system-ui", - "slug": "iceberg", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/iceberg/v24/8QIJdijAiM7o-qnZuIgOq7jkAOw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Iceberg", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/iceberg/iceberg-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/iceberg/iceberg.svg" - }, - { - "name": "Iceland", - "fontFamily": "Iceland, system-ui", - "slug": "iceland", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/iceland/v20/rax9HiuFsdMNOnWPWKxGADBbg0s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Iceland", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/iceland/iceland-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/iceland/iceland.svg" - }, - { - "name": "Imbue", - "fontFamily": "Imbue, serif", - "slug": "imbue", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imbue/v26/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iWfOsNNK-Q4xY.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Imbue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/imbue/imbue-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imbue/v26/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iXfOsNNK-Q4xY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Imbue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/imbue/imbue-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imbue/v26/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP5aXfOsNNK-Q4xY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Imbue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/imbue/imbue-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imbue/v26/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iXfOsNNK-Q4xY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Imbue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/imbue/imbue-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imbue/v26/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP_qXfOsNNK-Q4xY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Imbue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/imbue/imbue-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imbue/v26/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPxaQfOsNNK-Q4xY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Imbue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/imbue/imbue-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imbue/v26/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPy-QfOsNNK-Q4xY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Imbue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/imbue/imbue-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imbue/v26/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iQfOsNNK-Q4xY.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Imbue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/imbue/imbue-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imbue/v26/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP2GQfOsNNK-Q4xY.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Imbue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/imbue/imbue-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/imbue/imbue.svg" - }, - { - "name": "Imperial Script", - "fontFamily": "Imperial Script, cursive", - "slug": "imperial-script", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imperialscript/v6/5DCPAKrpzy_H98IV2ISnZBbGrVNvPenlvttWNg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Imperial Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/imperial-script/imperial-script-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/imperial-script/imperial-script.svg" - }, - { - "name": "Imprima", - "fontFamily": "Imprima, sans-serif", - "slug": "imprima", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/imprima/v18/VEMxRoN7sY3yuy-7-oWHyDzktPo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Imprima", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/imprima/imprima-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/imprima/imprima.svg" - }, - { - "name": "Inconsolata", - "fontFamily": "Inconsolata, monospace", - "slug": "inconsolata", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU8aRr8lleY2co.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Inconsolata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inconsolata/inconsolata-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp9s8aRr8lleY2co.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Inconsolata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inconsolata/inconsolata-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8aRr8lleY2co.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inconsolata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inconsolata/inconsolata-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp7c8aRr8lleY2co.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Inconsolata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inconsolata/inconsolata-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp1s7aRr8lleY2co.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Inconsolata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inconsolata/inconsolata-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp2I7aRr8lleY2co.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Inconsolata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inconsolata/inconsolata-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU7aRr8lleY2co.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Inconsolata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inconsolata/inconsolata-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lppyw7aRr8lleY2co.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Inconsolata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inconsolata/inconsolata-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inconsolata/inconsolata.svg" - }, - { - "name": "Inder", - "fontFamily": "Inder, sans-serif", - "slug": "inder", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inder/v14/w8gUH2YoQe8_4vq6pw-P3U4O.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inder", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inder/inder-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inder/inder.svg" - }, - { - "name": "Indie Flower", - "fontFamily": "Indie Flower, cursive", - "slug": "indie-flower", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/indieflower/v21/m8JVjfNVeKWVnh3QMuKkFcZlbkGG1dKEDw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Indie Flower", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/indie-flower/indie-flower-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/indie-flower/indie-flower.svg" - }, - { - "name": "Ingrid Darling", - "fontFamily": "Ingrid Darling, cursive", - "slug": "ingrid-darling", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ingriddarling/v5/LDIrapaJNxUtSuFdw-9yf4rCPsLOub458jGL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ingrid Darling", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ingrid-darling/ingrid-darling-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ingrid-darling/ingrid-darling.svg" - }, - { - "name": "Inika", - "fontFamily": "Inika, serif", - "slug": "inika", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inika/v21/rnCm-x5X3QP-phTHRcc2s2XH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inika", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inika/inika-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inika/v21/rnCr-x5X3QP-pix7auM-mHnOSOuk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Inika", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inika/inika-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inika/inika.svg" - }, - { - "name": "Inknut Antiqua", - "fontFamily": "Inknut Antiqua, serif", - "slug": "inknut-antiqua", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2vwrj5bBoIYJNf.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Inknut Antiqua", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inknut-antiqua/inknut-antiqua-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inknutantiqua/v14/Y4GSYax7VC4ot_qNB4nYpBdaKXUD6pzxRwYB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inknut Antiqua", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inknut-antiqua/inknut-antiqua-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU33w7j5bBoIYJNf.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Inknut Antiqua", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inknut-antiqua/inknut-antiqua-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU3bxLj5bBoIYJNf.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Inknut Antiqua", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inknut-antiqua/inknut-antiqua-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2_xbj5bBoIYJNf.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Inknut Antiqua", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inknut-antiqua/inknut-antiqua-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2jxrj5bBoIYJNf.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Inknut Antiqua", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inknut-antiqua/inknut-antiqua-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2Hx7j5bBoIYJNf.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Inknut Antiqua", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inknut-antiqua/inknut-antiqua-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inknut-antiqua/inknut-antiqua.svg" - }, - { - "name": "Inria Sans", - "fontFamily": "Inria Sans, sans-serif", - "slug": "inria-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3ELaDQtFqeY3fX4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Inria Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inria-sans/inria-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAgQlPrcQybX4pQA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Inria Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inria-sans/inria-sans-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inriasans/v14/ptRMTiqXYfZMCOiVj9kQ5O7yKQNute8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inria Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inria-sans/inria-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inriasans/v14/ptROTiqXYfZMCOiVj9kQ1Oz4LSFrpe8uZA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Inria Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inria-sans/inria-sans-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3FLdDQtFqeY3fX4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Inria Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inria-sans/inria-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAkQ5PrcQybX4pQA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Inria Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inria-sans/inria-sans-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inria-sans/inria-sans.svg" - }, - { - "name": "Inria Serif", - "fontFamily": "Inria Serif, serif", - "slug": "inria-serif", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inriaserif/v16/fC14PYxPY3rXxEndZJAzN3wAVQjFhFyta3xN.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Inria Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inria-serif/inria-serif-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inriaserif/v16/fC16PYxPY3rXxEndZJAzN3SuT4THjliPbmxN0_E.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Inria Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inria-serif/inria-serif-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inriaserif/v16/fC1lPYxPY3rXxEndZJAzN0SsfSzNr0Ck.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inria Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inria-serif/inria-serif-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inriaserif/v16/fC1nPYxPY3rXxEndZJAzN3SudyjvqlCkcmU.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Inria Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inria-serif/inria-serif-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inriaserif/v16/fC14PYxPY3rXxEndZJAzN3wQUgjFhFyta3xN.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Inria Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inria-serif/inria-serif-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inriaserif/v16/fC16PYxPY3rXxEndZJAzN3SuT5TAjliPbmxN0_E.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Inria Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inria-serif/inria-serif-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inria-serif/inria-serif.svg" - }, - { - "name": "Inspiration", - "fontFamily": "Inspiration, cursive", - "slug": "inspiration", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inspiration/v6/x3dkckPPZa6L4wIg5cZOEvoGnSrlBBsy.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inspiration", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inspiration/inspiration-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inspiration/inspiration.svg" - }, - { - "name": "Instrument Sans", - "fontFamily": "Instrument Sans, sans-serif", - "slug": "instrument-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-Qf1mS0v3_7Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Instrument Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/instrument-sans/instrument-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npST3-Qf1mS0v3_7Y.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Instrument Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/instrument-sans/instrument-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQb_gf1mS0v3_7Y.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Instrument Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/instrument-sans/instrument-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gf1mS0v3_7Y.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Instrument Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/instrument-sans/instrument-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENuu-2kykN2u7YUwU.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Instrument Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/instrument-sans/instrument-sans-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENut22kykN2u7YUwU.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Instrument Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/instrument-sans/instrument-sans-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENujGxkykN2u7YUwU.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Instrument Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/instrument-sans/instrument-sans-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENugixkykN2u7YUwU.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Instrument Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/instrument-sans/instrument-sans-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/instrument-sans/instrument-sans.svg" - }, - { - "name": "Instrument Serif", - "fontFamily": "Instrument Serif, serif", - "slug": "instrument-serif", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/instrumentserif/v4/jizBRFtNs2ka5fXjeivQ4LroWlx-2zIZj1bIkNo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Instrument Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/instrument-serif/instrument-serif-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/instrumentserif/v4/jizHRFtNs2ka5fXjeivQ4LroWlx-6zATi3TNgNq55w.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Instrument Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/instrument-serif/instrument-serif-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/instrument-serif/instrument-serif.svg" - }, - { - "name": "Inter", - "fontFamily": "Inter, sans-serif", - "slug": "inter", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyeMZhrib2Bg-4.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Inter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter/inter-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyfMZhrib2Bg-4.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Inter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter/inter-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZhrib2Bg-4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Inter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter/inter-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZhrib2Bg-4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter/inter-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Inter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter/inter-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Inter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter/inter-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Inter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter/inter-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyYMZhrib2Bg-4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Inter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter/inter-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuBWYMZhrib2Bg-4.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Inter", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter/inter-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter/inter.svg" - }, - { - "name": "Inter Tight", - "fontFamily": "Inter Tight, sans-serif", - "slug": "inter-tight", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw6qXCRToK8EPg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Inter Tight", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter-tight/inter-tight-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjw-qXCRToK8EPg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Inter Tight", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter-tight/inter-tight-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjUQ-qXCRToK8EPg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Inter Tight", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter-tight/inter-tight-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qXCRToK8EPg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inter Tight", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter-tight/inter-tight-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qXCRToK8EPg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Inter Tight", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter-tight/inter-tight-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqXCRToK8EPg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Inter Tight", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter-tight/inter-tight-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj6AiqXCRToK8EPg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Inter Tight", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter-tight/inter-tight-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjwiqXCRToK8EPg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Inter Tight", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter-tight/inter-tight-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjpgiqXCRToK8EPg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Inter Tight", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter-tight/inter-tight-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHi5XgqoUPvi5.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Inter Tight", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter-tight/inter-tight-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCHy5XgqoUPvi5.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Inter Tight", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter-tight/inter-tight-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0wcHy5XgqoUPvi5.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Inter Tight", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter-tight/inter-tight-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHy5XgqoUPvi5.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Inter Tight", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter-tight/inter-tight-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xwHy5XgqoUPvi5.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Inter Tight", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter-tight/inter-tight-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ycGC5XgqoUPvi5.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Inter Tight", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter-tight/inter-tight-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ylGC5XgqoUPvi5.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Inter Tight", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter-tight/inter-tight-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCGC5XgqoUPvi5.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Inter Tight", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter-tight/inter-tight-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zrGC5XgqoUPvi5.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Inter Tight", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter-tight/inter-tight-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/inter-tight/inter-tight.svg" - }, - { - "name": "Irish Grover", - "fontFamily": "Irish Grover, system-ui", - "slug": "irish-grover", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/irishgrover/v23/buExpoi6YtLz2QW7LA4flVgf-P5Oaiw4cw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Irish Grover", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/irish-grover/irish-grover-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/irish-grover/irish-grover.svg" - }, - { - "name": "Island Moments", - "fontFamily": "Island Moments, cursive", - "slug": "island-moments", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/islandmoments/v6/NaPBcZfVGvBdxIt7Ar0qzkXJF-TGIohbZ6SY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Island Moments", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/island-moments/island-moments-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/island-moments/island-moments.svg" - }, - { - "name": "Istok Web", - "fontFamily": "Istok Web, sans-serif", - "slug": "istok-web", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/istokweb/v24/3qTvojGmgSyUukBzKslZAWF-9kIIaQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Istok Web", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/istok-web/istok-web-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/istokweb/v24/3qTpojGmgSyUukBzKslpA2t61EcYaQ7F.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Istok Web", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/istok-web/istok-web-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/istokweb/v24/3qTqojGmgSyUukBzKslhvU5a_mkUYBfcMw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Istok Web", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/istok-web/istok-web-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/istokweb/v24/3qT0ojGmgSyUukBzKslpA1PG-2MQQhLMMygN.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Istok Web", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/istok-web/istok-web-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/istok-web/istok-web.svg" - }, - { - "name": "Italiana", - "fontFamily": "Italiana, serif", - "slug": "italiana", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/italiana/v20/QldNNTtLsx4E__B0XTmRY31Wx7Vv.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Italiana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/italiana/italiana-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/italiana/italiana.svg" - }, - { - "name": "Italianno", - "fontFamily": "Italianno, cursive", - "slug": "italianno", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/italianno/v17/dg4n_p3sv6gCJkwzT6Rnj5YpQwM-gg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Italianno", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/italianno/italianno-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/italianno/italianno.svg" - }, - { - "name": "Itim", - "fontFamily": "Itim, cursive", - "slug": "itim", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/itim/v14/0nknC9ziJOYewARKkc7ZdwU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Itim", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/itim/itim-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/itim/itim.svg" - }, - { - "name": "Jacques Francois", - "fontFamily": "Jacques Francois, serif", - "slug": "jacques-francois", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jacquesfrancois/v24/ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcPqoeRWfbs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jacques Francois", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jacques-francois/jacques-francois-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jacques-francois/jacques-francois.svg" - }, - { - "name": "Jacques Francois Shadow", - "fontFamily": "Jacques Francois Shadow, system-ui", - "slug": "jacques-francois-shadow", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jacquesfrancoisshadow/v25/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8VsHuV5ULS.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jacques Francois Shadow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jacques-francois-shadow/jacques-francois-shadow-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jacques-francois-shadow/jacques-francois-shadow.svg" - }, - { - "name": "Jaldi", - "fontFamily": "Jaldi, sans-serif", - "slug": "jaldi", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jaldi/v12/or3sQ67z0_CI30NUZpD_B6g8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jaldi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jaldi/jaldi-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jaldi/v12/or3hQ67z0_CI33voSbT3LLQ1niPn.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Jaldi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jaldi/jaldi-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jaldi/jaldi.svg" - }, - { - "name": "JetBrains Mono", - "fontFamily": "JetBrains Mono, monospace", - "slug": "jetbrains-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yK1jPVmUsaaDhw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jetbrains-mono/jetbrains-mono-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKxjPVmUsaaDhw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jetbrains-mono/jetbrains-mono-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8lqxjPVmUsaaDhw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jetbrains-mono/jetbrains-mono-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjPVmUsaaDhw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jetbrains-mono/jetbrains-mono-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8-qxjPVmUsaaDhw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jetbrains-mono/jetbrains-mono-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8FqtjPVmUsaaDhw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jetbrains-mono/jetbrains-mono-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tjPVmUsaaDhw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jetbrains-mono/jetbrains-mono-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKtjPVmUsaaDhw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jetbrains-mono/jetbrains-mono-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-Lf1OQk6OThxPA.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jetbrains-mono/jetbrains-mono-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LflOQk6OThxPA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jetbrains-mono/jetbrains-mono-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO_VflOQk6OThxPA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jetbrains-mono/jetbrains-mono-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-LflOQk6OThxPA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jetbrains-mono/jetbrains-mono-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-5flOQk6OThxPA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jetbrains-mono/jetbrains-mono-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9VeVOQk6OThxPA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jetbrains-mono/jetbrains-mono-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9seVOQk6OThxPA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jetbrains-mono/jetbrains-mono-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LeVOQk6OThxPA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jetbrains-mono/jetbrains-mono-800-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jetbrains-mono/jetbrains-mono.svg" - }, - { - "name": "Jim Nightshade", - "fontFamily": "Jim Nightshade, cursive", - "slug": "jim-nightshade", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jimnightshade/v20/PlIkFlu9Pb08Q8HLM1PxmB0g-OS4V3qKaMxD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jim Nightshade", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jim-nightshade/jim-nightshade-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jim-nightshade/jim-nightshade.svg" - }, - { - "name": "Joan", - "fontFamily": "Joan, serif", - "slug": "joan", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/joan/v9/ZXupe1oZsqWRbRdH8X1p_Ng.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Joan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/joan/joan-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/joan/joan.svg" - }, - { - "name": "Jockey One", - "fontFamily": "Jockey One, sans-serif", - "slug": "jockey-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jockeyone/v21/HTxpL2g2KjCFj4x8WI6ArIb7HYOk4xc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jockey One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jockey-one/jockey-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jockey-one/jockey-one.svg" - }, - { - "name": "Jolly Lodger", - "fontFamily": "Jolly Lodger, system-ui", - "slug": "jolly-lodger", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jollylodger/v20/BXRsvFTAh_bGkA1uQ48dlB3VWerT3ZyuqA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jolly Lodger", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jolly-lodger/jolly-lodger-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jolly-lodger/jolly-lodger.svg" - }, - { - "name": "Jomhuria", - "fontFamily": "Jomhuria, system-ui", - "slug": "jomhuria", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jomhuria/v20/Dxxp8j-TMXf-llKur2b1MOGbC3Dh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jomhuria", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jomhuria/jomhuria-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jomhuria/jomhuria.svg" - }, - { - "name": "Jomolhari", - "fontFamily": "Jomolhari, serif", - "slug": "jomolhari", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jomolhari/v18/EvONzA1M1Iw_CBd2hsQCF1IZKq5INg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jomolhari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jomolhari/jomolhari-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jomolhari/jomolhari.svg" - }, - { - "name": "Josefin Sans", - "fontFamily": "Josefin Sans, sans-serif", - "slug": "josefin-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinsans/v32/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjRXMFrLgTsQV0.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Josefin Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-sans/josefin-sans-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinsans/v32/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_LjQXMFrLgTsQV0.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Josefin Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-sans/josefin-sans-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinsans/v32/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_GbQXMFrLgTsQV0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Josefin Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-sans/josefin-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinsans/v32/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjQXMFrLgTsQV0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Josefin Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-sans/josefin-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinsans/v32/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ArQXMFrLgTsQV0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Josefin Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-sans/josefin-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinsans/v32/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ObXXMFrLgTsQV0.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Josefin Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-sans/josefin-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinsans/v32/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_N_XXMFrLgTsQV0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Josefin Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-sans/josefin-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinsans/v32/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtINhKibpUV3MEQ.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Josefin Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-sans/josefin-sans-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinsans/v32/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTNIJhKibpUV3MEQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Josefin Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-sans/josefin-sans-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinsans/v32/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCT6oJhKibpUV3MEQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Josefin Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-sans/josefin-sans-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinsans/v32/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtIJhKibpUV3MEQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Josefin Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-sans/josefin-sans-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinsans/v32/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCThoJhKibpUV3MEQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Josefin Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-sans/josefin-sans-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinsans/v32/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTaoVhKibpUV3MEQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Josefin Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-sans/josefin-sans-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinsans/v32/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTU4VhKibpUV3MEQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Josefin Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-sans/josefin-sans-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-sans/josefin-sans.svg" - }, - { - "name": "Josefin Slab", - "fontFamily": "Josefin Slab, serif", - "slug": "josefin-slab", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinslab/v26/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71mtd3k3K6CcEyI.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Josefin Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-slab/josefin-slab-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinslab/v26/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W79msd3k3K6CcEyI.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Josefin Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-slab/josefin-slab-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinslab/v26/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W7wesd3k3K6CcEyI.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Josefin Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-slab/josefin-slab-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinslab/v26/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71msd3k3K6CcEyI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Josefin Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-slab/josefin-slab-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinslab/v26/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W72usd3k3K6CcEyI.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Josefin Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-slab/josefin-slab-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinslab/v26/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W74erd3k3K6CcEyI.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Josefin Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-slab/josefin-slab-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinslab/v26/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W776rd3k3K6CcEyI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Josefin Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-slab/josefin-slab-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinslab/v26/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzs9L4KZAyK43w.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Josefin Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-slab/josefin-slab-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinslab/v26/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvHzo9L4KZAyK43w.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Josefin Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-slab/josefin-slab-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinslab/v26/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvwTo9L4KZAyK43w.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Josefin Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-slab/josefin-slab-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinslab/v26/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzo9L4KZAyK43w.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Josefin Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-slab/josefin-slab-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinslab/v26/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvrTo9L4KZAyK43w.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Josefin Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-slab/josefin-slab-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinslab/v26/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvQT09L4KZAyK43w.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Josefin Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-slab/josefin-slab-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/josefinslab/v26/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHveD09L4KZAyK43w.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Josefin Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-slab/josefin-slab-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/josefin-slab/josefin-slab.svg" - }, - { - "name": "Jost", - "fontFamily": "Jost, sans-serif", - "slug": "jost", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJAVGPokMmuHL.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Jost", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jost/jost-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwjJQVGPokMmuHL.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Jost", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jost/jost-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mz9JQVGPokMmuHL.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Jost", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jost/jost-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJQVGPokMmuHL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jost", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jost/jost-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myRJQVGPokMmuHL.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Jost", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jost/jost-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mx9IgVGPokMmuHL.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Jost", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jost/jost-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mxEIgVGPokMmuHL.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Jost", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jost/jost-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwjIgVGPokMmuHL.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Jost", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jost/jost-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwKIgVGPokMmuHL.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Jost", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jost/jost-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0ENI0un_HLMEo.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Jost", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jost/jost-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0FNI0un_HLMEo.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Jost", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jost/jost-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZrMFNI0un_HLMEo.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Jost", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jost/jost-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0FNI0un_HLMEo.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Jost", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jost/jost-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZt8FNI0un_HLMEo.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Jost", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jost/jost-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZjMCNI0un_HLMEo.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Jost", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jost/jost-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZgoCNI0un_HLMEo.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Jost", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jost/jost-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0CNI0un_HLMEo.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Jost", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jost/jost-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZkQCNI0un_HLMEo.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Jost", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jost/jost-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jost/jost.svg" - }, - { - "name": "Joti One", - "fontFamily": "Joti One, system-ui", - "slug": "joti-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jotione/v26/Z9XVDmdJQAmWm9TwaYTe4u2El6GC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Joti One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/joti-one/joti-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/joti-one/joti-one.svg" - }, - { - "name": "Jua", - "fontFamily": "Jua, sans-serif", - "slug": "jua", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jua/v15/co3KmW9ljjAjc-DZCsKgsg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jua", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jua/jua-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jua/jua.svg" - }, - { - "name": "Judson", - "fontFamily": "Judson, serif", - "slug": "judson", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/judson/v19/FeVRS0Fbvbc14VxRD7N01bV7kg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Judson", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/judson/judson-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/judson/v19/FeVTS0Fbvbc14VxhDblw97BrknZf.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Judson", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/judson/judson-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/judson/v19/FeVSS0Fbvbc14Vxps5xQ3Z5nm29Gww.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Judson", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/judson/judson-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/judson/judson.svg" - }, - { - "name": "Julee", - "fontFamily": "Julee, cursive", - "slug": "julee", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/julee/v25/TuGfUVB3RpZPQ6ZLodgzydtk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Julee", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/julee/julee-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/julee/julee.svg" - }, - { - "name": "Julius Sans One", - "fontFamily": "Julius Sans One, sans-serif", - "slug": "julius-sans-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/juliussansone/v18/1Pt2g8TAX_SGgBGUi0tGOYEga5W-xXEW6aGXHw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Julius Sans One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/julius-sans-one/julius-sans-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/julius-sans-one/julius-sans-one.svg" - }, - { - "name": "Junge", - "fontFamily": "Junge, serif", - "slug": "junge", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/junge/v24/gokgH670Gl1lUqAdvhB7SnKm.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Junge", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/junge/junge-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/junge/junge.svg" - }, - { - "name": "Jura", - "fontFamily": "Jura, sans-serif", - "slug": "jura", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jura/v31/z7NOdRfiaC4Vd8hhoPzfb5vBTP0D7auhTfmrH_rt.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Jura", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jura/jura-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jura/v31/z7NOdRfiaC4Vd8hhoPzfb5vBTP1d7auhTfmrH_rt.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jura", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jura/jura-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jura/v31/z7NOdRfiaC4Vd8hhoPzfb5vBTP1v7auhTfmrH_rt.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Jura", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jura/jura-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jura/v31/z7NOdRfiaC4Vd8hhoPzfb5vBTP2D6quhTfmrH_rt.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Jura", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jura/jura-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/jura/v31/z7NOdRfiaC4Vd8hhoPzfb5vBTP266quhTfmrH_rt.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Jura", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jura/jura-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/jura/jura.svg" - }, - { - "name": "Just Another Hand", - "fontFamily": "Just Another Hand, cursive", - "slug": "just-another-hand", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/justanotherhand/v19/845CNN4-AJyIGvIou-6yJKyptyOpOcr_BmmlS5aw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Just Another Hand", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/just-another-hand/just-another-hand-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/just-another-hand/just-another-hand.svg" - }, - { - "name": "Just Me Again Down Here", - "fontFamily": "Just Me Again Down Here, cursive", - "slug": "just-me-again-down-here", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/justmeagaindownhere/v24/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwHvqDwc_fg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Just Me Again Down Here", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/just-me-again-down-here/just-me-again-down-here-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/just-me-again-down-here/just-me-again-down-here.svg" - }, - { - "name": "K2D", - "fontFamily": "K2D, sans-serif", - "slug": "k2d", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/k2d/v11/J7aRnpF2V0ErE6UpvrIw74NL.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "K2D", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/k2d/k2d-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/k2d/v11/J7afnpF2V0EjdZ1NtLYS6pNLAjk.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "K2D", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/k2d/k2d-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/k2d/v11/J7aenpF2V0Erv4QJlJw85ppSGw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "K2D", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/k2d/k2d-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/k2d/v11/J7acnpF2V0EjdZ3hlZY4xJ9CGyAa.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "K2D", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/k2d/k2d-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/k2d/v11/J7aenpF2V0Er24cJlJw85ppSGw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "K2D", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/k2d/k2d-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/k2d/v11/J7acnpF2V0EjdZ2FlpY4xJ9CGyAa.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "K2D", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/k2d/k2d-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/k2d/v11/J7aTnpF2V0ETd68tnLcg7w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "K2D", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/k2d/k2d-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/k2d/v11/J7aRnpF2V0EjdaUpvrIw74NL.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "K2D", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/k2d/k2d-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/k2d/v11/J7aenpF2V0Erg4YJlJw85ppSGw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "K2D", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/k2d/k2d-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/k2d/v11/J7acnpF2V0EjdZ3dl5Y4xJ9CGyAa.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "K2D", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/k2d/k2d-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/k2d/v11/J7aenpF2V0Err4EJlJw85ppSGw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "K2D", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/k2d/k2d-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/k2d/v11/J7acnpF2V0EjdZ3xkJY4xJ9CGyAa.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "K2D", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/k2d/k2d-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/k2d/v11/J7aenpF2V0Ery4AJlJw85ppSGw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "K2D", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/k2d/k2d-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/k2d/v11/J7acnpF2V0EjdZ2VkZY4xJ9CGyAa.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "K2D", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/k2d/k2d-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/k2d/v11/J7aenpF2V0Er14MJlJw85ppSGw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "K2D", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/k2d/k2d-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/k2d/v11/J7acnpF2V0EjdZ2JkpY4xJ9CGyAa.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "K2D", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/k2d/k2d-800-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/k2d/k2d.svg" - }, - { - "name": "Kablammo", - "fontFamily": "Kablammo, system-ui", - "slug": "kablammo", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kablammo/v1/bWtm7fHPcgrhC-J3lcXhcQTY5Ixs6Au9YgCjjx0Rf4YDKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kablammo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kablammo/kablammo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kablammo/kablammo.svg" - }, - { - "name": "Kadwa", - "fontFamily": "Kadwa, serif", - "slug": "kadwa", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kadwa/v10/rnCm-x5V0g7iphTHRcc2s2XH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kadwa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kadwa/kadwa-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kadwa/v10/rnCr-x5V0g7ipix7auM-mHnOSOuk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kadwa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kadwa/kadwa-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kadwa/kadwa.svg" - }, - { - "name": "Kaisei Decol", - "fontFamily": "Kaisei Decol, serif", - "slug": "kaisei-decol", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kaiseidecol/v8/bMrwmSqP45sidWf3QmfFW6iyW1EP22OjoA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kaisei Decol", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kaisei-decol/kaisei-decol-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iKr3gr00i_qb57kA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kaisei Decol", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kaisei-decol/kaisei-decol-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iK534r00i_qb57kA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kaisei Decol", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kaisei-decol/kaisei-decol-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kaisei-decol/kaisei-decol.svg" - }, - { - "name": "Kaisei HarunoUmi", - "fontFamily": "Kaisei HarunoUmi, serif", - "slug": "kaisei-harunoumi", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_RiZQSLqBQoAHhK_C6N_nzy_jcGsv5sM8u3mk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kaisei HarunoUmi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kaisei-harunoumi/kaisei-harunoumi-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcIj_QlMcFwmC9FAU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kaisei HarunoUmi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kaisei-harunoumi/kaisei-harunoumi-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcInfWlMcFwmC9FAU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kaisei HarunoUmi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kaisei-harunoumi/kaisei-harunoumi-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kaisei-harunoumi/kaisei-harunoumi.svg" - }, - { - "name": "Kaisei Opti", - "fontFamily": "Kaisei Opti, serif", - "slug": "kaisei-opti", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kaiseiopti/v8/QldKNThJphYb8_g6c2nlIFle7KlmxuHx.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kaisei Opti", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kaisei-opti/kaisei-opti-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGGqxY1u7f34DYwn.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kaisei Opti", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kaisei-opti/kaisei-opti-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGHiw41u7f34DYwn.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kaisei Opti", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kaisei-opti/kaisei-opti-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kaisei-opti/kaisei-opti.svg" - }, - { - "name": "Kaisei Tokumin", - "fontFamily": "Kaisei Tokumin, serif", - "slug": "kaisei-tokumin", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8sN5wdZg7xCwuMsylww2ZiQkJf1l0pj946.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kaisei Tokumin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kaisei-tokumin/kaisei-tokumin-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnqr_3khpMIzeI6v.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kaisei Tokumin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kaisei-tokumin/kaisei-tokumin-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnrj-XkhpMIzeI6v.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kaisei Tokumin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kaisei-tokumin/kaisei-tokumin-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnr_-nkhpMIzeI6v.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Kaisei Tokumin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kaisei-tokumin/kaisei-tokumin-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kaisei-tokumin/kaisei-tokumin.svg" - }, - { - "name": "Kalam", - "fontFamily": "Kalam, cursive", - "slug": "kalam", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtD6GgLLmCUItqGt.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kalam/kalam-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kalam/v16/YA9dr0Wd4kDdMuhWMibDszkB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kalam/kalam-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtDqHQLLmCUItqGt.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kalam/kalam-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kalam/kalam.svg" - }, - { - "name": "Kameron", - "fontFamily": "Kameron, serif", - "slug": "kameron", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kameron/v15/vm82dR7vXErQxuznsL4wL-XIYH8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kameron", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kameron/kameron-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kameron/v15/vm8zdR7vXErQxuzniAIfC-3jfHb--NY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kameron", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kameron/kameron-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kameron/kameron.svg" - }, - { - "name": "Kanit", - "fontFamily": "Kanit, sans-serif", - "slug": "kanit", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kanit/v15/nKKX-Go6G5tXcr72GwWKcaxALFs.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Kanit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kanit/kanit-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kanit/v15/nKKV-Go6G5tXcraQI2GAdY5FPFtrGw.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Kanit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kanit/kanit-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kanit/v15/nKKU-Go6G5tXcr5aOiWgX6BJNUJy.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Kanit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kanit/kanit-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kanit/v15/nKKS-Go6G5tXcraQI82hVaRrMFJyAu4.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Kanit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kanit/kanit-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kanit/v15/nKKU-Go6G5tXcr4-OSWgX6BJNUJy.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kanit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kanit/kanit-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kanit/v15/nKKS-Go6G5tXcraQI6miVaRrMFJyAu4.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Kanit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kanit/kanit-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kanit/v15/nKKZ-Go6G5tXcoaSEQGodLxA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kanit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kanit/kanit-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kanit/v15/nKKX-Go6G5tXcraQGwWKcaxALFs.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Kanit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kanit/kanit-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kanit/v15/nKKU-Go6G5tXcr5mOCWgX6BJNUJy.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kanit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kanit/kanit-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kanit/v15/nKKS-Go6G5tXcraQI_GjVaRrMFJyAu4.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Kanit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kanit/kanit-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kanit/v15/nKKU-Go6G5tXcr5KPyWgX6BJNUJy.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Kanit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kanit/kanit-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kanit/v15/nKKS-Go6G5tXcraQI92kVaRrMFJyAu4.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Kanit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kanit/kanit-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kanit/v15/nKKU-Go6G5tXcr4uPiWgX6BJNUJy.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kanit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kanit/kanit-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kanit/v15/nKKS-Go6G5tXcraQI7mlVaRrMFJyAu4.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Kanit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kanit/kanit-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kanit/v15/nKKU-Go6G5tXcr4yPSWgX6BJNUJy.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Kanit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kanit/kanit-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kanit/v15/nKKS-Go6G5tXcraQI6WmVaRrMFJyAu4.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Kanit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kanit/kanit-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kanit/v15/nKKU-Go6G5tXcr4WPCWgX6BJNUJy.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Kanit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kanit/kanit-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kanit/v15/nKKS-Go6G5tXcraQI4GnVaRrMFJyAu4.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Kanit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kanit/kanit-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kanit/kanit.svg" - }, - { - "name": "Kantumruy Pro", - "fontFamily": "Kantumruy Pro, sans-serif", - "slug": "kantumruy-pro", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urUs0M34dR6dW.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Kantumruy Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kantumruy-pro/kantumruy-pro-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg3urEs0M34dR6dW.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Kantumruy Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kantumruy-pro/kantumruy-pro-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg0wrEs0M34dR6dW.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kantumruy Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kantumruy-pro/kantumruy-pro-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urEs0M34dR6dW.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kantumruy Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kantumruy-pro/kantumruy-pro-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1crEs0M34dR6dW.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kantumruy Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kantumruy-pro/kantumruy-pro-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2wq0s0M34dR6dW.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Kantumruy Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kantumruy-pro/kantumruy-pro-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2Jq0s0M34dR6dW.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kantumruy Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kantumruy-pro/kantumruy-pro-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N2OXo_QrdWlcU.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Kantumruy Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kantumruy-pro/kantumruy-pro-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7yN3OXo_QrdWlcU.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Kantumruy Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kantumruy-pro/kantumruy-pro-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7_13OXo_QrdWlcU.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Kantumruy Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kantumruy-pro/kantumruy-pro-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N3OXo_QrdWlcU.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Kantumruy Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kantumruy-pro/kantumruy-pro-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim75F3OXo_QrdWlcU.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Kantumruy Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kantumruy-pro/kantumruy-pro-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim731wOXo_QrdWlcU.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Kantumruy Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kantumruy-pro/kantumruy-pro-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim70RwOXo_QrdWlcU.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Kantumruy Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kantumruy-pro/kantumruy-pro-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kantumruy-pro/kantumruy-pro.svg" - }, - { - "name": "Karantina", - "fontFamily": "Karantina, system-ui", - "slug": "karantina", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxXCgf-P5Oaiw4cw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Karantina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karantina/karantina-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/karantina/v11/buE0po24ccnh31GVMABJ8AA78NVSYw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Karantina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karantina/karantina-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxTC8f-P5Oaiw4cw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Karantina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karantina/karantina-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karantina/karantina.svg" - }, - { - "name": "Karla", - "fontFamily": "Karla, sans-serif", - "slug": "karla", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJqqFENLR7fHGw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Karla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karla/karla-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDppqqFENLR7fHGw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Karla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karla/karla-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqqFENLR7fHGw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Karla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karla/karla-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDypqqFENLR7fHGw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Karla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karla/karla-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDJp2qFENLR7fHGw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Karla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karla/karla-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDH52qFENLR7fHGw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Karla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karla/karla-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJ2qFENLR7fHGw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Karla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karla/karla-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCV0lPZbLXGxGR.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Karla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karla/karla-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNkcV0lPZbLXGxGR.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Karla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karla/karla-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlCV0lPZbLXGxGR.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Karla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karla/karla-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlwV0lPZbLXGxGR.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Karla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karla/karla-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmcUElPZbLXGxGR.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Karla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karla/karla-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmlUElPZbLXGxGR.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Karla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karla/karla-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCUElPZbLXGxGR.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Karla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karla/karla-800-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karla/karla.svg" - }, - { - "name": "Karma", - "fontFamily": "Karma, serif", - "slug": "karma", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjDY8Z_uqzGQC_-.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Karma", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karma/karma-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/karma/v16/va9I4kzAzMZRGIBvS-J3kbDP.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Karma", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karma/karma-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLibYsZ_uqzGQC_-.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Karma", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karma/karma-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLi3ZcZ_uqzGQC_-.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Karma", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karma/karma-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjTZMZ_uqzGQC_-.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Karma", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karma/karma-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/karma/karma.svg" - }, - { - "name": "Katibeh", - "fontFamily": "Katibeh, system-ui", - "slug": "katibeh", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/katibeh/v19/ZGjXol5MQJog4bxDaC1RVDNdGDs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Katibeh", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/katibeh/katibeh-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/katibeh/katibeh.svg" - }, - { - "name": "Kaushan Script", - "fontFamily": "Kaushan Script, cursive", - "slug": "kaushan-script", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kaushanscript/v16/vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kaushan Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kaushan-script/kaushan-script-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kaushan-script/kaushan-script.svg" - }, - { - "name": "Kavivanar", - "fontFamily": "Kavivanar, cursive", - "slug": "kavivanar", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kavivanar/v20/o-0IIpQgyXYSwhxP7_Jb4j5Ba_2c7A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kavivanar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kavivanar/kavivanar-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kavivanar/kavivanar.svg" - }, - { - "name": "Kavoon", - "fontFamily": "Kavoon, system-ui", - "slug": "kavoon", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kavoon/v23/pxiFyp4_scRYhlU4NLr6f1pdEQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kavoon", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kavoon/kavoon-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kavoon/kavoon.svg" - }, - { - "name": "Kdam Thmor Pro", - "fontFamily": "Kdam Thmor Pro, sans-serif", - "slug": "kdam-thmor-pro", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kdamthmorpro/v4/EJRPQgAzVdcI-Qdvt34jzurnGA7_j89I8ZWb.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kdam Thmor Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kdam-thmor-pro/kdam-thmor-pro-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kdam-thmor-pro/kdam-thmor-pro.svg" - }, - { - "name": "Keania One", - "fontFamily": "Keania One, system-ui", - "slug": "keania-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/keaniaone/v24/zOL54pXJk65E8pXardnuycRuv-hHkOs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Keania One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/keania-one/keania-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/keania-one/keania-one.svg" - }, - { - "name": "Kelly Slab", - "fontFamily": "Kelly Slab, system-ui", - "slug": "kelly-slab", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kellyslab/v17/-W_7XJX0Rz3cxUnJC5t6TkMBf50kbiM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kelly Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kelly-slab/kelly-slab-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kelly-slab/kelly-slab.svg" - }, - { - "name": "Kenia", - "fontFamily": "Kenia, system-ui", - "slug": "kenia", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kenia/v28/jizURE5PuHQH9qCONUGswfGM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kenia", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kenia/kenia-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kenia/kenia.svg" - }, - { - "name": "Khand", - "fontFamily": "Khand, sans-serif", - "slug": "khand", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bL5cFE3ZwaH__-C.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Khand", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/khand/khand-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/khand/v17/TwMA-IINQlQQ0YpVWHU_TBqO.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Khand", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/khand/khand-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bKhcVE3ZwaH__-C.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Khand", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/khand/khand-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bKNdlE3ZwaH__-C.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Khand", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/khand/khand-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bLpd1E3ZwaH__-C.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Khand", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/khand/khand-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/khand/khand.svg" - }, - { - "name": "Khmer", - "fontFamily": "Khmer, sans-serif", - "slug": "khmer", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/khmer/v29/MjQImit_vPPwpF-BpN2EeYmD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Khmer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/khmer/khmer-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/khmer/khmer.svg" - }, - { - "name": "Khula", - "fontFamily": "Khula, sans-serif", - "slug": "khula", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-ljCvUrC59XwXD.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Khula", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/khula/khula-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/khula/v12/OpNCnoEOns3V7FcJpA_chzJ0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Khula", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/khula/khula-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G_RiivUrC59XwXD.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Khula", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/khula/khula-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-1iyvUrC59XwXD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Khula", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/khula/khula-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-piCvUrC59XwXD.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Khula", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/khula/khula-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/khula/khula.svg" - }, - { - "name": "Kings", - "fontFamily": "Kings, cursive", - "slug": "kings", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kings/v7/8AtnGsK4O5CYXU_Iq6GSPaHS.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kings", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kings/kings-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kings/kings.svg" - }, - { - "name": "Kirang Haerang", - "fontFamily": "Kirang Haerang, system-ui", - "slug": "kirang-haerang", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kiranghaerang/v20/E21-_dn_gvvIjhYON1lpIU4-bcqvWPaJq4no.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kirang Haerang", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kirang-haerang/kirang-haerang-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kirang-haerang/kirang-haerang.svg" - }, - { - "name": "Kite One", - "fontFamily": "Kite One, sans-serif", - "slug": "kite-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kiteone/v22/70lQu7shLnA_E02vyq1b6HnGO4uA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kite One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kite-one/kite-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kite-one/kite-one.svg" - }, - { - "name": "Kiwi Maru", - "fontFamily": "Kiwi Maru, serif", - "slug": "kiwi-maru", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gNCi0Vxn9R5ShnA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kiwi Maru", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kiwi-maru/kiwi-maru-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kiwimaru/v14/R70YjykGkuuDep-hRg6YmACQXzLhTg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kiwi Maru", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kiwi-maru/kiwi-maru-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gbCm0Vxn9R5ShnA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kiwi Maru", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kiwi-maru/kiwi-maru-500-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kiwi-maru/kiwi-maru.svg" - }, - { - "name": "Klee One", - "fontFamily": "Klee One, cursive", - "slug": "klee-one", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kleeone/v7/LDIxapCLNRc6A8oT4q4AOeekWPrP.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Klee One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/klee-one/klee-one-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kleeone/v7/LDI2apCLNRc6A8oT4pbYF8Osc-bGkqIw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Klee One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/klee-one/klee-one-600-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/klee-one/klee-one.svg" - }, - { - "name": "Knewave", - "fontFamily": "Knewave, system-ui", - "slug": "knewave", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/knewave/v14/sykz-yx0lLcxQaSItSq9-trEvlQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Knewave", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/knewave/knewave-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/knewave/knewave.svg" - }, - { - "name": "KoHo", - "fontFamily": "KoHo, sans-serif", - "slug": "koho", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPuE1WJ75JoKhHys.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "KoHo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/koho/koho-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNisssJ_zIqCkDyvqZA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "KoHo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/koho/koho-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPoU2WJ75JoKhHys.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "KoHo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/koho/koho-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNiss1JzzIqCkDyvqZA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "KoHo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/koho/koho-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/koho/v16/K2F-fZ5fmddNBikefJbSOos.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "KoHo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/koho/koho-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/koho/v16/K2FwfZ5fmddNNisUeLTXKou4Bg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "KoHo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/koho/koho-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPt03WJ75JoKhHys.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "KoHo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/koho/koho-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissjJ3zIqCkDyvqZA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "KoHo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/koho/koho-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPvEwWJ75JoKhHys.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "KoHo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/koho/koho-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissoJrzIqCkDyvqZA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "KoHo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/koho/koho-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPpUxWJ75JoKhHys.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "KoHo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/koho/koho-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissxJvzIqCkDyvqZA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "KoHo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/koho/koho-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/koho/koho.svg" - }, - { - "name": "Kodchasan", - "fontFamily": "Kodchasan, sans-serif", - "slug": "kodchasan", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeR1Cggeqo3eMeoA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Kodchasan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kodchasan/kodchasan-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUlIgOCs_-YOoIgN.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Kodchasan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kodchasan/kodchasan-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeI1Oggeqo3eMeoA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kodchasan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kodchasan/kodchasan-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUksg-Cs_-YOoIgN.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Kodchasan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kodchasan/kodchasan-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kodchasan/v17/1cXxaUPOAJv9sG4I-DJmj3uEicG01A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kodchasan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kodchasan/kodchasan-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kodchasan/v17/1cX3aUPOAJv9sG4I-DJWjXGAq8Sk1PoH.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Kodchasan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kodchasan/kodchasan-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJee1Kggeqo3eMeoA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kodchasan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kodchasan/kodchasan-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUl0guCs_-YOoIgN.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Kodchasan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kodchasan/kodchasan-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeV1Wggeqo3eMeoA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Kodchasan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kodchasan/kodchasan-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUlYheCs_-YOoIgN.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Kodchasan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kodchasan/kodchasan-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeM1Sggeqo3eMeoA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kodchasan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kodchasan/kodchasan-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUk8hOCs_-YOoIgN.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Kodchasan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kodchasan/kodchasan-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kodchasan/kodchasan.svg" - }, - { - "name": "Koh Santepheap", - "fontFamily": "Koh Santepheap, serif", - "slug": "koh-santepheap", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kohsantepheap/v11/gNMfW3p6SJbwyGj2rBZyeOrTjNuFHVyTtjNJUWU.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Koh Santepheap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/koh-santepheap/koh-santepheap-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kohsantepheap/v11/gNMeW3p6SJbwyGj2rBZyeOrTjNtNP3y5mD9ASHz5.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Koh Santepheap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/koh-santepheap/koh-santepheap-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kohsantepheap/v11/gNMdW3p6SJbwyGj2rBZyeOrTjOPhF1ixsyNJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Koh Santepheap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/koh-santepheap/koh-santepheap-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kohsantepheap/v11/gNMeW3p6SJbwyGj2rBZyeOrTjNtdOHy5mD9ASHz5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Koh Santepheap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/koh-santepheap/koh-santepheap-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kohsantepheap/v11/gNMeW3p6SJbwyGj2rBZyeOrTjNtlOny5mD9ASHz5.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Koh Santepheap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/koh-santepheap/koh-santepheap-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/koh-santepheap/koh-santepheap.svg" - }, - { - "name": "Kolker Brush", - "fontFamily": "Kolker Brush, cursive", - "slug": "kolker-brush", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kolkerbrush/v6/iJWDBXWRZjfKWdvmzwvvog3-7KJ6x8qNUQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kolker Brush", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kolker-brush/kolker-brush-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kolker-brush/kolker-brush.svg" - }, - { - "name": "Konkhmer Sleokchher", - "fontFamily": "Konkhmer Sleokchher, system-ui", - "slug": "konkhmer-sleokchher", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/konkhmersleokchher/v2/_Xmw-GE-rjmabA_M-aPOZOsCrUv825LFI3507E0d-W0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Konkhmer Sleokchher", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/konkhmer-sleokchher/konkhmer-sleokchher-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/konkhmer-sleokchher/konkhmer-sleokchher.svg" - }, - { - "name": "Kosugi", - "fontFamily": "Kosugi, sans-serif", - "slug": "kosugi", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kosugi/v15/pxiFyp4_v8FCjlI4NLr6f1pdEQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kosugi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kosugi/kosugi-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kosugi/kosugi.svg" - }, - { - "name": "Kosugi Maru", - "fontFamily": "Kosugi Maru, sans-serif", - "slug": "kosugi-maru", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kosugimaru/v14/0nksC9PgP_wGh21A2KeqGiTqivr9iBq_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kosugi Maru", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kosugi-maru/kosugi-maru-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kosugi-maru/kosugi-maru.svg" - }, - { - "name": "Kotta One", - "fontFamily": "Kotta One, serif", - "slug": "kotta-one", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kottaone/v20/S6u_w41LXzPc_jlfNWqPHA3s5dwt7w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kotta One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kotta-one/kotta-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kotta-one/kotta-one.svg" - }, - { - "name": "Koulen", - "fontFamily": "Koulen, system-ui", - "slug": "koulen", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/koulen/v27/AMOQz46as3KIBPeWgnA9kuYMUg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Koulen", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/koulen/koulen-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/koulen/koulen.svg" - }, - { - "name": "Kranky", - "fontFamily": "Kranky, system-ui", - "slug": "kranky", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kranky/v28/hESw6XVgJzlPsFnMpheEZo_H_w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kranky", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kranky/kranky-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kranky/kranky.svg" - }, - { - "name": "Kreon", - "fontFamily": "Kreon, serif", - "slug": "kreon", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvPNimejUfp2dWNg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kreon", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kreon/kreon-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvYtimejUfp2dWNg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kreon", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kreon/kreon-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvUNimejUfp2dWNg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kreon", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kreon/kreon-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvvN-mejUfp2dWNg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Kreon", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kreon/kreon-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2Dnvhd-mejUfp2dWNg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kreon", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kreon/kreon-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kreon/kreon.svg" - }, - { - "name": "Kristi", - "fontFamily": "Kristi, cursive", - "slug": "kristi", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kristi/v21/uK_y4ricdeU6zwdRCh0TMv6EXw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kristi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kristi/kristi-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kristi/kristi.svg" - }, - { - "name": "Krona One", - "fontFamily": "Krona One, sans-serif", - "slug": "krona-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kronaone/v14/jAnEgHdjHcjgfIb1ZcUCMY-h3cWkWg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Krona One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/krona-one/krona-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/krona-one/krona-one.svg" - }, - { - "name": "Krub", - "fontFamily": "Krub, sans-serif", - "slug": "krub", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZo47KLF4R6gWaf8.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Krub", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/krub/krub-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQiwLByQ4oTef_6gQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Krub", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/krub/krub-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZuo4KLF4R6gWaf8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Krub", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/krub/krub-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQipLNyQ4oTef_6gQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Krub", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/krub/krub-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/krub/v9/sZlLdRyC6CRYXkYQDLlTW6E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Krub", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/krub/krub-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/krub/v9/sZlFdRyC6CRYbkQaCJtWS6EPcA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Krub", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/krub/krub-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZrI5KLF4R6gWaf8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Krub", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/krub/krub-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi_LJyQ4oTef_6gQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Krub", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/krub/krub-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZp4-KLF4R6gWaf8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Krub", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/krub/krub-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi0LVyQ4oTef_6gQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Krub", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/krub/krub-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZvo_KLF4R6gWaf8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Krub", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/krub/krub-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQitLRyQ4oTef_6gQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Krub", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/krub/krub-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/krub/krub.svg" - }, - { - "name": "Kufam", - "fontFamily": "Kufam, sans-serif", - "slug": "kufam", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3lqk7qQCJHvIwYg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kufam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kufam/kufam-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3pKk7qQCJHvIwYg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kufam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kufam/kufam-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3SK47qQCJHvIwYg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Kufam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kufam/kufam-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3ca47qQCJHvIwYg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kufam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kufam/kufam-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3Fq47qQCJHvIwYg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Kufam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kufam/kufam-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3P647qQCJHvIwYg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Kufam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kufam/kufam-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXurT6gqNPPcgYp0i.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Kufam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kufam/kufam-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXurh6gqNPPcgYp0i.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Kufam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kufam/kufam-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXuoN7QqNPPcgYp0i.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Kufam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kufam/kufam-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXuo07QqNPPcgYp0i.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Kufam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kufam/kufam-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXupT7QqNPPcgYp0i.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Kufam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kufam/kufam-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXup67QqNPPcgYp0i.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Kufam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kufam/kufam-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kufam/kufam.svg" - }, - { - "name": "Kulim Park", - "fontFamily": "Kulim Park, sans-serif", - "slug": "kulim-park", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjJYNwa5aZbUvGjU.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Kulim Park", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kulim-park/kulim-park-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUKa9QYZcqCjVVUA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Kulim Park", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kulim-park/kulim-park-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjPIOwa5aZbUvGjU.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kulim Park", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kulim-park/kulim-park-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUTaxQYZcqCjVVUA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Kulim Park", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kulim-park/kulim-park-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kulimpark/v14/fdN79secq3hflz1Uu3IwtF4m5aZxebw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kulim Park", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kulim-park/kulim-park-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kulimpark/v14/fdN59secq3hflz1Uu3IwhFws4YR0abw2Aw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Kulim Park", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kulim-park/kulim-park-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjIYIwa5aZbUvGjU.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Kulim Park", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kulim-park/kulim-park-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUOapQYZcqCjVVUA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Kulim Park", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kulim-park/kulim-park-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjOIJwa5aZbUvGjU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kulim Park", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kulim-park/kulim-park-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUXatQYZcqCjVVUA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Kulim Park", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kulim-park/kulim-park-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kulim-park/kulim-park.svg" - }, - { - "name": "Kumar One", - "fontFamily": "Kumar One, system-ui", - "slug": "kumar-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kumarone/v21/bMr1mS-P958wYi6YaGeGNO6WU3oT0g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kumar One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kumar-one/kumar-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kumar-one/kumar-one.svg" - }, - { - "name": "Kumar One Outline", - "fontFamily": "Kumar One Outline, system-ui", - "slug": "kumar-one-outline", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kumaroneoutline/v17/Noao6VH62pyLP0fsrZ-v18wlUEcX9zDwRQu8EGKF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kumar One Outline", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kumar-one-outline/kumar-one-outline-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kumar-one-outline/kumar-one-outline.svg" - }, - { - "name": "Kumbh Sans", - "fontFamily": "Kumbh Sans, sans-serif", - "slug": "kumbh-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQkZcA8bTuUkqaLg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kumbh-sans/kumbh-sans-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQEZYA8bTuUkqaLg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kumbh-sans/kumbh-sans-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQz5YA8bTuUkqaLg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kumbh-sans/kumbh-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQkZYA8bTuUkqaLg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kumbh-sans/kumbh-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQo5YA8bTuUkqaLg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kumbh-sans/kumbh-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQT5EA8bTuUkqaLg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kumbh-sans/kumbh-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQdpEA8bTuUkqaLg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kumbh-sans/kumbh-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQEZEA8bTuUkqaLg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kumbh-sans/kumbh-sans-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQOJEA8bTuUkqaLg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kumbh-sans/kumbh-sans-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kumbh-sans/kumbh-sans.svg" - }, - { - "name": "Kurale", - "fontFamily": "Kurale, serif", - "slug": "kurale", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/kurale/v11/4iCs6KV9e9dXjho6eAT3v02QFg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kurale", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kurale/kurale-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/kurale/kurale.svg" - }, - { - "name": "La Belle Aurore", - "fontFamily": "La Belle Aurore, cursive", - "slug": "la-belle-aurore", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/labelleaurore/v20/RrQIbot8-mNYKnGNDkWlocovHeIIG-eFNVmULg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "La Belle Aurore", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/la-belle-aurore/la-belle-aurore-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/la-belle-aurore/la-belle-aurore.svg" - }, - { - "name": "Labrada", - "fontFamily": "Labrada, serif", - "slug": "labrada", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VTSgM4QPdUej17.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Labrada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/labrada/labrada-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9XTSwM4QPdUej17.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Labrada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/labrada/labrada-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9UNSwM4QPdUej17.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Labrada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/labrada/labrada-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VTSwM4QPdUej17.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Labrada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/labrada/labrada-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VhSwM4QPdUej17.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Labrada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/labrada/labrada-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9WNTAM4QPdUej17.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Labrada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/labrada/labrada-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9W0TAM4QPdUej17.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Labrada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/labrada/labrada-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9XTTAM4QPdUej17.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Labrada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/labrada/labrada-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9X6TAM4QPdUej17.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Labrada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/labrada/labrada-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCOt6SvN2fy17-dE.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Labrada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/labrada/labrada-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCGt7SvN2fy17-dE.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Labrada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/labrada/labrada-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCLV7SvN2fy17-dE.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Labrada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/labrada/labrada-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCOt7SvN2fy17-dE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Labrada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/labrada/labrada-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCNl7SvN2fy17-dE.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Labrada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/labrada/labrada-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCDV8SvN2fy17-dE.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Labrada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/labrada/labrada-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCAx8SvN2fy17-dE.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Labrada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/labrada/labrada-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCGt8SvN2fy17-dE.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Labrada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/labrada/labrada-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCEJ8SvN2fy17-dE.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Labrada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/labrada/labrada-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/labrada/labrada.svg" - }, - { - "name": "Lacquer", - "fontFamily": "Lacquer, system-ui", - "slug": "lacquer", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lacquer/v15/EYqzma1QwqpG4_BBB7-AXhttQ5I.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lacquer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lacquer/lacquer-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lacquer/lacquer.svg" - }, - { - "name": "Laila", - "fontFamily": "Laila, sans-serif", - "slug": "laila", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/laila/v15/LYjBdG_8nE8jDLzxogNAh14nVcfe.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Laila", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/laila/laila-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/laila/v15/LYjMdG_8nE8jDIRdiidIrEIu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Laila", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/laila/laila-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/laila/v15/LYjBdG_8nE8jDLypowNAh14nVcfe.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Laila", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/laila/laila-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/laila/v15/LYjBdG_8nE8jDLyFpANAh14nVcfe.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Laila", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/laila/laila-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/laila/v15/LYjBdG_8nE8jDLzhpQNAh14nVcfe.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Laila", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/laila/laila-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/laila/laila.svg" - }, - { - "name": "Lakki Reddy", - "fontFamily": "Lakki Reddy, cursive", - "slug": "lakki-reddy", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lakkireddy/v21/S6u5w49MUSzD9jlCPmvLZQfox9k97-xZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lakki Reddy", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lakki-reddy/lakki-reddy-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lakki-reddy/lakki-reddy.svg" - }, - { - "name": "Lalezar", - "fontFamily": "Lalezar, system-ui", - "slug": "lalezar", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lalezar/v14/zrfl0HLVx-HwTP82UaDyIiL0RCg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lalezar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lalezar/lalezar-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lalezar/lalezar.svg" - }, - { - "name": "Lancelot", - "fontFamily": "Lancelot, system-ui", - "slug": "lancelot", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lancelot/v26/J7acnppxBGtQEulG4JY4xJ9CGyAa.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lancelot", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lancelot/lancelot-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lancelot/lancelot.svg" - }, - { - "name": "Langar", - "fontFamily": "Langar, system-ui", - "slug": "langar", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/langar/v27/kJEyBukW7AIlgjGVrTVZ99sqrQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Langar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/langar/langar-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/langar/langar.svg" - }, - { - "name": "Lateef", - "fontFamily": "Lateef, serif", - "slug": "lateef", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0bjygbqTb9nQ-RA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lateef", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lateef/lateef-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0Cj-gbqTb9nQ-RA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lateef", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lateef/lateef-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lateef/v29/hESw6XVnNCxEvkbMpheEZo_H_w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lateef", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lateef/lateef-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0Uj6gbqTb9nQ-RA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lateef", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lateef/lateef-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0fjmgbqTb9nQ-RA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lateef", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lateef/lateef-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0GjigbqTb9nQ-RA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lateef", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lateef/lateef-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0BjugbqTb9nQ-RA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lateef", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lateef/lateef-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lateef/lateef.svg" - }, - { - "name": "Lato", - "fontFamily": "Lato, sans-serif", - "slug": "lato", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHh30wWyWrFCbw7A.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lato", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lato/lato-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lato/v24/S6u-w4BMUTPHjxsIPy-vNiPg7MU0.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Lato", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lato/lato-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh7USew-FGC_p9dw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lato", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lato/lato-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI9w2PHA3s5dwt7w.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Lato", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lato/lato-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxk6XweuBCY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lato", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lato/lato-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxswWyWrFCbw7A.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Lato", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lato/lato-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lato", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lato/lato-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Lato", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lato/lato-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lato", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lato/lato-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Lato", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lato/lato-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lato/lato.svg" - }, - { - "name": "Lavishly Yours", - "fontFamily": "Lavishly Yours, cursive", - "slug": "lavishly-yours", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lavishlyyours/v5/jizDREVIvGwH5OjiZmX9r5z_WxUY0TY7ikbI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lavishly Yours", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lavishly-yours/lavishly-yours-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lavishly-yours/lavishly-yours.svg" - }, - { - "name": "League Gothic", - "fontFamily": "League Gothic, sans-serif", - "slug": "league-gothic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/leaguegothic/v11/qFdR35CBi4tvBz81xy7WG7ep-BQAY7Krj7feObpH_-amidQ6Q9hn.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "League Gothic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/league-gothic/league-gothic-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/league-gothic/league-gothic.svg" - }, - { - "name": "League Script", - "fontFamily": "League Script, cursive", - "slug": "league-script", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/leaguescript/v28/CSR54zpSlumSWj9CGVsoBZdeaNNUuOwkC2s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "League Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/league-script/league-script-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/league-script/league-script.svg" - }, - { - "name": "League Spartan", - "fontFamily": "League Spartan, sans-serif", - "slug": "league-spartan", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oXpBMdcFguczA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "League Spartan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/league-spartan/league-spartan-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoTpBMdcFguczA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "League Spartan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/league-spartan/league-spartan-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITpBMdcFguczA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "League Spartan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/league-spartan/league-spartan-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTpBMdcFguczA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "League Spartan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/league-spartan/league-spartan-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMzITpBMdcFguczA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "League Spartan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/league-spartan/league-spartan-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMIIPpBMdcFguczA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "League Spartan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/league-spartan/league-spartan-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPpBMdcFguczA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "League Spartan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/league-spartan/league-spartan-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoPpBMdcFguczA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "League Spartan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/league-spartan/league-spartan-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMV4PpBMdcFguczA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "League Spartan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/league-spartan/league-spartan-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/league-spartan/league-spartan.svg" - }, - { - "name": "Leckerli One", - "fontFamily": "Leckerli One, cursive", - "slug": "leckerli-one", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/leckerlione/v20/V8mCoQH8VCsNttEnxnGQ-1itLZxcBtItFw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Leckerli One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/leckerli-one/leckerli-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/leckerli-one/leckerli-one.svg" - }, - { - "name": "Ledger", - "fontFamily": "Ledger, serif", - "slug": "ledger", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ledger/v16/j8_q6-HK1L3if_sxm8DwHTBhHw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ledger", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ledger/ledger-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ledger/ledger.svg" - }, - { - "name": "Lekton", - "fontFamily": "Lekton, sans-serif", - "slug": "lekton", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lekton/v17/SZc43FDmLaWmWpBeXxfonUPL6Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lekton", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lekton/lekton-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lekton/v17/SZc63FDmLaWmWpBuXR3sv0bb6StO.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Lekton", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lekton/lekton-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lekton/v17/SZc73FDmLaWmWpBm4zjMlWjX4DJXgQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lekton", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lekton/lekton-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lekton/lekton.svg" - }, - { - "name": "Lemon", - "fontFamily": "Lemon, system-ui", - "slug": "lemon", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lemon/v17/HI_EiYEVKqRMq0jBSZXAQ4-d.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lemon", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lemon/lemon-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lemon/lemon.svg" - }, - { - "name": "Lemonada", - "fontFamily": "Lemonada, system-ui", - "slug": "lemonada", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lemonada/v28/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGJOt2mfWc3Z2pTg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lemonada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lemonada/lemonada-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lemonada/v28/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGeut2mfWc3Z2pTg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lemonada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lemonada/lemonada-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lemonada/v28/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGSOt2mfWc3Z2pTg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lemonada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lemonada/lemonada-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lemonada/v28/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGpOx2mfWc3Z2pTg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lemonada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lemonada/lemonada-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lemonada/v28/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGnex2mfWc3Z2pTg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lemonada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lemonada/lemonada-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lemonada/lemonada.svg" - }, - { - "name": "Lexend", - "fontFamily": "Lexend, sans-serif", - "slug": "lexend", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsX_LBte6KuGEo.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend/lexend-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sW_LBte6KuGEo.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend/lexend-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC2UW_LBte6KuGEo.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend/lexend-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsW_LBte6KuGEo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend/lexend-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCwkW_LBte6KuGEo.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend/lexend-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC-UR_LBte6KuGEo.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend/lexend-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC9wR_LBte6KuGEo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend/lexend-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sR_LBte6KuGEo.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend/lexend-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC5IR_LBte6KuGEo.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend/lexend-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend/lexend.svg" - }, - { - "name": "Lexend Deca", - "fontFamily": "Lexend Deca, sans-serif", - "slug": "lexend-deca", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48MxArBPCqLNflg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend Deca", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-deca/lexend-deca-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cM1ArBPCqLNflg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend Deca", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-deca/lexend-deca-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4rs1ArBPCqLNflg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend Deca", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-deca/lexend-deca-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48M1ArBPCqLNflg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend Deca", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-deca/lexend-deca-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4ws1ArBPCqLNflg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend Deca", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-deca/lexend-deca-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4LspArBPCqLNflg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend Deca", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-deca/lexend-deca-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4F8pArBPCqLNflg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend Deca", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-deca/lexend-deca-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cMpArBPCqLNflg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend Deca", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-deca/lexend-deca-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4WcpArBPCqLNflg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend Deca", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-deca/lexend-deca-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-deca/lexend-deca.svg" - }, - { - "name": "Lexend Exa", - "fontFamily": "Lexend Exa, sans-serif", - "slug": "lexend-exa", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7T6bHHJ8BRq0b.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend Exa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-exa/lexend-exa-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7TqbHHJ8BRq0b.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend Exa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-exa/lexend-exa-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9qlTqbHHJ8BRq0b.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend Exa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-exa/lexend-exa-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend Exa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-exa/lexend-exa-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9rJTqbHHJ8BRq0b.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend Exa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-exa/lexend-exa-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend Exa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-exa/lexend-exa-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9ocSabHHJ8BRq0b.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend Exa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-exa/lexend-exa-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7SabHHJ8BRq0b.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend Exa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-exa/lexend-exa-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9pSSabHHJ8BRq0b.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend Exa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-exa/lexend-exa-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-exa/lexend-exa.svg" - }, - { - "name": "Lexend Giga", - "fontFamily": "Lexend Giga, sans-serif", - "slug": "lexend-giga", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LmE68oo6eepYQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend Giga", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-giga/lexend-giga-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWLiE68oo6eepYQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend Giga", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-giga/lexend-giga-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRChriE68oo6eepYQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend Giga", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-giga/lexend-giga-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LiE68oo6eepYQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend Giga", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-giga/lexend-giga-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC6riE68oo6eepYQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend Giga", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-giga/lexend-giga-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCBr-E68oo6eepYQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend Giga", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-giga/lexend-giga-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCP7-E68oo6eepYQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend Giga", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-giga/lexend-giga-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWL-E68oo6eepYQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend Giga", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-giga/lexend-giga-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCcb-E68oo6eepYQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend Giga", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-giga/lexend-giga-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-giga/lexend-giga.svg" - }, - { - "name": "Lexend Mega", - "fontFamily": "Lexend Mega, sans-serif", - "slug": "lexend-mega", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fivveyiq9EqQw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend Mega", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-mega/lexend-mega-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcfmvveyiq9EqQw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend Mega", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-mega/lexend-mega-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLr_mvveyiq9EqQw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend Mega", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-mega/lexend-mega-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fmvveyiq9EqQw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend Mega", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-mega/lexend-mega-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLw_mvveyiq9EqQw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend Mega", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-mega/lexend-mega-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLL_6vveyiq9EqQw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend Mega", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-mega/lexend-mega-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLFv6vveyiq9EqQw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend Mega", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-mega/lexend-mega-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcf6vveyiq9EqQw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend Mega", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-mega/lexend-mega-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLWP6vveyiq9EqQw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend Mega", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-mega/lexend-mega-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-mega/lexend-mega.svg" - }, - { - "name": "Lexend Peta", - "fontFamily": "Lexend Peta, sans-serif", - "slug": "lexend-peta", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SFyW1YuRTsnfw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend Peta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-peta/lexend-peta-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSByW1YuRTsnfw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend Peta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-peta/lexend-peta-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRtyByW1YuRTsnfw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend Peta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-peta/lexend-peta-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SByW1YuRTsnfw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend Peta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-peta/lexend-peta-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR2yByW1YuRTsnfw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend Peta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-peta/lexend-peta-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRNydyW1YuRTsnfw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend Peta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-peta/lexend-peta-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRDidyW1YuRTsnfw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend Peta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-peta/lexend-peta-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSdyW1YuRTsnfw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend Peta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-peta/lexend-peta-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRQCdyW1YuRTsnfw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend Peta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-peta/lexend-peta-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-peta/lexend-peta.svg" - }, - { - "name": "Lexend Tera", - "fontFamily": "Lexend Tera, sans-serif", - "slug": "lexend-tera", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zITdpz0fYxcrQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend Tera", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-tera/lexend-tera-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzMTdpz0fYxcrQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend Tera", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-tera/lexend-tera-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMuTMTdpz0fYxcrQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend Tera", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-tera/lexend-tera-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zMTdpz0fYxcrQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend Tera", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-tera/lexend-tera-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM1TMTdpz0fYxcrQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend Tera", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-tera/lexend-tera-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMOTQTdpz0fYxcrQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend Tera", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-tera/lexend-tera-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMADQTdpz0fYxcrQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend Tera", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-tera/lexend-tera-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzQTdpz0fYxcrQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend Tera", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-tera/lexend-tera-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMTjQTdpz0fYxcrQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend Tera", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-tera/lexend-tera-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-tera/lexend-tera.svg" - }, - { - "name": "Lexend Zetta", - "fontFamily": "Lexend Zetta, sans-serif", - "slug": "lexend-zetta", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bH0z5jbs8qbts.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-zetta/lexend-zetta-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bG0z5jbs8qbts.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-zetta/lexend-zetta-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy4jG0z5jbs8qbts.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-zetta/lexend-zetta-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bG0z5jbs8qbts.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-zetta/lexend-zetta-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy-TG0z5jbs8qbts.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-zetta/lexend-zetta-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCywjB0z5jbs8qbts.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-zetta/lexend-zetta-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCyzHB0z5jbs8qbts.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-zetta/lexend-zetta-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bB0z5jbs8qbts.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-zetta/lexend-zetta-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy3_B0z5jbs8qbts.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-zetta/lexend-zetta-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lexend-zetta/lexend-zetta.svg" - }, - { - "name": "Libre Barcode 128", - "fontFamily": "Libre Barcode 128, system-ui", - "slug": "libre-barcode-128", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librebarcode128/v28/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A_gMk0izH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Barcode 128", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-barcode-128/libre-barcode-128-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-barcode-128/libre-barcode-128.svg" - }, - { - "name": "Libre Barcode 128 Text", - "fontFamily": "Libre Barcode 128 Text, system-ui", - "slug": "libre-barcode-128-text", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librebarcode128text/v28/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cV3Y6M90w4k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Barcode 128 Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-barcode-128-text/libre-barcode-128-text-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-barcode-128-text/libre-barcode-128-text.svg" - }, - { - "name": "Libre Barcode 39", - "fontFamily": "Libre Barcode 39, system-ui", - "slug": "libre-barcode-39", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librebarcode39/v21/-nFnOHM08vwC6h8Li1eQnP_AHzI2K_d709jy92k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Barcode 39", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-barcode-39/libre-barcode-39-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-barcode-39/libre-barcode-39.svg" - }, - { - "name": "Libre Barcode 39 Extended", - "fontFamily": "Libre Barcode 39 Extended, system-ui", - "slug": "libre-barcode-39-extended", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librebarcode39extended/v27/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNRCOZ1GOBw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Barcode 39 Extended", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-barcode-39-extended/libre-barcode-39-extended-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-barcode-39-extended/libre-barcode-39-extended.svg" - }, - { - "name": "Libre Barcode 39 Extended Text", - "fontFamily": "Libre Barcode 39 Extended Text, system-ui", - "slug": "libre-barcode-39-extended-text", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librebarcode39extendedtext/v27/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68fLIiPopNNA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Barcode 39 Extended Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-barcode-39-extended-text/libre-barcode-39-extended-text-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-barcode-39-extended-text/libre-barcode-39-extended-text.svg" - }, - { - "name": "Libre Barcode 39 Text", - "fontFamily": "Libre Barcode 39 Text, system-ui", - "slug": "libre-barcode-39-text", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librebarcode39text/v28/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-031RRL-9rYaw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Barcode 39 Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-barcode-39-text/libre-barcode-39-text-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-barcode-39-text/libre-barcode-39-text.svg" - }, - { - "name": "Libre Barcode EAN13 Text", - "fontFamily": "Libre Barcode EAN13 Text, system-ui", - "slug": "libre-barcode-ean13-text", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librebarcodeean13text/v21/wlpigxXFDU1_oCu9nfZytgIqSG0XRcJm_OQiB96PAGEki52WfA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Barcode EAN13 Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-barcode-ean13-text/libre-barcode-ean13-text-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-barcode-ean13-text/libre-barcode-ean13-text.svg" - }, - { - "name": "Libre Baskerville", - "fontFamily": "Libre Baskerville, serif", - "slug": "libre-baskerville", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNeYRI4CN2V.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Baskerville", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-baskerville/libre-baskerville-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librebaskerville/v14/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxYaDc2V2ro.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Libre Baskerville", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-baskerville/libre-baskerville-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librebaskerville/v14/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjYwI8Gcw6Oi.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Libre Baskerville", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-baskerville/libre-baskerville-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-baskerville/libre-baskerville.svg" - }, - { - "name": "Libre Bodoni", - "fontFamily": "Libre Bodoni, serif", - "slug": "libre-bodoni", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6I1fwWzZcOb3U3s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Bodoni", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-bodoni/libre-bodoni-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6L9fwWzZcOb3U3s.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Libre Bodoni", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-bodoni/libre-bodoni-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6FNYwWzZcOb3U3s.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Libre Bodoni", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-bodoni/libre-bodoni-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6GpYwWzZcOb3U3s.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Libre Bodoni", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-bodoni/libre-bodoni-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcKS_TdMTyQ3syLg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Libre Bodoni", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-bodoni/libre-bodoni-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcGy_TdMTyQ3syLg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Libre Bodoni", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-bodoni/libre-bodoni-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUc9yjTdMTyQ3syLg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Libre Bodoni", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-bodoni/libre-bodoni-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUczijTdMTyQ3syLg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Libre Bodoni", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-bodoni/libre-bodoni-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-bodoni/libre-bodoni.svg" - }, - { - "name": "Libre Caslon Display", - "fontFamily": "Libre Caslon Display, serif", - "slug": "libre-caslon-display", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librecaslondisplay/v16/TuGOUUFxWphYQ6YI6q9Xp61FQzxDRKmzr2lRdRhtCC4d.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Caslon Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-caslon-display/libre-caslon-display-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-caslon-display/libre-caslon-display.svg" - }, - { - "name": "Libre Caslon Text", - "fontFamily": "Libre Caslon Text, serif", - "slug": "libre-caslon-text", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librecaslontext/v5/DdT878IGsGw1aF1JU10PUbTvNNaDMcq_3eNrHgO1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Caslon Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-caslon-text/libre-caslon-text-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librecaslontext/v5/DdT678IGsGw1aF1JU10PUbTvNNaDMfq91-dJGxO1q9o.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Libre Caslon Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-caslon-text/libre-caslon-text-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librecaslontext/v5/DdT578IGsGw1aF1JU10PUbTvNNaDMfID8sdjNR-8ssPt.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Libre Caslon Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-caslon-text/libre-caslon-text-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-caslon-text/libre-caslon-text.svg" - }, - { - "name": "Libre Franklin", - "fontFamily": "Libre Franklin, sans-serif", - "slug": "libre-franklin", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsSUB9rIb-JH1g.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Libre Franklin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-franklin/libre-franklin-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsWUB9rIb-JH1g.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Libre Franklin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-franklin/libre-franklin-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhcMWUB9rIb-JH1g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Libre Franklin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-franklin/libre-franklin-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsWUB9rIb-JH1g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Franklin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-franklin/libre-franklin-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhHMWUB9rIb-JH1g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Libre Franklin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-franklin/libre-franklin-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduh8MKUB9rIb-JH1g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Libre Franklin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-franklin/libre-franklin-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhycKUB9rIb-JH1g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Libre Franklin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-franklin/libre-franklin-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsKUB9rIb-JH1g.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Libre Franklin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-franklin/libre-franklin-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhh8KUB9rIb-JH1g.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Libre Franklin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-franklin/libre-franklin-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RdDMTedX1sGE.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Libre Franklin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-franklin/libre-franklin-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8RNDMTedX1sGE.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Libre Franklin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-franklin/libre-franklin-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oYiRNDMTedX1sGE.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Libre Franklin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-franklin/libre-franklin-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RNDMTedX1sGE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Libre Franklin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-franklin/libre-franklin-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZORNDMTedX1sGE.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Libre Franklin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-franklin/libre-franklin-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oaiQ9DMTedX1sGE.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Libre Franklin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-franklin/libre-franklin-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oabQ9DMTedX1sGE.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Libre Franklin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-franklin/libre-franklin-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8Q9DMTedX1sGE.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Libre Franklin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-franklin/libre-franklin-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05obVQ9DMTedX1sGE.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Libre Franklin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-franklin/libre-franklin-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/libre-franklin/libre-franklin.svg" - }, - { - "name": "Licorice", - "fontFamily": "Licorice, cursive", - "slug": "licorice", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/licorice/v6/t5tjIR8TMomTCAyjNk23hqLgzCHu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Licorice", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/licorice/licorice-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/licorice/licorice.svg" - }, - { - "name": "Life Savers", - "fontFamily": "Life Savers, system-ui", - "slug": "life-savers", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lifesavers/v20/ZXuie1UftKKabUQMgxAal_lrFgpbuNvB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Life Savers", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/life-savers/life-savers-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lifesavers/v20/ZXu_e1UftKKabUQMgxAal8HXOS5Tk8fIpPRW.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Life Savers", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/life-savers/life-savers-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lifesavers/v20/ZXu_e1UftKKabUQMgxAal8HLOi5Tk8fIpPRW.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Life Savers", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/life-savers/life-savers-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/life-savers/life-savers.svg" - }, - { - "name": "Lilita One", - "fontFamily": "Lilita One, system-ui", - "slug": "lilita-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lilitaone/v15/i7dPIFZ9Zz-WBtRtedDbUEZ2RFq7AwU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lilita One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lilita-one/lilita-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lilita-one/lilita-one.svg" - }, - { - "name": "Lily Script One", - "fontFamily": "Lily Script One, system-ui", - "slug": "lily-script-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lilyscriptone/v15/LhW9MV7ZMfIPdMxeBjBvFN8SXLS4gsSjQNsRMg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lily Script One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lily-script-one/lily-script-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lily-script-one/lily-script-one.svg" - }, - { - "name": "Limelight", - "fontFamily": "Limelight, system-ui", - "slug": "limelight", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/limelight/v19/XLYkIZL7aopJVbZJHDuYPeNGrnY2TA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Limelight", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/limelight/limelight-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/limelight/limelight.svg" - }, - { - "name": "Linden Hill", - "fontFamily": "Linden Hill, serif", - "slug": "linden-hill", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lindenhill/v24/-F61fjxoKSg9Yc3hZgO8ygFI7CwC009k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Linden Hill", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/linden-hill/linden-hill-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lindenhill/v24/-F63fjxoKSg9Yc3hZgO8yjFK5igg1l9kn-s.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Linden Hill", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/linden-hill/linden-hill-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/linden-hill/linden-hill.svg" - }, - { - "name": "Lisu Bosa", - "fontFamily": "Lisu Bosa, serif", - "slug": "lisu-bosa", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lisubosa/v2/3XFtErkv240fsdmJRJQXX2DGRdbY1P1Sbg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lisu Bosa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lisu-bosa/lisu-bosa-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lisubosa/v2/3XFzErkv240fsdmJRJQflXkuRNzc9vhCblye.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Lisu Bosa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lisu-bosa/lisu-bosa-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lisubosa/v2/3XFtErkv240fsdmJRJQXO2PGRdbY1P1Sbg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lisu Bosa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lisu-bosa/lisu-bosa-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lisubosa/v2/3XFzErkv240fsdmJRJQflXlKR9zc9vhCblye.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Lisu Bosa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lisu-bosa/lisu-bosa-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lisubosa/v2/3XFoErkv240fsdmJRJQvl0viTf3E3Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lisu Bosa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lisu-bosa/lisu-bosa-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lisubosa/v2/3XFuErkv240fsdmJRJQflUHmb_jU3eRL.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Lisu Bosa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lisu-bosa/lisu-bosa-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lisubosa/v2/3XFtErkv240fsdmJRJQXY2LGRdbY1P1Sbg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lisu Bosa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lisu-bosa/lisu-bosa-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lisubosa/v2/3XFzErkv240fsdmJRJQflXkSRtzc9vhCblye.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Lisu Bosa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lisu-bosa/lisu-bosa-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lisubosa/v2/3XFtErkv240fsdmJRJQXT2XGRdbY1P1Sbg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lisu Bosa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lisu-bosa/lisu-bosa-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lisubosa/v2/3XFzErkv240fsdmJRJQflXk-Qdzc9vhCblye.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Lisu Bosa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lisu-bosa/lisu-bosa-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lisubosa/v2/3XFtErkv240fsdmJRJQXK2TGRdbY1P1Sbg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lisu Bosa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lisu-bosa/lisu-bosa-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lisubosa/v2/3XFzErkv240fsdmJRJQflXlaQNzc9vhCblye.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Lisu Bosa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lisu-bosa/lisu-bosa-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lisubosa/v2/3XFtErkv240fsdmJRJQXN2fGRdbY1P1Sbg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lisu Bosa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lisu-bosa/lisu-bosa-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lisubosa/v2/3XFzErkv240fsdmJRJQflXlGQ9zc9vhCblye.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Lisu Bosa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lisu-bosa/lisu-bosa-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lisubosa/v2/3XFtErkv240fsdmJRJQXE2bGRdbY1P1Sbg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lisu Bosa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lisu-bosa/lisu-bosa-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lisubosa/v2/3XFzErkv240fsdmJRJQflXliQtzc9vhCblye.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Lisu Bosa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lisu-bosa/lisu-bosa-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lisu-bosa/lisu-bosa.svg" - }, - { - "name": "Literata", - "fontFamily": "Literata, serif", - "slug": "literata", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/literata/v35/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG_F_bcTWCWp8g.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Literata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/literata/literata-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/literata/v35/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbE-_F_bcTWCWp8g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Literata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/literata/literata-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/literata/v35/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbBG_F_bcTWCWp8g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Literata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/literata/literata-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/literata/v35/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbCO_F_bcTWCWp8g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Literata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/literata/literata-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/literata/v35/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbM-4F_bcTWCWp8g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Literata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/literata/literata-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/literata/v35/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbPa4F_bcTWCWp8g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Literata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/literata/literata-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/literata/v35/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG4F_bcTWCWp8g.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Literata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/literata/literata-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/literata/v35/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbLi4F_bcTWCWp8g.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Literata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/literata/literata-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/literata/v35/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7XWSUKTt8iVow.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Literata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/literata/literata-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/literata/v35/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8obXWSUKTt8iVow.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Literata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/literata/literata-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/literata/v35/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8_7XWSUKTt8iVow.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Literata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/literata/literata-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/literata/v35/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8zbXWSUKTt8iVow.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Literata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/literata/literata-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/literata/v35/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8IbLWSUKTt8iVow.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Literata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/literata/literata-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/literata/v35/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8GLLWSUKTt8iVow.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Literata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/literata/literata-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/literata/v35/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7LWSUKTt8iVow.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Literata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/literata/literata-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/literata/v35/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8VrLWSUKTt8iVow.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Literata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/literata/literata-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/literata/literata.svg" - }, - { - "name": "Liu Jian Mao Cao", - "fontFamily": "Liu Jian Mao Cao, cursive", - "slug": "liu-jian-mao-cao", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/liujianmaocao/v20/845DNN84HJrccNonurqXILGpvCOoferVKGWsUo8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Liu Jian Mao Cao", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/liu-jian-mao-cao/liu-jian-mao-cao-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/liu-jian-mao-cao/liu-jian-mao-cao.svg" - }, - { - "name": "Livvic", - "fontFamily": "Livvic, sans-serif", - "slug": "livvic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/livvic/v14/rnCr-x1S2hzjrlffC-M-mHnOSOuk.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Livvic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/livvic/livvic-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/livvic/v14/rnCt-x1S2hzjrlfXbdtakn3sTfukQHs.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Livvic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/livvic/livvic-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffp8IeslfCQfK9WQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Livvic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/livvic/livvic-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdv2s13GY_etWWIJ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Livvic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/livvic/livvic-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffw8EeslfCQfK9WQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Livvic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/livvic/livvic-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbduSsF3GY_etWWIJ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Livvic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/livvic/livvic-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/livvic/v14/rnCp-x1S2hzjrlfnb-k6unzeSA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Livvic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/livvic/livvic-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/livvic/v14/rnCr-x1S2hzjrlfXbeM-mHnOSOuk.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Livvic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/livvic/livvic-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffm8AeslfCQfK9WQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Livvic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/livvic/livvic-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdvKsV3GY_etWWIJ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Livvic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/livvic/livvic-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlfft8ceslfCQfK9WQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Livvic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/livvic/livvic-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdvmtl3GY_etWWIJ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Livvic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/livvic/livvic-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlff08YeslfCQfK9WQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Livvic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/livvic/livvic-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbduCt13GY_etWWIJ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Livvic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/livvic/livvic-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlff68QeslfCQfK9WQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Livvic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/livvic/livvic-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdu6tV3GY_etWWIJ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Livvic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/livvic/livvic-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/livvic/livvic.svg" - }, - { - "name": "Lobster", - "fontFamily": "Lobster, system-ui", - "slug": "lobster", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lobster/v30/neILzCirqoswsqX9_oWsMqEzSJQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lobster", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lobster/lobster-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lobster/lobster.svg" - }, - { - "name": "Lobster Two", - "fontFamily": "Lobster Two, system-ui", - "slug": "lobster-two", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lobstertwo/v20/BngMUXZGTXPUvIoyV6yN59fK7KSJ4ACD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lobster Two", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lobster-two/lobster-two-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lobstertwo/v20/BngOUXZGTXPUvIoyV6yN5-fI5qCr5RCDY_k.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Lobster Two", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lobster-two/lobster-two-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lobstertwo/v20/BngRUXZGTXPUvIoyV6yN5-92w4CByxyKeuDp.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lobster Two", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lobster-two/lobster-two-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lobstertwo/v20/BngTUXZGTXPUvIoyV6yN5-fI3hyEwRiof_DpXMY.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Lobster Two", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lobster-two/lobster-two-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lobster-two/lobster-two.svg" - }, - { - "name": "Londrina Outline", - "fontFamily": "Londrina Outline, system-ui", - "slug": "londrina-outline", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/londrinaoutline/v27/C8c44dM8vmb14dfsZxhetg3pDH-SfuoxrSKMDvI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Londrina Outline", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/londrina-outline/londrina-outline-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/londrina-outline/londrina-outline.svg" - }, - { - "name": "Londrina Shadow", - "fontFamily": "Londrina Shadow, system-ui", - "slug": "londrina-shadow", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/londrinashadow/v26/oPWX_kB4kOQoWNJmjxLV5JuoCUlXRlaSxkrMCQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Londrina Shadow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/londrina-shadow/londrina-shadow-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/londrina-shadow/londrina-shadow.svg" - }, - { - "name": "Londrina Sketch", - "fontFamily": "Londrina Sketch, system-ui", - "slug": "londrina-sketch", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/londrinasketch/v25/c4m41npxGMTnomOHtRU68eIJn8qfWWn5Pos6CA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Londrina Sketch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/londrina-sketch/londrina-sketch-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/londrina-sketch/londrina-sketch.svg" - }, - { - "name": "Londrina Solid", - "fontFamily": "Londrina Solid, system-ui", - "slug": "londrina-solid", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/londrinasolid/v17/flUjRq6sw40kQEJxWNgkLuudGfs9KBYesZHhV64.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Londrina Solid", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/londrina-solid/londrina-solid-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/londrinasolid/v17/flUiRq6sw40kQEJxWNgkLuudGfv1CjY0n53oTrcL.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Londrina Solid", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/londrina-solid/londrina-solid-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/londrinasolid/v17/flUhRq6sw40kQEJxWNgkLuudGcNZIhI8tIHh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Londrina Solid", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/londrina-solid/londrina-solid-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/londrinasolid/v17/flUiRq6sw40kQEJxWNgkLuudGfvdDzY0n53oTrcL.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Londrina Solid", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/londrina-solid/londrina-solid-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/londrina-solid/londrina-solid.svg" - }, - { - "name": "Long Cang", - "fontFamily": "Long Cang, cursive", - "slug": "long-cang", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/longcang/v17/LYjAdGP8kkgoTec8zkRgrXArXN7HWQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Long Cang", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/long-cang/long-cang-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/long-cang/long-cang.svg" - }, - { - "name": "Lora", - "fontFamily": "Lora, serif", - "slug": "lora", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787weuyJGmKxemMeZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lora", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lora/lora-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787wsuyJGmKxemMeZ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lora", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lora/lora-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787zAvCJGmKxemMeZ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lora", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lora/lora-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787z5vCJGmKxemMeZ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lora", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lora/lora-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFkqh8ndeZzZ0.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Lora", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lora/lora-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-PgFkqh8ndeZzZ0.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Lora", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lora/lora-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-BQCkqh8ndeZzZ0.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Lora", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lora/lora-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-C0Ckqh8ndeZzZ0.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Lora", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lora/lora-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lora/lora.svg" - }, - { - "name": "Love Light", - "fontFamily": "Love Light, cursive", - "slug": "love-light", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lovelight/v6/t5tlIR0TNJyZWimpNAXDjKbCyTHuspo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Love Light", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/love-light/love-light-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/love-light/love-light.svg" - }, - { - "name": "Love Ya Like A Sister", - "fontFamily": "Love Ya Like A Sister, system-ui", - "slug": "love-ya-like-a-sister", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/loveyalikeasister/v20/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be78nZcsGGycA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Love Ya Like A Sister", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/love-ya-like-a-sister/love-ya-like-a-sister-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/love-ya-like-a-sister/love-ya-like-a-sister.svg" - }, - { - "name": "Loved by the King", - "fontFamily": "Loved by the King, cursive", - "slug": "loved-by-the-king", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lovedbytheking/v21/Gw6gwdP76VDVJNXerebZxUMeRXUF2PiNlXFu2R64.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Loved by the King", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/loved-by-the-king/loved-by-the-king-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/loved-by-the-king/loved-by-the-king.svg" - }, - { - "name": "Lovers Quarrel", - "fontFamily": "Lovers Quarrel, cursive", - "slug": "lovers-quarrel", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/loversquarrel/v23/Yq6N-LSKXTL-5bCy8ksBzpQ_-zAsY7pO6siz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lovers Quarrel", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lovers-quarrel/lovers-quarrel-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lovers-quarrel/lovers-quarrel.svg" - }, - { - "name": "Luckiest Guy", - "fontFamily": "Luckiest Guy, system-ui", - "slug": "luckiest-guy", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/luckiestguy/v22/_gP_1RrxsjcxVyin9l9n_j2RStR3qDpraA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Luckiest Guy", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/luckiest-guy/luckiest-guy-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/luckiest-guy/luckiest-guy.svg" - }, - { - "name": "Lugrasimo", - "fontFamily": "Lugrasimo, cursive", - "slug": "lugrasimo", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lugrasimo/v4/qkBXXvoF_s_eT9c7Y7ae5JRLkAXbMQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lugrasimo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lugrasimo/lugrasimo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lugrasimo/lugrasimo.svg" - }, - { - "name": "Lumanosimo", - "fontFamily": "Lumanosimo, cursive", - "slug": "lumanosimo", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lumanosimo/v4/K2F0fZBYg_JDSEZHEfO8AoqKAyLzfWo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lumanosimo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lumanosimo/lumanosimo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lumanosimo/lumanosimo.svg" - }, - { - "name": "Lunasima", - "fontFamily": "Lunasima, sans-serif", - "slug": "lunasima", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lunasima/v1/wEO-EBvPh9RSOj7JFAwle94H1VIe.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lunasima", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lunasima/lunasima-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lunasima/v1/wEO5EBvPh9RSOj7JFDSZVPoP_k4XiKvO.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lunasima", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lunasima/lunasima-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lunasima/lunasima.svg" - }, - { - "name": "Lusitana", - "fontFamily": "Lusitana, serif", - "slug": "lusitana", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lusitana/v13/CSR84z9ShvucWzsMKxhaRuMiSct_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lusitana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lusitana/lusitana-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lusitana/v13/CSR74z9ShvucWzsMKyDmaccqYtd2vfwk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lusitana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lusitana/lusitana-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lusitana/lusitana.svg" - }, - { - "name": "Lustria", - "fontFamily": "Lustria, serif", - "slug": "lustria", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/lustria/v13/9oRONYodvDEyjuhOrCg5MtPyAcg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lustria", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lustria/lustria-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/lustria/lustria.svg" - }, - { - "name": "Luxurious Roman", - "fontFamily": "Luxurious Roman, system-ui", - "slug": "luxurious-roman", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/luxuriousroman/v8/buEupou_ZcP1w0yTKxJJokVSmbpqYgckeo9RMw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Luxurious Roman", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/luxurious-roman/luxurious-roman-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/luxurious-roman/luxurious-roman.svg" - }, - { - "name": "Luxurious Script", - "fontFamily": "Luxurious Script, cursive", - "slug": "luxurious-script", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/luxuriousscript/v7/ahcCv9e7yydulT32KZ0rBIoD7DzMg0rOby1JtYk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Luxurious Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/luxurious-script/luxurious-script-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/luxurious-script/luxurious-script.svg" - }, - { - "name": "M PLUS 1", - "fontFamily": "M PLUS 1, sans-serif", - "slug": "m-plus-1", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSe78nZcsGGycA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "M PLUS 1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1/m-plus-1-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51Sa78nZcsGGycA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "M PLUS 1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1/m-plus-1-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Cya78nZcsGGycA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "M PLUS 1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1/m-plus-1-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSa78nZcsGGycA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "M PLUS 1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1/m-plus-1-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Zya78nZcsGGycA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "M PLUS 1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1/m-plus-1-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5iyG78nZcsGGycA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "M PLUS 1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1/m-plus-1-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5siG78nZcsGGycA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "M PLUS 1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1/m-plus-1-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51SG78nZcsGGycA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "M PLUS 1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1/m-plus-1-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5_CG78nZcsGGycA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "M PLUS 1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1/m-plus-1-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1/m-plus-1.svg" - }, - { - "name": "M PLUS 1 Code", - "fontFamily": "M PLUS 1 Code, monospace", - "slug": "m-plus-1-code", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1code/v12/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0XHpapwmdZhY.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "M PLUS 1 Code", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1-code/m-plus-1-code-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1code/v12/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7gN0HHpapwmdZhY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "M PLUS 1 Code", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1-code/m-plus-1-code-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1code/v12/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7jT0HHpapwmdZhY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "M PLUS 1 Code", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1-code/m-plus-1-code-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1code/v12/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0HHpapwmdZhY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "M PLUS 1 Code", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1-code/m-plus-1-code-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1code/v12/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7i_0HHpapwmdZhY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "M PLUS 1 Code", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1-code/m-plus-1-code-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1code/v12/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hT13HpapwmdZhY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "M PLUS 1 Code", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1-code/m-plus-1-code-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1code/v12/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hq13HpapwmdZhY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "M PLUS 1 Code", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1-code/m-plus-1-code-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1-code/m-plus-1-code.svg" - }, - { - "name": "M PLUS 1p", - "fontFamily": "M PLUS 1p, sans-serif", - "slug": "m-plus-1p", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1p/v28/e3tleuShHdiFyPFzBRrQnDQAUW3aq-5N.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "M PLUS 1p", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1p/m-plus-1p-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQVBYge0PWovdU4w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "M PLUS 1p", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1p/m-plus-1p-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1p/v28/e3tjeuShHdiFyPFzBRro-D4Ec2jKqw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "M PLUS 1p", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1p/m-plus-1p-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQDBcge0PWovdU4w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "M PLUS 1p", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1p/m-plus-1p-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQRBEge0PWovdU4w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "M PLUS 1p", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1p/m-plus-1p-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQWBIge0PWovdU4w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "M PLUS 1p", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1p/m-plus-1p-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQfBMge0PWovdU4w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "M PLUS 1p", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1p/m-plus-1p-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-1p/m-plus-1p.svg" - }, - { - "name": "M PLUS 2", - "fontFamily": "M PLUS 2, sans-serif", - "slug": "m-plus-2", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa-VxlqHrzNgAw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "M PLUS 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-2/m-plus-2-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwua6VxlqHrzNgAw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "M PLUS 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-2/m-plus-2-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwZ66VxlqHrzNgAw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "M PLUS 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-2/m-plus-2-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa6VxlqHrzNgAw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "M PLUS 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-2/m-plus-2-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwC66VxlqHrzNgAw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "M PLUS 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-2/m-plus-2-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw56mVxlqHrzNgAw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "M PLUS 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-2/m-plus-2-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw3qmVxlqHrzNgAw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "M PLUS 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-2/m-plus-2-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwuamVxlqHrzNgAw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "M PLUS 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-2/m-plus-2-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwkKmVxlqHrzNgAw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "M PLUS 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-2/m-plus-2-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-2/m-plus-2.svg" - }, - { - "name": "M PLUS Code Latin", - "fontFamily": "M PLUS Code Latin, sans-serif", - "slug": "m-plus-code-latin", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mpluscodelatin/v13/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbB6i5MqF9TRwg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "M PLUS Code Latin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-code-latin/m-plus-code-latin-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mpluscodelatin/v13/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1MbA6i5MqF9TRwg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "M PLUS Code Latin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-code-latin/m-plus-code-latin-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mpluscodelatin/v13/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1BjA6i5MqF9TRwg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "M PLUS Code Latin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-code-latin/m-plus-code-latin-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mpluscodelatin/v13/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbA6i5MqF9TRwg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "M PLUS Code Latin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-code-latin/m-plus-code-latin-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mpluscodelatin/v13/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1HTA6i5MqF9TRwg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "M PLUS Code Latin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-code-latin/m-plus-code-latin-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mpluscodelatin/v13/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1JjH6i5MqF9TRwg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "M PLUS Code Latin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-code-latin/m-plus-code-latin-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mpluscodelatin/v13/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1KHH6i5MqF9TRwg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "M PLUS Code Latin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-code-latin/m-plus-code-latin-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-code-latin/m-plus-code-latin.svg" - }, - { - "name": "M PLUS Rounded 1c", - "fontFamily": "M PLUS Rounded 1c, sans-serif", - "slug": "m-plus-rounded-1c", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplusrounded1c/v15/VdGCAYIAV6gnpUpoWwNkYvrugw9RuM3ixLsg6-av1x0.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "M PLUS Rounded 1c", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-rounded-1c/m-plus-rounded-1c-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0q5psKxeqmzgRK.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "M PLUS Rounded 1c", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-rounded-1c/m-plus-rounded-1c-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplusrounded1c/v15/VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWGzr8C7vav.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "M PLUS Rounded 1c", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-rounded-1c/m-plus-rounded-1c-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM1y55sKxeqmzgRK.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "M PLUS Rounded 1c", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-rounded-1c/m-plus-rounded-1c-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM064ZsKxeqmzgRK.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "M PLUS Rounded 1c", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-rounded-1c/m-plus-rounded-1c-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0m4psKxeqmzgRK.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "M PLUS Rounded 1c", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-rounded-1c/m-plus-rounded-1c-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0C45sKxeqmzgRK.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "M PLUS Rounded 1c", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-rounded-1c/m-plus-rounded-1c-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/m-plus-rounded-1c/m-plus-rounded-1c.svg" - }, - { - "name": "Ma Shan Zheng", - "fontFamily": "Ma Shan Zheng, cursive", - "slug": "ma-shan-zheng", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mashanzheng/v10/NaPecZTRCLxvwo41b4gvzkXaRMTsDIRSfr0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ma Shan Zheng", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ma-shan-zheng/ma-shan-zheng-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ma-shan-zheng/ma-shan-zheng.svg" - }, - { - "name": "Macondo", - "fontFamily": "Macondo, system-ui", - "slug": "macondo", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/macondo/v25/RrQQboN9-iB1IXmOS2XO0LBBd4Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Macondo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/macondo/macondo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/macondo/macondo.svg" - }, - { - "name": "Macondo Swash Caps", - "fontFamily": "Macondo Swash Caps, system-ui", - "slug": "macondo-swash-caps", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/macondoswashcaps/v24/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Oekoa_mm5bA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Macondo Swash Caps", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/macondo-swash-caps/macondo-swash-caps-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/macondo-swash-caps/macondo-swash-caps.svg" - }, - { - "name": "Mada", - "fontFamily": "Mada, sans-serif", - "slug": "mada", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFlOkHkw2-m9x2iC.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mada/mada-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFmQkHkw2-m9x2iC.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mada/mada-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFnOkHkw2-m9x2iC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mada/mada-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFn8kHkw2-m9x2iC.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mada/mada-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFkQl3kw2-m9x2iC.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mada/mada-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFkpl3kw2-m9x2iC.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mada/mada-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFlOl3kw2-m9x2iC.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Mada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mada/mada-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFlnl3kw2-m9x2iC.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Mada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mada/mada-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mada/mada.svg" - }, - { - "name": "Magra", - "fontFamily": "Magra, sans-serif", - "slug": "magra", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/magra/v14/uK_94ruaZus72k5xIDMfO-ed.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Magra", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/magra/magra-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/magra/v14/uK_w4ruaZus72nbNDxcXEPuUX1ow.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Magra", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/magra/magra-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/magra/magra.svg" - }, - { - "name": "Maiden Orange", - "fontFamily": "Maiden Orange, serif", - "slug": "maiden-orange", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/maidenorange/v29/kJE1BuIX7AUmhi2V4m08kb1XjOZdCZS8FY8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Maiden Orange", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/maiden-orange/maiden-orange-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/maiden-orange/maiden-orange.svg" - }, - { - "name": "Maitree", - "fontFamily": "Maitree, serif", - "slug": "maitree", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklhGNWJGovLdh6OE.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Maitree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/maitree/maitree-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklnWOWJGovLdh6OE.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Maitree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/maitree/maitree-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/maitree/v10/MjQGmil5tffhpBrkrtmmfJmDoL4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Maitree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/maitree/maitree-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrkli2PWJGovLdh6OE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Maitree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/maitree/maitree-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklgGIWJGovLdh6OE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Maitree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/maitree/maitree-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklmWJWJGovLdh6OE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Maitree", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/maitree/maitree-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/maitree/maitree.svg" - }, - { - "name": "Major Mono Display", - "fontFamily": "Major Mono Display, monospace", - "slug": "major-mono-display", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/majormonodisplay/v16/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLCn2QIndPww.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Major Mono Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/major-mono-display/major-mono-display-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/major-mono-display/major-mono-display.svg" - }, - { - "name": "Mako", - "fontFamily": "Mako, sans-serif", - "slug": "mako", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mako/v18/H4coBX6Mmc_Z0ST09g478Lo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mako", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mako/mako-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mako/mako.svg" - }, - { - "name": "Mali", - "fontFamily": "Mali, cursive", - "slug": "mali", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QOLlKlRaJdbWgdY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mali/mali-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8wlVQIfTTkdbJYA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Mali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mali/mali-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QIbmKlRaJdbWgdY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mali/mali-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8plZQIfTTkdbJYA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Mali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mali/mali-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mali/v10/N0ba2SRONuN4eCrODlxxOd8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mali/mali-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mali/v10/N0bU2SRONuN4SCjECn50Kd_PmA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Mali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mali/mali-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QN7nKlRaJdbWgdY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mali/mali-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8_ldQIfTTkdbJYA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Mali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mali/mali-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QPLgKlRaJdbWgdY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mali/mali-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj80lBQIfTTkdbJYA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Mali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mali/mali-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QJbhKlRaJdbWgdY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mali/mali-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8tlFQIfTTkdbJYA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Mali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mali/mali-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mali/mali.svg" - }, - { - "name": "Mallanna", - "fontFamily": "Mallanna, sans-serif", - "slug": "mallanna", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mallanna/v13/hv-Vlzx-KEQb84YaDGwzEzRwVvJ-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mallanna", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mallanna/mallanna-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mallanna/mallanna.svg" - }, - { - "name": "Mandali", - "fontFamily": "Mandali, sans-serif", - "slug": "mandali", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mandali/v14/LhWlMVbYOfASNfNUVFk1ZPdcKtA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mandali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mandali/mandali-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mandali/mandali.svg" - }, - { - "name": "Manjari", - "fontFamily": "Manjari, sans-serif", - "slug": "manjari", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/manjari/v11/k3kSo8UPMOBO2w1UdbroK2vFIaOV8A.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Manjari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manjari/manjari-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/manjari/v11/k3kQo8UPMOBO2w1UTd7iL0nAMaM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Manjari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manjari/manjari-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/manjari/v11/k3kVo8UPMOBO2w1UdWLNC0HrLaqM6Q4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Manjari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manjari/manjari-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manjari/manjari.svg" - }, - { - "name": "Manrope", - "fontFamily": "Manrope, sans-serif", - "slug": "manrope", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59FO_F87jxeN7B.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Manrope", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manrope/manrope-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk6jFO_F87jxeN7B.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Manrope", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manrope/manrope-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_F87jxeN7B.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Manrope", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manrope/manrope-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_F87jxeN7B.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Manrope", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manrope/manrope-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_F87jxeN7B.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Manrope", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manrope/manrope-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_F87jxeN7B.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Manrope", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manrope/manrope-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_F87jxeN7B.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Manrope", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manrope/manrope-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manrope/manrope.svg" - }, - { - "name": "Mansalva", - "fontFamily": "Mansalva, cursive", - "slug": "mansalva", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mansalva/v14/aWB4m0aacbtDfvq5NJllI47vdyBg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mansalva", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mansalva/mansalva-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mansalva/mansalva.svg" - }, - { - "name": "Manuale", - "fontFamily": "Manuale, serif", - "slug": "manuale", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeG6e7wD1TB_JHHY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Manuale", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manuale/manuale-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHke7wD1TB_JHHY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Manuale", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manuale/manuale-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHWe7wD1TB_JHHY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Manuale", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manuale/manuale-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeE6fLwD1TB_JHHY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Manuale", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manuale/manuale-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeEDfLwD1TB_JHHY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Manuale", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manuale/manuale-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeFkfLwD1TB_JHHY.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Manuale", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manuale/manuale-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOApA3zRdIWHYr8M.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Manuale", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manuale/manuale-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOFRA3zRdIWHYr8M.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Manuale", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manuale/manuale-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOGZA3zRdIWHYr8M.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Manuale", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manuale/manuale-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOIpH3zRdIWHYr8M.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Manuale", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manuale/manuale-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOLNH3zRdIWHYr8M.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Manuale", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manuale/manuale-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsONRH3zRdIWHYr8M.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Manuale", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manuale/manuale-800-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/manuale/manuale.svg" - }, - { - "name": "Marcellus", - "fontFamily": "Marcellus, serif", - "slug": "marcellus", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/marcellus/v13/wEO_EBrOk8hQLDvIAF8FUfAL3EsHiA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Marcellus", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/marcellus/marcellus-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/marcellus/marcellus.svg" - }, - { - "name": "Marcellus SC", - "fontFamily": "Marcellus SC, serif", - "slug": "marcellus-sc", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/marcellussc/v13/ke8iOgUHP1dg-Rmi6RWjbLEPgdydGKikhA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Marcellus SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/marcellus-sc/marcellus-sc-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/marcellus-sc/marcellus-sc.svg" - }, - { - "name": "Marck Script", - "fontFamily": "Marck Script, cursive", - "slug": "marck-script", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/marckscript/v20/nwpTtK2oNgBA3Or78gapdwuCzyI-aMPF7Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Marck Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/marck-script/marck-script-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/marck-script/marck-script.svg" - }, - { - "name": "Margarine", - "fontFamily": "Margarine, system-ui", - "slug": "margarine", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/margarine/v25/qkBXXvoE6trLT9Y7YLye5JRLkAXbMQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Margarine", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/margarine/margarine-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/margarine/margarine.svg" - }, - { - "name": "Marhey", - "fontFamily": "Marhey, system-ui", - "slug": "marhey", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/marhey/v6/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBZVwO2cXiGevOMw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Marhey", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/marhey/marhey-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/marhey/v6/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBctwO2cXiGevOMw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Marhey", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/marhey/marhey-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/marhey/v6/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBflwO2cXiGevOMw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Marhey", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/marhey/marhey-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/marhey/v6/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBRV3O2cXiGevOMw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Marhey", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/marhey/marhey-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/marhey/v6/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBSx3O2cXiGevOMw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Marhey", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/marhey/marhey-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/marhey/marhey.svg" - }, - { - "name": "Markazi Text", - "fontFamily": "Markazi Text, serif", - "slug": "markazi-text", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQT4MlBekmJLo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Markazi Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/markazi-text/markazi-text-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtcaQT4MlBekmJLo.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Markazi Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/markazi-text/markazi-text-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtSqXT4MlBekmJLo.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Markazi Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/markazi-text/markazi-text-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtROXT4MlBekmJLo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Markazi Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/markazi-text/markazi-text-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/markazi-text/markazi-text.svg" - }, - { - "name": "Marko One", - "fontFamily": "Marko One, serif", - "slug": "marko-one", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/markoone/v22/9Btq3DFG0cnVM5lw1haaKpUfrHPzUw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Marko One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/marko-one/marko-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/marko-one/marko-one.svg" - }, - { - "name": "Marmelad", - "fontFamily": "Marmelad, sans-serif", - "slug": "marmelad", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/marmelad/v18/Qw3eZQdSHj_jK2e-8tFLG-YMC0R8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Marmelad", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/marmelad/marmelad-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/marmelad/marmelad.svg" - }, - { - "name": "Martel", - "fontFamily": "Martel, serif", - "slug": "martel", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVqekahRbX9vnDzw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Martel", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martel/martel-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVzeoahRbX9vnDzw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Martel", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martel/martel-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/martel/v10/PN_xRfK9oXHga0XtYcI-jT3L_w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Martel", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martel/martel-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVuewahRbX9vnDzw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Martel", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martel/martel-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV3e0ahRbX9vnDzw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Martel", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martel/martel-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVwe4ahRbX9vnDzw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Martel", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martel/martel-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV5e8ahRbX9vnDzw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Martel", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martel/martel-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martel/martel.svg" - }, - { - "name": "Martel Sans", - "fontFamily": "Martel Sans, sans-serif", - "slug": "martel-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAX5suHFUknqMxQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Martel Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martel-sans/martel-sans-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBz5cuHFUknqMxQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Martel Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martel-sans/martel-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/martelsans/v12/h0GsssGi7VdzDgKjM-4d8ijfze-PPlUu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Martel Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martel-sans/martel-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAH48uHFUknqMxQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Martel Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martel-sans/martel-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBj4suHFUknqMxQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Martel Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martel-sans/martel-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hB_4cuHFUknqMxQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Martel Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martel-sans/martel-sans-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBb4MuHFUknqMxQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Martel Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martel-sans/martel-sans-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martel-sans/martel-sans.svg" - }, - { - "name": "Martian Mono", - "fontFamily": "Martian Mono, monospace", - "slug": "martian-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qus6WD75kdpF2.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Martian Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martian-mono/martian-mono-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY3qu86WD75kdpF2.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Martian Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martian-mono/martian-mono-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY00u86WD75kdpF2.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Martian Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martian-mono/martian-mono-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qu86WD75kdpF2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Martian Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martian-mono/martian-mono-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1Yu86WD75kdpF2.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Martian Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martian-mono/martian-mono-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY20vM6WD75kdpF2.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Martian Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martian-mono/martian-mono-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY2NvM6WD75kdpF2.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Martian Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martian-mono/martian-mono-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY3qvM6WD75kdpF2.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Martian Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martian-mono/martian-mono-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/martian-mono/martian-mono.svg" - }, - { - "name": "Marvel", - "fontFamily": "Marvel, sans-serif", - "slug": "marvel", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/marvel/v16/nwpVtKeoNgBV0qaIkV7ED366zg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Marvel", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/marvel/marvel-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/marvel/v16/nwpXtKeoNgBV0qa4k1TALXuqzhA7.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Marvel", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/marvel/marvel-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/marvel/v16/nwpWtKeoNgBV0qawLXHgB1WmxwkiYQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Marvel", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/marvel/marvel-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/marvel/v16/nwpQtKeoNgBV0qa4k2x8Al-i5QwyYdrc.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Marvel", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/marvel/marvel-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/marvel/marvel.svg" - }, - { - "name": "Mate", - "fontFamily": "Mate, serif", - "slug": "mate", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mate/v17/m8JdjftRd7WZ2z28WoXSaLU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mate", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mate/mate-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mate/v17/m8JTjftRd7WZ6z-2XqfXeLVdbw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Mate", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mate/mate-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mate/mate.svg" - }, - { - "name": "Mate SC", - "fontFamily": "Mate SC, serif", - "slug": "mate-sc", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/matesc/v22/-nF8OGQ1-uoVr2wKyiXZ95OkJwA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mate SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mate-sc/mate-sc-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mate-sc/mate-sc.svg" - }, - { - "name": "Material Icons", - "fontFamily": "Material Icons, monospace", - "slug": "material-icons", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDsNZIhI8tIHh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Icons", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-icons/material-icons-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-icons/material-icons.svg" - }, - { - "name": "Material Icons Outlined", - "fontFamily": "Material Icons Outlined, monospace", - "slug": "material-icons-outlined", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialiconsoutlined/v109/gok-H7zzDkdnRel8-DQ6KAXJ69wP1tGnf4ZGhUcdl5GuI2Ze.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Icons Outlined", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-icons-outlined/material-icons-outlined-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-icons-outlined/material-icons-outlined.svg" - }, - { - "name": "Material Icons Round", - "fontFamily": "Material Icons Round, monospace", - "slug": "material-icons-round", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialiconsround/v108/LDItaoyNOAY6Uewc665JcIzCKsKc_M9flwmMq_fTTvg-.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Icons Round", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-icons-round/material-icons-round-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-icons-round/material-icons-round.svg" - }, - { - "name": "Material Icons Sharp", - "fontFamily": "Material Icons Sharp, monospace", - "slug": "material-icons-sharp", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialiconssharp/v109/oPWQ_lt5nv4pWNJpghLP75WiFR4kLh3kvmvSImEyc0vd.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Icons Sharp", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-icons-sharp/material-icons-sharp-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-icons-sharp/material-icons-sharp.svg" - }, - { - "name": "Material Icons Two Tone", - "fontFamily": "Material Icons Two Tone, monospace", - "slug": "material-icons-two-tone", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialiconstwotone/v112/hESh6WRmNCxEqUmNyh3JDeGxjVVyMg4tHGctNCu3NjDrH_77.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Icons Two Tone", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-icons-two-tone/material-icons-two-tone-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-icons-two-tone/material-icons-two-tone.svg" - }, - { - "name": "Material Symbols Outlined", - "fontFamily": "Material Symbols Outlined, monospace", - "slug": "material-symbols-outlined", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialsymbolsoutlined/v134/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHeembd5zrTgt.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Material Symbols Outlined", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-outlined/material-symbols-outlined-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialsymbolsoutlined/v134/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDAvHOembd5zrTgt.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Material Symbols Outlined", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-outlined/material-symbols-outlined-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialsymbolsoutlined/v134/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDDxHOembd5zrTgt.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Material Symbols Outlined", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-outlined/material-symbols-outlined-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialsymbolsoutlined/v134/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHOembd5zrTgt.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Symbols Outlined", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-outlined/material-symbols-outlined-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialsymbolsoutlined/v134/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCdHOembd5zrTgt.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Material Symbols Outlined", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-outlined/material-symbols-outlined-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialsymbolsoutlined/v134/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDBxG-embd5zrTgt.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Material Symbols Outlined", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-outlined/material-symbols-outlined-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialsymbolsoutlined/v134/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDBIG-embd5zrTgt.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Material Symbols Outlined", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-outlined/material-symbols-outlined-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-outlined/material-symbols-outlined.svg" - }, - { - "name": "Material Symbols Rounded", - "fontFamily": "Material Symbols Rounded, monospace", - "slug": "material-symbols-rounded", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialsymbolsrounded/v133/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIekXxKJKJBjAa8.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Material Symbols Rounded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-rounded/material-symbols-rounded-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialsymbolsrounded/v133/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rAelXxKJKJBjAa8.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Material Symbols Rounded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-rounded/material-symbols-rounded-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialsymbolsrounded/v133/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rNmlXxKJKJBjAa8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Material Symbols Rounded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-rounded/material-symbols-rounded-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialsymbolsrounded/v133/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIelXxKJKJBjAa8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Symbols Rounded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-rounded/material-symbols-rounded-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialsymbolsrounded/v133/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rLWlXxKJKJBjAa8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Material Symbols Rounded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-rounded/material-symbols-rounded-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialsymbolsrounded/v133/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rFmiXxKJKJBjAa8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Material Symbols Rounded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-rounded/material-symbols-rounded-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialsymbolsrounded/v133/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rGCiXxKJKJBjAa8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Material Symbols Rounded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-rounded/material-symbols-rounded-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-rounded/material-symbols-rounded.svg" - }, - { - "name": "Material Symbols Sharp", - "fontFamily": "Material Symbols Sharp, monospace", - "slug": "material-symbols-sharp", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialsymbolssharp/v130/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLozCOJ1H7-knk.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Material Symbols Sharp", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-sharp/material-symbols-sharp-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialsymbolssharp/v130/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxMLojCOJ1H7-knk.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Material Symbols Sharp", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-sharp/material-symbols-sharp-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialsymbolssharp/v130/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxPVojCOJ1H7-knk.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Material Symbols Sharp", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-sharp/material-symbols-sharp-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialsymbolssharp/v130/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLojCOJ1H7-knk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Symbols Sharp", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-sharp/material-symbols-sharp-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialsymbolssharp/v130/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxO5ojCOJ1H7-knk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Material Symbols Sharp", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-sharp/material-symbols-sharp-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialsymbolssharp/v130/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxNVpTCOJ1H7-knk.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Material Symbols Sharp", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-sharp/material-symbols-sharp-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/materialsymbolssharp/v130/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxNspTCOJ1H7-knk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Material Symbols Sharp", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-sharp/material-symbols-sharp-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/material-symbols-sharp/material-symbols-sharp.svg" - }, - { - "name": "Maven Pro", - "fontFamily": "Maven Pro, sans-serif", - "slug": "maven-pro", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8SX25nCpozp5GvU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Maven Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/maven-pro/maven-pro-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Rf25nCpozp5GvU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Maven Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/maven-pro/maven-pro-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8fvx5nCpozp5GvU.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Maven Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/maven-pro/maven-pro-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8cLx5nCpozp5GvU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Maven Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/maven-pro/maven-pro-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8aXx5nCpozp5GvU.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Maven Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/maven-pro/maven-pro-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Yzx5nCpozp5GvU.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Maven Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/maven-pro/maven-pro-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/maven-pro/maven-pro.svg" - }, - { - "name": "McLaren", - "fontFamily": "McLaren, system-ui", - "slug": "mclaren", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mclaren/v17/2EbnL-ZuAXFqZFXISYYf8z2Yt_c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "McLaren", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mclaren/mclaren-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mclaren/mclaren.svg" - }, - { - "name": "Mea Culpa", - "fontFamily": "Mea Culpa, cursive", - "slug": "mea-culpa", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/meaculpa/v6/AMOTz4GcuWbEIuza8jsZms0QW3mqyg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mea Culpa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mea-culpa/mea-culpa-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mea-culpa/mea-culpa.svg" - }, - { - "name": "Meddon", - "fontFamily": "Meddon, cursive", - "slug": "meddon", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/meddon/v24/kmK8ZqA2EgDNeHTZhBdB3y_Aow.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Meddon", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/meddon/meddon-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/meddon/meddon.svg" - }, - { - "name": "MedievalSharp", - "fontFamily": "MedievalSharp, system-ui", - "slug": "medievalsharp", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/medievalsharp/v26/EvOJzAlL3oU5AQl2mP5KdgptAq96MwvXLDk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "MedievalSharp", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/medievalsharp/medievalsharp-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/medievalsharp/medievalsharp.svg" - }, - { - "name": "Medula One", - "fontFamily": "Medula One, system-ui", - "slug": "medula-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/medulaone/v19/YA9Wr0qb5kjJM6l2V0yukiEqs7GtlvY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Medula One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/medula-one/medula-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/medula-one/medula-one.svg" - }, - { - "name": "Meera Inimai", - "fontFamily": "Meera Inimai, sans-serif", - "slug": "meera-inimai", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/meerainimai/v12/845fNMM5EIqOW5MPuvO3ILep_2jDVevnLQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Meera Inimai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/meera-inimai/meera-inimai-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/meera-inimai/meera-inimai.svg" - }, - { - "name": "Megrim", - "fontFamily": "Megrim, system-ui", - "slug": "megrim", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/megrim/v16/46kulbz5WjvLqJZlbWXgd0RY1g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Megrim", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/megrim/megrim-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/megrim/megrim.svg" - }, - { - "name": "Meie Script", - "fontFamily": "Meie Script, cursive", - "slug": "meie-script", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/meiescript/v21/_LOImzDK7erRjhunIspaMjxn5IXg0WDz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Meie Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/meie-script/meie-script-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/meie-script/meie-script.svg" - }, - { - "name": "Meow Script", - "fontFamily": "Meow Script, cursive", - "slug": "meow-script", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/meowscript/v5/0FlQVPqanlaJrtr8AnJ0ESch0_0CfDf1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Meow Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/meow-script/meow-script-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/meow-script/meow-script.svg" - }, - { - "name": "Merienda", - "fontFamily": "Merienda, cursive", - "slug": "merienda", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5JHhoSU78QGBV0A.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Merienda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merienda/merienda-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5enhoSU78QGBV0A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Merienda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merienda/merienda-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5SHhoSU78QGBV0A.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Merienda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merienda/merienda-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5pH9oSU78QGBV0A.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Merienda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merienda/merienda-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5nX9oSU78QGBV0A.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Merienda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merienda/merienda-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5-n9oSU78QGBV0A.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Merienda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merienda/merienda-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5039oSU78QGBV0A.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Merienda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merienda/merienda-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merienda/merienda.svg" - }, - { - "name": "Merriweather", - "fontFamily": "Merriweather, serif", - "slug": "merriweather", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l521wRpX837pvjxPA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Merriweather", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merriweather/merriweather-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7lXcf_hP3hPGWH.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Merriweather", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merriweather/merriweather-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merriweather/v30/u-440qyriQwlOrhSvowK_l5OeyxNV-bnrw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Merriweather", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merriweather/merriweather-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merriweather/v30/u-4m0qyriQwlOrhSvowK_l5-eSZJdeP3r-Ho.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Merriweather", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merriweather/merriweather-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52xwNpX837pvjxPA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Merriweather", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merriweather/merriweather-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR71Wsf_hP3hPGWH.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Merriweather", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merriweather/merriweather-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52_wFpX837pvjxPA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Merriweather", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merriweather/merriweather-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7NWMf_hP3hPGWH.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Merriweather", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merriweather/merriweather-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merriweather/merriweather.svg" - }, - { - "name": "Merriweather Sans", - "fontFamily": "Merriweather Sans, sans-serif", - "slug": "merriweather-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZ_O4ljuEG7xFHnQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Merriweather Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merriweather-sans/merriweather-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZou4ljuEG7xFHnQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Merriweather Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merriweather-sans/merriweather-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZkO4ljuEG7xFHnQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Merriweather Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merriweather-sans/merriweather-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZfOkljuEG7xFHnQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Merriweather Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merriweather-sans/merriweather-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZRekljuEG7xFHnQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Merriweather Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merriweather-sans/merriweather-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZIukljuEG7xFHnQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Merriweather Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merriweather-sans/merriweather-sans-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq2TzesCzRRXnaur.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Merriweather Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merriweather-sans/merriweather-sans-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3NzesCzRRXnaur.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Merriweather Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merriweather-sans/merriweather-sans-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3_zesCzRRXnaur.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Merriweather Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merriweather-sans/merriweather-sans-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0TyusCzRRXnaur.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Merriweather Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merriweather-sans/merriweather-sans-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0qyusCzRRXnaur.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Merriweather Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merriweather-sans/merriweather-sans-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq1NyusCzRRXnaur.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Merriweather Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merriweather-sans/merriweather-sans-800-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/merriweather-sans/merriweather-sans.svg" - }, - { - "name": "Metal", - "fontFamily": "Metal, system-ui", - "slug": "metal", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/metal/v30/lW-wwjUJIXTo7i3nnoQAUdN2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Metal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/metal/metal-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/metal/metal.svg" - }, - { - "name": "Metal Mania", - "fontFamily": "Metal Mania, system-ui", - "slug": "metal-mania", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/metalmania/v22/RWmMoKWb4e8kqMfBUdPFJeXCg6UKDXlq.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Metal Mania", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/metal-mania/metal-mania-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/metal-mania/metal-mania.svg" - }, - { - "name": "Metamorphous", - "fontFamily": "Metamorphous, system-ui", - "slug": "metamorphous", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/metamorphous/v20/Wnz8HA03aAXcC39ZEX5y1330PCCthTsmaQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Metamorphous", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/metamorphous/metamorphous-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/metamorphous/metamorphous.svg" - }, - { - "name": "Metrophobic", - "fontFamily": "Metrophobic, sans-serif", - "slug": "metrophobic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/metrophobic/v23/sJoA3LZUhMSAPV_u0qwiAT-J737FPEEL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Metrophobic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/metrophobic/metrophobic-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/metrophobic/metrophobic.svg" - }, - { - "name": "Michroma", - "fontFamily": "Michroma, sans-serif", - "slug": "michroma", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/michroma/v19/PN_zRfy9qWD8fEagAMg6rzjb_-Da.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Michroma", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/michroma/michroma-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/michroma/michroma.svg" - }, - { - "name": "Milonga", - "fontFamily": "Milonga, system-ui", - "slug": "milonga", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/milonga/v22/SZc53FHnIaK9W5kffz3GkUrS8DI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Milonga", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/milonga/milonga-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/milonga/milonga.svg" - }, - { - "name": "Miltonian", - "fontFamily": "Miltonian, system-ui", - "slug": "miltonian", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/miltonian/v30/zOL-4pbPn6Ne9JqTg9mr6e5As-FeiQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Miltonian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/miltonian/miltonian-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/miltonian/miltonian.svg" - }, - { - "name": "Miltonian Tattoo", - "fontFamily": "Miltonian Tattoo, system-ui", - "slug": "miltonian-tattoo", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/miltoniantattoo/v32/EvOUzBRL0o0kCxF-lcMCQxlpVsA_FwP8MDBku-s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Miltonian Tattoo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/miltonian-tattoo/miltonian-tattoo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/miltonian-tattoo/miltonian-tattoo.svg" - }, - { - "name": "Mina", - "fontFamily": "Mina, sans-serif", - "slug": "mina", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mina/v11/-nFzOGc18vARrz9j7i3y65o.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mina/mina-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mina/v11/-nF8OGc18vARl4NMyiXZ95OkJwA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mina/mina-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mina/mina.svg" - }, - { - "name": "Mingzat", - "fontFamily": "Mingzat, sans-serif", - "slug": "mingzat", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mingzat/v6/0QIgMX5C-o-oWWyvBttkm_mv670.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mingzat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mingzat/mingzat-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mingzat/mingzat.svg" - }, - { - "name": "Miniver", - "fontFamily": "Miniver, system-ui", - "slug": "miniver", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/miniver/v25/eLGcP-PxIg-5H0vC770Cy8r8fWA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Miniver", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/miniver/miniver-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/miniver/miniver.svg" - }, - { - "name": "Miriam Libre", - "fontFamily": "Miriam Libre, sans-serif", - "slug": "miriam-libre", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/miriamlibre/v14/DdTh798HsHwubBAqfkcBTL_vYJn_Teun9g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Miriam Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/miriam-libre/miriam-libre-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/miriamlibre/v14/DdT-798HsHwubBAqfkcBTL_X3LbbRcC7_-Z7Hg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Miriam Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/miriam-libre/miriam-libre-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/miriam-libre/miriam-libre.svg" - }, - { - "name": "Mirza", - "fontFamily": "Mirza, serif", - "slug": "mirza", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mirza/v17/co3ImWlikiN5EurdKMewsrvI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mirza", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mirza/mirza-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mirza/v17/co3FmWlikiN5EtIpAeO4mafBomDi.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mirza", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mirza/mirza-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mirza/v17/co3FmWlikiN5EtIFBuO4mafBomDi.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mirza", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mirza/mirza-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mirza/v17/co3FmWlikiN5EtJhB-O4mafBomDi.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mirza", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mirza/mirza-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mirza/mirza.svg" - }, - { - "name": "Miss Fajardose", - "fontFamily": "Miss Fajardose, cursive", - "slug": "miss-fajardose", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/missfajardose/v22/E21-_dn5gvrawDdPFVl-N0Ajb8qvWPaJq4no.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Miss Fajardose", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/miss-fajardose/miss-fajardose-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/miss-fajardose/miss-fajardose.svg" - }, - { - "name": "Mitr", - "fontFamily": "Mitr, sans-serif", - "slug": "mitr", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8fMZFJDUc1NECPY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mitr", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mitr/mitr-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8ZcaFJDUc1NECPY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mitr", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mitr/mitr-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mitr/v11/pxiLypw5ucZFyTsyMJj_b1o.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mitr", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mitr/mitr-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8c8bFJDUc1NECPY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mitr", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mitr/mitr-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8eMcFJDUc1NECPY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mitr", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mitr/mitr-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8YcdFJDUc1NECPY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mitr", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mitr/mitr-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mitr/mitr.svg" - }, - { - "name": "Mochiy Pop One", - "fontFamily": "Mochiy Pop One, sans-serif", - "slug": "mochiy-pop-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mochiypopone/v9/QdVPSTA9Jh-gg-5XZP2UmU4O9kwwD3s6ZKAi.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mochiy Pop One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mochiy-pop-one/mochiy-pop-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mochiy-pop-one/mochiy-pop-one.svg" - }, - { - "name": "Mochiy Pop P One", - "fontFamily": "Mochiy Pop P One, sans-serif", - "slug": "mochiy-pop-p-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mochiypoppone/v9/Ktk2AKuPeY_td1-h9LayHYWCjAqyN4O3WYZB_sU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mochiy Pop P One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mochiy-pop-p-one/mochiy-pop-p-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mochiy-pop-p-one/mochiy-pop-p-one.svg" - }, - { - "name": "Modak", - "fontFamily": "Modak, system-ui", - "slug": "modak", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/modak/v18/EJRYQgs1XtIEsnMH8BVZ76KU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Modak", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/modak/modak-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/modak/modak.svg" - }, - { - "name": "Modern Antiqua", - "fontFamily": "Modern Antiqua, system-ui", - "slug": "modern-antiqua", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/modernantiqua/v24/NGStv5TIAUg6Iq_RLNo_2dp1sI1Ea2u0c3Gi.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Modern Antiqua", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/modern-antiqua/modern-antiqua-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/modern-antiqua/modern-antiqua.svg" - }, - { - "name": "Mogra", - "fontFamily": "Mogra, system-ui", - "slug": "mogra", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mogra/v19/f0X40eSs8c95TBo4DvLmxtnG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mogra", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mogra/mogra-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mogra/mogra.svg" - }, - { - "name": "Mohave", - "fontFamily": "Mohave, sans-serif", - "slug": "mohave", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdif_HvCQopLSvBk.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mohave", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mohave/mohave-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdnn_HvCQopLSvBk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mohave", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mohave/mohave-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdkv_HvCQopLSvBk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mohave", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mohave/mohave-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdqf4HvCQopLSvBk.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mohave", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mohave/mohave-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdp74HvCQopLSvBk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mohave", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mohave/mohave-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8qLOaprDXrBlSVw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Mohave", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mohave/mohave-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G89rOaprDXrBlSVw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Mohave", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mohave/mohave-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8xLOaprDXrBlSVw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Mohave", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mohave/mohave-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8KLSaprDXrBlSVw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Mohave", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mohave/mohave-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8EbSaprDXrBlSVw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Mohave", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mohave/mohave-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mohave/mohave.svg" - }, - { - "name": "Moirai One", - "fontFamily": "Moirai One, system-ui", - "slug": "moirai-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/moiraione/v1/2sDbZGFUgJLJmby6xgNGT0WWB7UcfCg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Moirai One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/moirai-one/moirai-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/moirai-one/moirai-one.svg" - }, - { - "name": "Molengo", - "fontFamily": "Molengo, sans-serif", - "slug": "molengo", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/molengo/v16/I_uuMpWeuBzZNBtQbbRQkiCvs5Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Molengo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/molengo/molengo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/molengo/molengo.svg" - }, - { - "name": "Molle", - "fontFamily": "Molle, cursive", - "slug": "molle", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/molle/v23/E21n_dL5hOXFhWEsXzgmVydREus.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Molle", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/molle/molle-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/molle/molle.svg" - }, - { - "name": "Monda", - "fontFamily": "Monda, sans-serif", - "slug": "monda", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/monda/v16/TK3tWkYFABsmjvpmNBsLvPdG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Monda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/monda/monda-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/monda/v16/TK3gWkYFABsmjsLaGz8Dl-tPKo2t.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Monda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/monda/monda-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/monda/monda.svg" - }, - { - "name": "Monofett", - "fontFamily": "Monofett, monospace", - "slug": "monofett", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/monofett/v23/mFTyWbofw6zc9NtnW43SuRwr0VJ7.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Monofett", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/monofett/monofett-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/monofett/monofett.svg" - }, - { - "name": "Monomaniac One", - "fontFamily": "Monomaniac One, sans-serif", - "slug": "monomaniac-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/monomaniacone/v11/4iC06K17YctZjx50EU-QlwPmcqRnqYkB5kwI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Monomaniac One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/monomaniac-one/monomaniac-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/monomaniac-one/monomaniac-one.svg" - }, - { - "name": "Monoton", - "fontFamily": "Monoton, system-ui", - "slug": "monoton", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/monoton/v19/5h1aiZUrOngCibe4fkbBQ2S7FU8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Monoton", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/monoton/monoton-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/monoton/monoton.svg" - }, - { - "name": "Monsieur La Doulaise", - "fontFamily": "Monsieur La Doulaise, cursive", - "slug": "monsieur-la-doulaise", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/monsieurladoulaise/v18/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5ewkEU4HTy.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Monsieur La Doulaise", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/monsieur-la-doulaise/monsieur-la-doulaise-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/monsieur-la-doulaise/monsieur-la-doulaise.svg" - }, - { - "name": "Montaga", - "fontFamily": "Montaga, serif", - "slug": "montaga", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montaga/v13/H4cnBX2Ml8rCkEO_0gYQ7LO5mqc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Montaga", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montaga/montaga-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montaga/montaga.svg" - }, - { - "name": "Montagu Slab", - "fontFamily": "Montagu Slab, serif", - "slug": "montagu-slab", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montaguslab/v11/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbE3P9Fs7bOSO7.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Montagu Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montagu-slab/montagu-slab-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montaguslab/v11/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkBbEnP9Fs7bOSO7.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Montagu Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montagu-slab/montagu-slab-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montaguslab/v11/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkCFEnP9Fs7bOSO7.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Montagu Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montagu-slab/montagu-slab-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montaguslab/v11/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbEnP9Fs7bOSO7.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Montagu Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montagu-slab/montagu-slab-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montaguslab/v11/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDpEnP9Fs7bOSO7.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Montagu Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montagu-slab/montagu-slab-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montaguslab/v11/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkAFFXP9Fs7bOSO7.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Montagu Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montagu-slab/montagu-slab-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montaguslab/v11/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkA8FXP9Fs7bOSO7.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Montagu Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montagu-slab/montagu-slab-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montagu-slab/montagu-slab.svg" - }, - { - "name": "MonteCarlo", - "fontFamily": "MonteCarlo, cursive", - "slug": "montecarlo", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montecarlo/v11/buEzpo6-f9X01GadLA0G0CoV_NxLeiw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "MonteCarlo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montecarlo/montecarlo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montecarlo/montecarlo.svg" - }, - { - "name": "Montez", - "fontFamily": "Montez, cursive", - "slug": "montez", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montez/v22/845ZNMk5GoGIX8lm1LDeSd-R_g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Montez", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montez/montez-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montez/montez.svg" - }, - { - "name": "Montserrat", - "fontFamily": "Montserrat, sans-serif", - "slug": "montserrat", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw-Y3tcoqK5.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Montserrat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat/montserrat-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Ew-Y3tcoqK5.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Montserrat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat/montserrat-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Ew-Y3tcoqK5.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Montserrat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat/montserrat-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-Y3tcoqK5.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Montserrat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat/montserrat-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew-Y3tcoqK5.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Montserrat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat/montserrat-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w-Y3tcoqK5.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Montserrat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat/montserrat-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w-Y3tcoqK5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Montserrat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat/montserrat-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr70w-Y3tcoqK5.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Montserrat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat/montserrat-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC70w-Y3tcoqK5.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Montserrat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat/montserrat-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R8aX9-p7K5ILg.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Montserrat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat/montserrat-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR9aX9-p7K5ILg.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Montserrat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat/montserrat-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq_p9aX9-p7K5ILg.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Montserrat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat/montserrat-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R9aX9-p7K5ILg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Montserrat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat/montserrat-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9aX9-p7K5ILg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Montserrat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat/montserrat-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq3p6aX9-p7K5ILg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Montserrat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat/montserrat-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6aX9-p7K5ILg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Montserrat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat/montserrat-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR6aX9-p7K5ILg.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Montserrat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat/montserrat-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16aX9-p7K5ILg.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Montserrat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat/montserrat-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat/montserrat.svg" - }, - { - "name": "Montserrat Alternates", - "fontFamily": "Montserrat Alternates, sans-serif", - "slug": "montserrat-alternates", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU0xiKfVKphL03l4.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat-alternates/montserrat-alternates-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserratalternates/v17/mFTjWacfw6zH4dthXcyms1lPpC8I_b0juU057p-xIJxp1ml4imo.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat-alternates/montserrat-alternates-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xJIb1ALZH2mBhkw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat-alternates/montserrat-alternates-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8dAbxD-GVxk3Nd.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat-alternates/montserrat-alternates-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xQIX1ALZH2mBhkw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat-alternates/montserrat-alternates-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p95ArxD-GVxk3Nd.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat-alternates/montserrat-alternates-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserratalternates/v17/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J7K3RCJ1b0w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat-alternates/montserrat-alternates-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU057qfVKphL03l4.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat-alternates/montserrat-alternates-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xGIT1ALZH2mBhkw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat-alternates/montserrat-alternates-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8hA7xD-GVxk3Nd.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat-alternates/montserrat-alternates-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xNIP1ALZH2mBhkw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat-alternates/montserrat-alternates-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8NBLxD-GVxk3Nd.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat-alternates/montserrat-alternates-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xUIL1ALZH2mBhkw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat-alternates/montserrat-alternates-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9pBbxD-GVxk3Nd.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat-alternates/montserrat-alternates-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xTIH1ALZH2mBhkw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat-alternates/montserrat-alternates-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p91BrxD-GVxk3Nd.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat-alternates/montserrat-alternates-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xaID1ALZH2mBhkw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat-alternates/montserrat-alternates-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9RB7xD-GVxk3Nd.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat-alternates/montserrat-alternates-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat-alternates/montserrat-alternates.svg" - }, - { - "name": "Montserrat Subrayada", - "fontFamily": "Montserrat Subrayada, sans-serif", - "slug": "montserrat-subrayada", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserratsubrayada/v19/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQE8LYuceqGT-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Montserrat Subrayada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat-subrayada/montserrat-subrayada-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/montserratsubrayada/v19/U9MM6c-o9H7PgjlTHThBnNHGVUORwteQQHe3TcMWg3j36Ebz.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Montserrat Subrayada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat-subrayada/montserrat-subrayada-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/montserrat-subrayada/montserrat-subrayada.svg" - }, - { - "name": "Moo Lah Lah", - "fontFamily": "Moo Lah Lah, system-ui", - "slug": "moo-lah-lah", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/moolahlah/v6/dg4h_p_opKZOA0w1AYcm55wtYQYugjW4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Moo Lah Lah", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/moo-lah-lah/moo-lah-lah-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/moo-lah-lah/moo-lah-lah.svg" - }, - { - "name": "Moon Dance", - "fontFamily": "Moon Dance, cursive", - "slug": "moon-dance", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/moondance/v6/WBLgrEbUbFlYW9ekmGawe2XiKMiokE4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Moon Dance", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/moon-dance/moon-dance-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/moon-dance/moon-dance.svg" - }, - { - "name": "Moul", - "fontFamily": "Moul, system-ui", - "slug": "moul", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/moul/v27/nuF2D__FSo_3E-RYiJCy-00.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Moul", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/moul/moul-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/moul/moul.svg" - }, - { - "name": "Moulpali", - "fontFamily": "Moulpali, sans-serif", - "slug": "moulpali", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/moulpali/v30/H4ckBXKMl9HagUWymyY6wr-wg763.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Moulpali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/moulpali/moulpali-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/moulpali/moulpali.svg" - }, - { - "name": "Mountains of Christmas", - "fontFamily": "Mountains of Christmas, system-ui", - "slug": "mountains-of-christmas", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mountainsofchristmas/v22/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNamMPNpJpc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mountains of Christmas", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mountains-of-christmas/mountains-of-christmas-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mountainsofchristmas/v22/3y9z6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eBGqJFPtCOp6IaEA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mountains of Christmas", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mountains-of-christmas/mountains-of-christmas-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mountains-of-christmas/mountains-of-christmas.svg" - }, - { - "name": "Mouse Memoirs", - "fontFamily": "Mouse Memoirs, sans-serif", - "slug": "mouse-memoirs", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mousememoirs/v17/t5tmIRoSNJ-PH0WNNgDYxdSb7TnFrpOHYh4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mouse Memoirs", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mouse-memoirs/mouse-memoirs-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mouse-memoirs/mouse-memoirs.svg" - }, - { - "name": "Mr Bedfort", - "fontFamily": "Mr Bedfort, cursive", - "slug": "mr-bedfort", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mrbedfort/v22/MQpR-WCtNZSWAdTMwBicliq0XZe_Iy8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mr Bedfort", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mr-bedfort/mr-bedfort-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mr-bedfort/mr-bedfort.svg" - }, - { - "name": "Mr Dafoe", - "fontFamily": "Mr Dafoe, cursive", - "slug": "mr-dafoe", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mrdafoe/v14/lJwE-pIzkS5NXuMMrGiqg7MCxz_C.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mr Dafoe", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mr-dafoe/mr-dafoe-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mr-dafoe/mr-dafoe.svg" - }, - { - "name": "Mr De Haviland", - "fontFamily": "Mr De Haviland, cursive", - "slug": "mr-de-haviland", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mrdehaviland/v14/OpNVnooIhJj96FdB73296ksbOj3C4ULVNTlB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mr De Haviland", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mr-de-haviland/mr-de-haviland-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mr-de-haviland/mr-de-haviland.svg" - }, - { - "name": "Mrs Saint Delafield", - "fontFamily": "Mrs Saint Delafield, cursive", - "slug": "mrs-saint-delafield", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mrssaintdelafield/v13/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cK4tLsubB2w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mrs Saint Delafield", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mrs-saint-delafield/mrs-saint-delafield-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mrs-saint-delafield/mrs-saint-delafield.svg" - }, - { - "name": "Mrs Sheppards", - "fontFamily": "Mrs Sheppards, cursive", - "slug": "mrs-sheppards", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mrssheppards/v23/PN_2Rfm9snC0XUGoEZhb91ig3vjxynMix4Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mrs Sheppards", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mrs-sheppards/mrs-sheppards-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mrs-sheppards/mrs-sheppards.svg" - }, - { - "name": "Ms Madi", - "fontFamily": "Ms Madi, cursive", - "slug": "ms-madi", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/msmadi/v2/HTxsL2UxNnOji5E1N-DPiI7QAYo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ms Madi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ms-madi/ms-madi-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ms-madi/ms-madi.svg" - }, - { - "name": "Mukta", - "fontFamily": "Mukta, sans-serif", - "slug": "mukta", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEOjFma-2HW7ZB_.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mukta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta/mukta-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbFqj1ma-2HW7ZB_.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mukta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta/mukta-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mukta/v14/iJWKBXyXfDDVXYnGp32S0H3f.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mukta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta/mukta-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEyjlma-2HW7ZB_.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mukta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta/mukta-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEeiVma-2HW7ZB_.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mukta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta/mukta-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbF6iFma-2HW7ZB_.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mukta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta/mukta-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbFmi1ma-2HW7ZB_.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Mukta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta/mukta-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta/mukta.svg" - }, - { - "name": "Mukta Mahee", - "fontFamily": "Mukta Mahee, sans-serif", - "slug": "mukta-mahee", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9MFcBoHJndqZCsW.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mukta Mahee", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-mahee/mukta-mahee-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NhcxoHJndqZCsW.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mukta Mahee", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-mahee/mukta-mahee-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/muktamahee/v16/XRXQ3IOIi0hcP8iVU67hA-vNWz4PDWtj.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mukta Mahee", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-mahee/mukta-mahee-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9M5choHJndqZCsW.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mukta Mahee", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-mahee/mukta-mahee-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9MVdRoHJndqZCsW.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mukta Mahee", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-mahee/mukta-mahee-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NxdBoHJndqZCsW.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mukta Mahee", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-mahee/mukta-mahee-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NtdxoHJndqZCsW.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Mukta Mahee", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-mahee/mukta-mahee-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-mahee/mukta-mahee.svg" - }, - { - "name": "Mukta Malar", - "fontFamily": "Mukta Malar, sans-serif", - "slug": "mukta-malar", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMwBtAB62ruoAZW.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mukta Malar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-malar/mukta-malar-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINUBdAB62ruoAZW.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mukta Malar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-malar/mukta-malar-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/muktamalar/v12/MCoXzAXyz8LOE2FpJMxZqLv4LfQJwHbn.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mukta Malar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-malar/mukta-malar-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMMBNAB62ruoAZW.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mukta Malar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-malar/mukta-malar-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMgA9AB62ruoAZW.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mukta Malar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-malar/mukta-malar-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINEAtAB62ruoAZW.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mukta Malar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-malar/mukta-malar-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINYAdAB62ruoAZW.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Mukta Malar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-malar/mukta-malar-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-malar/mukta-malar.svg" - }, - { - "name": "Mukta Vaani", - "fontFamily": "Mukta Vaani, sans-serif", - "slug": "mukta-vaani", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXNV8BD-u97MW1a.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mukta Vaani", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-vaani/mukta-vaani-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWpVMBD-u97MW1a.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mukta Vaani", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-vaani/mukta-vaani-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/muktavaani/v13/3Jn5SD_-ynaxmxnEfVHPIF0FfORL0fNy.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mukta Vaani", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-vaani/mukta-vaani-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXxVcBD-u97MW1a.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mukta Vaani", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-vaani/mukta-vaani-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXdUsBD-u97MW1a.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mukta Vaani", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-vaani/mukta-vaani-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGW5U8BD-u97MW1a.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mukta Vaani", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-vaani/mukta-vaani-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWlUMBD-u97MW1a.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Mukta Vaani", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-vaani/mukta-vaani-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mukta-vaani/mukta-vaani.svg" - }, - { - "name": "Mulish", - "fontFamily": "Mulish, sans-serif", - "slug": "mulish", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNRwaClGrw-PTY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mulish", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mulish/mulish-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexc1RwaClGrw-PTY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mulish", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mulish/mulish-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaClGrw-PTY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mulish", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mulish/mulish-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexaFRwaClGrw-PTY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mulish", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mulish/mulish-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexU1WwaClGrw-PTY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mulish", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mulish/mulish-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexXRWwaClGrw-PTY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mulish", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mulish/mulish-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNWwaClGrw-PTY.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Mulish", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mulish/mulish-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexTpWwaClGrw-PTY.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Mulish", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mulish/mulish-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeOvHp47LTZFwA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Mulish", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mulish/mulish-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSd-OvHp47LTZFwA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Mulish", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mulish/mulish-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSKeOvHp47LTZFwA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Mulish", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mulish/mulish-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSG-OvHp47LTZFwA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Mulish", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mulish/mulish-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsS9-SvHp47LTZFwA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Mulish", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mulish/mulish-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSzuSvHp47LTZFwA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Mulish", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mulish/mulish-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeSvHp47LTZFwA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Mulish", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mulish/mulish-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSgOSvHp47LTZFwA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Mulish", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mulish/mulish-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mulish/mulish.svg" - }, - { - "name": "Murecho", - "fontFamily": "Murecho, sans-serif", - "slug": "murecho", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/murecho/v11/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Murecho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/murecho/murecho-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/murecho/v11/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Murecho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/murecho/murecho-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/murecho/v11/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMo15XWZLCpUOaM6.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Murecho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/murecho/murecho-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/murecho/v11/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Murecho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/murecho/murecho-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/murecho/v11/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Murecho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/murecho/murecho-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/murecho/v11/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMq14nWZLCpUOaM6.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Murecho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/murecho/murecho-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/murecho/v11/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Murecho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/murecho/murecho-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/murecho/v11/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Murecho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/murecho/murecho-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/murecho/v11/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrC4nWZLCpUOaM6.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Murecho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/murecho/murecho-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/murecho/murecho.svg" - }, - { - "name": "MuseoModerno", - "fontFamily": "MuseoModerno, system-ui", - "slug": "museomoderno", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/museomoderno/v27/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZFuewajeKlCdo.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "MuseoModerno", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/museomoderno/museomoderno-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/museomoderno/v27/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZEuewajeKlCdo.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "MuseoModerno", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/museomoderno/museomoderno-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/museomoderno/v27/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMghEuewajeKlCdo.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "MuseoModerno", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/museomoderno/museomoderno-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/museomoderno/v27/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZEuewajeKlCdo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "MuseoModerno", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/museomoderno/museomoderno-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/museomoderno/v27/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMmREuewajeKlCdo.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "MuseoModerno", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/museomoderno/museomoderno-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/museomoderno/v27/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMohDuewajeKlCdo.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "MuseoModerno", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/museomoderno/museomoderno-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/museomoderno/v27/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMrFDuewajeKlCdo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "MuseoModerno", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/museomoderno/museomoderno-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/museomoderno/v27/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZDuewajeKlCdo.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "MuseoModerno", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/museomoderno/museomoderno-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/museomoderno/v27/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMv9DuewajeKlCdo.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "MuseoModerno", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/museomoderno/museomoderno-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/museomoderno/v27/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa4QicCgGdrS3g.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "MuseoModerno", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/museomoderno/museomoderno-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/museomoderno/v27/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0a8QicCgGdrS3g.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "MuseoModerno", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/museomoderno/museomoderno-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/museomoderno/v27/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HD68QicCgGdrS3g.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "MuseoModerno", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/museomoderno/museomoderno-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/museomoderno/v27/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa8QicCgGdrS3g.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "MuseoModerno", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/museomoderno/museomoderno-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/museomoderno/v27/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HY68QicCgGdrS3g.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "MuseoModerno", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/museomoderno/museomoderno-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/museomoderno/v27/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54Hj6gQicCgGdrS3g.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "MuseoModerno", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/museomoderno/museomoderno-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/museomoderno/v27/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HtqgQicCgGdrS3g.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "MuseoModerno", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/museomoderno/museomoderno-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/museomoderno/v27/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0agQicCgGdrS3g.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "MuseoModerno", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/museomoderno/museomoderno-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/museomoderno/v27/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H-KgQicCgGdrS3g.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "MuseoModerno", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/museomoderno/museomoderno-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/museomoderno/museomoderno.svg" - }, - { - "name": "My Soul", - "fontFamily": "My Soul, cursive", - "slug": "my-soul", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mysoul/v5/3XFqErcuy945_u6KF_Ulk2nnXf0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "My Soul", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/my-soul/my-soul-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/my-soul/my-soul.svg" - }, - { - "name": "Mynerve", - "fontFamily": "Mynerve, cursive", - "slug": "mynerve", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mynerve/v6/P5sCzZKPdNjb4jt7xCRuiZ-uydg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mynerve", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mynerve/mynerve-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mynerve/mynerve.svg" - }, - { - "name": "Mystery Quest", - "fontFamily": "Mystery Quest, system-ui", - "slug": "mystery-quest", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/mysteryquest/v20/-nF6OG414u0E6k0wynSGlujRHwElD_9Qz9E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mystery Quest", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mystery-quest/mystery-quest-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/mystery-quest/mystery-quest.svg" - }, - { - "name": "NTR", - "fontFamily": "NTR, sans-serif", - "slug": "ntr", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ntr/v15/RLpzK5Xy0ZjiGGhs5TA4bg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "NTR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ntr/ntr-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ntr/ntr.svg" - }, - { - "name": "Nabla", - "fontFamily": "Nabla, system-ui", - "slug": "nabla", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nabla/v10/j8_D6-LI0Lvpe7Makz5UhJt9C3uqg_X_75gyGS4jAxsNIjrRNRBUFFR_198.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nabla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nabla/nabla-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nabla/nabla.svg" - }, - { - "name": "Nanum Brush Script", - "fontFamily": "Nanum Brush Script, cursive", - "slug": "nanum-brush-script", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nanumbrushscript/v22/wXK2E2wfpokopxzthSqPbcR5_gVaxazyjqBr1lO97Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nanum Brush Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nanum-brush-script/nanum-brush-script-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nanum-brush-script/nanum-brush-script.svg" - }, - { - "name": "Nanum Gothic", - "fontFamily": "Nanum Gothic, sans-serif", - "slug": "nanum-gothic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nanumgothic/v23/PN_3Rfi-oW3hYwmKDpxS7F_z_tLfxno73g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nanum Gothic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nanum-gothic/nanum-gothic-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nanumgothic/v23/PN_oRfi-oW3hYwmKDpxS7F_LQv37zlEn14YEUQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Nanum Gothic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nanum-gothic/nanum-gothic-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nanumgothic/v23/PN_oRfi-oW3hYwmKDpxS7F_LXv77zlEn14YEUQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Nanum Gothic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nanum-gothic/nanum-gothic-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nanum-gothic/nanum-gothic.svg" - }, - { - "name": "Nanum Gothic Coding", - "fontFamily": "Nanum Gothic Coding, cursive", - "slug": "nanum-gothic-coding", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nanumgothiccoding/v21/8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6QxVs1X7tc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nanum Gothic Coding", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nanum-gothic-coding/nanum-gothic-coding-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nanumgothiccoding/v21/8QIYdjzHisX_8vv59_xMxtPFW4IXROws8xgecsV88t5V9r4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Nanum Gothic Coding", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nanum-gothic-coding/nanum-gothic-coding-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nanum-gothic-coding/nanum-gothic-coding.svg" - }, - { - "name": "Nanum Myeongjo", - "fontFamily": "Nanum Myeongjo, serif", - "slug": "nanum-myeongjo", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nanummyeongjo/v22/9Btx3DZF0dXLMZlywRbVRNhxy1LreHQ8juyl.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nanum Myeongjo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nanum-myeongjo/nanum-myeongjo-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nanummyeongjo/v22/9Bty3DZF0dXLMZlywRbVRNhxy2pXV1A0pfCs5Kos.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Nanum Myeongjo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nanum-myeongjo/nanum-myeongjo-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nanummyeongjo/v22/9Bty3DZF0dXLMZlywRbVRNhxy2pLVFA0pfCs5Kos.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Nanum Myeongjo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nanum-myeongjo/nanum-myeongjo-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nanum-myeongjo/nanum-myeongjo.svg" - }, - { - "name": "Nanum Pen Script", - "fontFamily": "Nanum Pen Script, cursive", - "slug": "nanum-pen-script", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nanumpenscript/v19/daaDSSYiLGqEal3MvdA_FOL_3FkN2z7-aMFCcTU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nanum Pen Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nanum-pen-script/nanum-pen-script-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nanum-pen-script/nanum-pen-script.svg" - }, - { - "name": "Narnoor", - "fontFamily": "Narnoor, sans-serif", - "slug": "narnoor", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/narnoor/v6/cIf9MaFWuVo-UTyPxCmrYGkHgIs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Narnoor", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/narnoor/narnoor-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/narnoor/narnoor.svg" - }, - { - "name": "Neonderthaw", - "fontFamily": "Neonderthaw, cursive", - "slug": "neonderthaw", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/neonderthaw/v6/Iure6Yx5-oWVZI0r-17AeZZJprVA4XQ0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Neonderthaw", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/neonderthaw/neonderthaw-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/neonderthaw/neonderthaw.svg" - }, - { - "name": "Nerko One", - "fontFamily": "Nerko One, cursive", - "slug": "nerko-one", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nerkoone/v16/m8JQjfZSc7OXlB3ZMOjzcJ5BZmqa3A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nerko One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nerko-one/nerko-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nerko-one/nerko-one.svg" - }, - { - "name": "Neucha", - "fontFamily": "Neucha, cursive", - "slug": "neucha", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/neucha/v17/q5uGsou0JOdh94bvugNsCxVEgA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Neucha", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/neucha/neucha-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/neucha/neucha.svg" - }, - { - "name": "Neuton", - "fontFamily": "Neuton, serif", - "slug": "neuton", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/neuton/v22/UMBQrPtMoH62xUZKAKkfegD5Drog6Q.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Neuton", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/neuton/neuton-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/neuton/v22/UMBQrPtMoH62xUZKZKofegD5Drog6Q.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Neuton", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/neuton/neuton-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/neuton/v22/UMBTrPtMoH62xUZyyII7civlBw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Neuton", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/neuton/neuton-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/neuton/v22/UMBRrPtMoH62xUZCyog_UC71B6M5.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Neuton", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/neuton/neuton-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/neuton/v22/UMBQrPtMoH62xUZKdK0fegD5Drog6Q.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Neuton", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/neuton/neuton-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/neuton/v22/UMBQrPtMoH62xUZKaK4fegD5Drog6Q.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Neuton", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/neuton/neuton-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/neuton/neuton.svg" - }, - { - "name": "New Rocker", - "fontFamily": "New Rocker, system-ui", - "slug": "new-rocker", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/newrocker/v16/MwQzbhjp3-HImzcCU_cJkGMViblPtXs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "New Rocker", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/new-rocker/new-rocker-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/new-rocker/new-rocker.svg" - }, - { - "name": "New Tegomin", - "fontFamily": "New Tegomin, serif", - "slug": "new-tegomin", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/newtegomin/v10/SLXMc1fV7Gd9USdBAfPlqfN0Q3ptkDMN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "New Tegomin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/new-tegomin/new-tegomin-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/new-tegomin/new-tegomin.svg" - }, - { - "name": "News Cycle", - "fontFamily": "News Cycle, sans-serif", - "slug": "news-cycle", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/newscycle/v23/CSR64z1Qlv-GDxkbKVQ_TOcATNt_pOU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "News Cycle", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/news-cycle/news-cycle-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/newscycle/v23/CSR54z1Qlv-GDxkbKVQ_dFsvaNNUuOwkC2s.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "News Cycle", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/news-cycle/news-cycle-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/news-cycle/news-cycle.svg" - }, - { - "name": "Newsreader", - "fontFamily": "Newsreader, serif", - "slug": "newsreader", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-I_ADOxEPjCggA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Newsreader", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/newsreader/newsreader-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wJo_ADOxEPjCggA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Newsreader", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/newsreader/newsreader-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438weI_ADOxEPjCggA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Newsreader", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/newsreader/newsreader-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wSo_ADOxEPjCggA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Newsreader", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/newsreader/newsreader-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wpojADOxEPjCggA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Newsreader", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/newsreader/newsreader-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wn4jADOxEPjCggA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Newsreader", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/newsreader/newsreader-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-IjADOxEPjCggA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Newsreader", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/newsreader/newsreader-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoT-ZAHDWwgECi.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Newsreader", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/newsreader/newsreader-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMx2T-ZAHDWwgECi.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Newsreader", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/newsreader/newsreader-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwoT-ZAHDWwgECi.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Newsreader", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/newsreader/newsreader-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwaT-ZAHDWwgECi.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Newsreader", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/newsreader/newsreader-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMz2SOZAHDWwgECi.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Newsreader", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/newsreader/newsreader-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMzPSOZAHDWwgECi.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Newsreader", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/newsreader/newsreader-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoSOZAHDWwgECi.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Newsreader", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/newsreader/newsreader-800-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/newsreader/newsreader.svg" - }, - { - "name": "Niconne", - "fontFamily": "Niconne, cursive", - "slug": "niconne", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/niconne/v15/w8gaH2QvRug1_rTfrQut2F4OuOo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Niconne", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/niconne/niconne-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/niconne/niconne.svg" - }, - { - "name": "Niramit", - "fontFamily": "Niramit, sans-serif", - "slug": "niramit", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVXx7tiiEr5_BdZ8.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Niramit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/niramit/niramit-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiXimOq73EZZ_f6w.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Niramit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/niramit/niramit-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVRh4tiiEr5_BdZ8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Niramit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/niramit/niramit-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiOiqOq73EZZ_f6w.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Niramit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/niramit/niramit-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/niramit/v10/I_uuMpWdvgLdNxVLbbRQkiCvs5Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Niramit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/niramit/niramit-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/niramit/v10/I_usMpWdvgLdNxVLXbZalgKqo5bYbA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Niramit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/niramit/niramit-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVUB5tiiEr5_BdZ8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Niramit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/niramit/niramit-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiYiuOq73EZZ_f6w.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Niramit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/niramit/niramit-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVWx-tiiEr5_BdZ8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Niramit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/niramit/niramit-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiTiyOq73EZZ_f6w.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Niramit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/niramit/niramit-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVQh_tiiEr5_BdZ8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Niramit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/niramit/niramit-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiKi2Oq73EZZ_f6w.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Niramit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/niramit/niramit-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/niramit/niramit.svg" - }, - { - "name": "Nixie One", - "fontFamily": "Nixie One, system-ui", - "slug": "nixie-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nixieone/v16/lW-8wjkKLXjg5y2o2uUoUOFzpS-yLw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nixie One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nixie-one/nixie-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nixie-one/nixie-one.svg" - }, - { - "name": "Nobile", - "fontFamily": "Nobile, sans-serif", - "slug": "nobile", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nobile/v17/m8JTjflSeaOVl1i2XqfXeLVdbw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nobile", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nobile/nobile-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nobile/v17/m8JRjflSeaOVl1iGXK3TWrBNb3OD.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Nobile", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nobile/nobile-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iOqo7zcJ5BZmqa3A.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Nobile", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nobile/nobile-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJUnc5RFRG-K3Mud.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Nobile", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nobile/nobile-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iO4ojzcJ5BZmqa3A.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Nobile", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nobile/nobile-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJVvdZRFRG-K3Mud.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Nobile", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nobile/nobile-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nobile/nobile.svg" - }, - { - "name": "Nokora", - "fontFamily": "Nokora, sans-serif", - "slug": "nokora", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nokora/v30/~CgoKBk5va29yYRhkIAAqBAgBGAE=.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Nokora", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nokora/nokora-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRisAiAAKgQIARgB.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Nokora", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nokora/nokora-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nokora/v30/~CggKBk5va29yYSAAKgQIARgB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nokora", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nokora/nokora-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRi8BSAAKgQIARgB.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Nokora", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nokora/nokora-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRiEByAAKgQIARgB.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Nokora", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nokora/nokora-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nokora/nokora.svg" - }, - { - "name": "Norican", - "fontFamily": "Norican, cursive", - "slug": "norican", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/norican/v14/MwQ2bhXp1eSBqjkPGJJRtGs-lbA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Norican", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/norican/norican-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/norican/norican.svg" - }, - { - "name": "Nosifer", - "fontFamily": "Nosifer, system-ui", - "slug": "nosifer", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nosifer/v22/ZGjXol5JTp0g5bxZaC1RVDNdGDs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nosifer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nosifer/nosifer-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nosifer/nosifer.svg" - }, - { - "name": "Notable", - "fontFamily": "Notable, sans-serif", - "slug": "notable", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notable/v18/gNMEW3N_SIqx-WX9-HMoFIez5MI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Notable", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/notable/notable-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/notable/notable.svg" - }, - { - "name": "Nothing You Could Do", - "fontFamily": "Nothing You Could Do, cursive", - "slug": "nothing-you-could-do", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nothingyoucoulddo/v19/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OJl1ol2Ymo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nothing You Could Do", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nothing-you-could-do/nothing-you-could-do-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nothing-you-could-do/nothing-you-could-do.svg" - }, - { - "name": "Noticia Text", - "fontFamily": "Noticia Text, serif", - "slug": "noticia-text", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/noticiatext/v15/VuJ2dNDF2Yv9qppOePKYRP1GYTFZt0rNpQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noticia Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noticia-text/noticia-text-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/noticiatext/v15/VuJodNDF2Yv9qppOePKYRP12YztdlU_dpSjt.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Noticia Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noticia-text/noticia-text-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/noticiatext/v15/VuJpdNDF2Yv9qppOePKYRP1-3R59v2HRrDH0eA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noticia Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noticia-text/noticia-text-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/noticiatext/v15/VuJrdNDF2Yv9qppOePKYRP12YwPhumvVjjTkeMnz.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Noticia Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noticia-text/noticia-text-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noticia-text/noticia-text.svg" - }, - { - "name": "Noto Color Emoji", - "fontFamily": "Noto Color Emoji, sans-serif", - "slug": "noto-color-emoji", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notocoloremoji/v25/Yq6P-KqIXTD0t4D9z1ESnKM3-HpFab5s79iz64w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Color Emoji", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-color-emoji/noto-color-emoji-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-color-emoji/noto-color-emoji.svg" - }, - { - "name": "Noto Emoji", - "fontFamily": "Noto Emoji, sans-serif", - "slug": "noto-emoji", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob_10jwvS-FGJCMY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Emoji", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-emoji/noto-emoji-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-r0jwvS-FGJCMY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Emoji", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-emoji/noto-emoji-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-Z0jwvS-FGJCMY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Emoji", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-emoji/noto-emoji-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob911TwvS-FGJCMY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Emoji", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-emoji/noto-emoji-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob9M1TwvS-FGJCMY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Emoji", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-emoji/noto-emoji-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-emoji/noto-emoji.svg" - }, - { - "name": "Noto Kufi Arabic", - "fontFamily": "Noto Kufi Arabic, sans-serif", - "slug": "noto-kufi-arabic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v3obPnLSmf5yD.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-kufi-arabic/noto-kufi-arabic-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v34bPnLSmf5yD.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-kufi-arabic/noto-kufi-arabic-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh4x34bPnLSmf5yD.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-kufi-arabic/noto-kufi-arabic-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v34bPnLSmf5yD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-kufi-arabic/noto-kufi-arabic-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5d34bPnLSmf5yD.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-kufi-arabic/noto-kufi-arabic-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6x2IbPnLSmf5yD.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-kufi-arabic/noto-kufi-arabic-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6I2IbPnLSmf5yD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-kufi-arabic/noto-kufi-arabic-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v2IbPnLSmf5yD.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-kufi-arabic/noto-kufi-arabic-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7G2IbPnLSmf5yD.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-kufi-arabic/noto-kufi-arabic-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-kufi-arabic/noto-kufi-arabic.svg" - }, - { - "name": "Noto Music", - "fontFamily": "Noto Music, sans-serif", - "slug": "noto-music", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notomusic/v19/pe0rMIiSN5pO63htf1sxIteQB9Zra1U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Music", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-music/noto-music-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-music/noto-music.svg" - }, - { - "name": "Noto Naskh Arabic", - "fontFamily": "Noto Naskh Arabic, serif", - "slug": "noto-naskh-arabic", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwvc5krK0z9_Mnuw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Naskh Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-naskh-arabic/noto-naskh-arabic-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwj85krK0z9_Mnuw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Naskh Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-naskh-arabic/noto-naskh-arabic-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwY8lkrK0z9_Mnuw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Naskh Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-naskh-arabic/noto-naskh-arabic-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwWslkrK0z9_Mnuw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Naskh Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-naskh-arabic/noto-naskh-arabic-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-naskh-arabic/noto-naskh-arabic.svg" - }, - { - "name": "Noto Nastaliq Urdu", - "fontFamily": "Noto Nastaliq Urdu, serif", - "slug": "noto-nastaliq-urdu", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qt_-DK2f2-_8mEw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Nastaliq Urdu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-nastaliq-urdu/noto-nastaliq-urdu-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qu3-DK2f2-_8mEw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Nastaliq Urdu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-nastaliq-urdu/noto-nastaliq-urdu-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3QgH5DK2f2-_8mEw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Nastaliq Urdu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-nastaliq-urdu/noto-nastaliq-urdu-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qjj5DK2f2-_8mEw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Nastaliq Urdu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-nastaliq-urdu/noto-nastaliq-urdu-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-nastaliq-urdu/noto-nastaliq-urdu.svg" - }, - { - "name": "Noto Rashi Hebrew", - "fontFamily": "Noto Rashi Hebrew, serif", - "slug": "noto-rashi-hebrew", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-DkRyq6Nf2pfA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-rashi-hebrew/noto-rashi-hebrew-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-HkRyq6Nf2pfA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-rashi-hebrew/noto-rashi-hebrew-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZWeHkRyq6Nf2pfA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-rashi-hebrew/noto-rashi-hebrew-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-HkRyq6Nf2pfA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-rashi-hebrew/noto-rashi-hebrew-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZNeHkRyq6Nf2pfA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-rashi-hebrew/noto-rashi-hebrew-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ2ebkRyq6Nf2pfA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-rashi-hebrew/noto-rashi-hebrew-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ4ObkRyq6Nf2pfA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-rashi-hebrew/noto-rashi-hebrew-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-bkRyq6Nf2pfA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-rashi-hebrew/noto-rashi-hebrew-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZrubkRyq6Nf2pfA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-rashi-hebrew/noto-rashi-hebrew-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-rashi-hebrew/noto-rashi-hebrew.svg" - }, - { - "name": "Noto Sans", - "fontFamily": "Noto Sans, sans-serif", - "slug": "noto-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosans/v30/o-0OIpQlx3QUlC5A4PNjhjRFSfiM7HBj.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans/noto-sans-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosans/v30/o-0MIpQlx3QUlC5A4PNr4AwhQ_yu6WBjJLE.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Noto Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans/noto-sans-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosans/v30/o-0NIpQlx3QUlC5A4PNjKhVlY9aA5Wl6PQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans/noto-sans-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosans/v30/o-0TIpQlx3QUlC5A4PNr4AyNYtyEx2xqPaif.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Noto Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans/noto-sans-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosans/v30/o-0NIpQlx3QUlC5A4PNjThZlY9aA5Wl6PQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans/noto-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosans/v30/o-0TIpQlx3QUlC5A4PNr4AzpYdyEx2xqPaif.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Noto Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans/noto-sans-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosans/v30/o-0IIpQlx3QUlC5A4PNb4j5Ba_2c7A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans/noto-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosans/v30/o-0OIpQlx3QUlC5A4PNr4DRFSfiM7HBj.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Noto Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans/noto-sans-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosans/v30/o-0NIpQlx3QUlC5A4PNjFhdlY9aA5Wl6PQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans/noto-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosans/v30/o-0TIpQlx3QUlC5A4PNr4AyxYNyEx2xqPaif.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Noto Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans/noto-sans-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosans/v30/o-0NIpQlx3QUlC5A4PNjOhBlY9aA5Wl6PQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans/noto-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosans/v30/o-0TIpQlx3QUlC5A4PNr4AydZ9yEx2xqPaif.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Noto Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans/noto-sans-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosans/v30/o-0NIpQlx3QUlC5A4PNjXhFlY9aA5Wl6PQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans/noto-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosans/v30/o-0TIpQlx3QUlC5A4PNr4Az5ZtyEx2xqPaif.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Noto Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans/noto-sans-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosans/v30/o-0NIpQlx3QUlC5A4PNjQhJlY9aA5Wl6PQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans/noto-sans-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosans/v30/o-0TIpQlx3QUlC5A4PNr4AzlZdyEx2xqPaif.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Noto Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans/noto-sans-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosans/v30/o-0NIpQlx3QUlC5A4PNjZhNlY9aA5Wl6PQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans/noto-sans-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosans/v30/o-0TIpQlx3QUlC5A4PNr4AzBZNyEx2xqPaif.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Noto Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans/noto-sans-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans/noto-sans.svg" - }, - { - "name": "Noto Sans Adlam", - "fontFamily": "Noto Sans Adlam, sans-serif", - "slug": "noto-sans-adlam", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufnv0TGnBZLwhuvk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-adlam/noto-sans-adlam-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufkn0TGnBZLwhuvk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-adlam/noto-sans-adlam-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufqXzTGnBZLwhuvk.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-adlam/noto-sans-adlam-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufpzzTGnBZLwhuvk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-adlam/noto-sans-adlam-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-adlam/noto-sans-adlam.svg" - }, - { - "name": "Noto Sans Adlam Unjoined", - "fontFamily": "Noto Sans Adlam Unjoined, sans-serif", - "slug": "noto-sans-adlam-unjoined", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Ye35PMEe-E3slUg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam Unjoined", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-adlam-unjoined/noto-sans-adlam-unjoined-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Yd_5PMEe-E3slUg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam Unjoined", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-adlam-unjoined/noto-sans-adlam-unjoined-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YTP-PMEe-E3slUg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam Unjoined", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-adlam-unjoined/noto-sans-adlam-unjoined-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YQr-PMEe-E3slUg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam Unjoined", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-adlam-unjoined/noto-sans-adlam-unjoined-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-adlam-unjoined/noto-sans-adlam-unjoined.svg" - }, - { - "name": "Noto Sans Anatolian Hieroglyphs", - "fontFamily": "Noto Sans Anatolian Hieroglyphs, sans-serif", - "slug": "noto-sans-anatolian-hieroglyphs", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansanatolianhieroglyphs/v16/ijw9s4roRME5LLRxjsRb8A0gKPSWq4BbDmHHu6j2pEtUJzZWXybIymc5QYo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Anatolian Hieroglyphs", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-anatolian-hieroglyphs/noto-sans-anatolian-hieroglyphs-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-anatolian-hieroglyphs/noto-sans-anatolian-hieroglyphs.svg" - }, - { - "name": "Noto Sans Arabic", - "fontFamily": "Noto Sans Arabic, sans-serif", - "slug": "noto-sans-arabic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyG2vu3CBFQLaig.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-arabic/noto-sans-arabic-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGyvu3CBFQLaig.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-arabic/noto-sans-arabic-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCflmyvu3CBFQLaig.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-arabic/noto-sans-arabic-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyGyvu3CBFQLaig.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-arabic/noto-sans-arabic-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCf-myvu3CBFQLaig.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-arabic/noto-sans-arabic-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfFmuvu3CBFQLaig.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-arabic/noto-sans-arabic-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfL2uvu3CBFQLaig.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-arabic/noto-sans-arabic-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGuvu3CBFQLaig.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-arabic/noto-sans-arabic-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfYWuvu3CBFQLaig.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-arabic/noto-sans-arabic-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-arabic/noto-sans-arabic.svg" - }, - { - "name": "Noto Sans Armenian", - "fontFamily": "Noto Sans Armenian, sans-serif", - "slug": "noto-sans-armenian", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxbq0iYy6zF3Eg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-armenian/noto-sans-armenian-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxb60iYy6zF3Eg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-armenian/noto-sans-armenian-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoqvb60iYy6zF3Eg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-armenian/noto-sans-armenian-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxb60iYy6zF3Eg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-armenian/noto-sans-armenian-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorDb60iYy6zF3Eg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-armenian/noto-sans-armenian-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoovaK0iYy6zF3Eg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-armenian/noto-sans-armenian-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLooWaK0iYy6zF3Eg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-armenian/noto-sans-armenian-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxaK0iYy6zF3Eg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-armenian/noto-sans-armenian-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopYaK0iYy6zF3Eg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-armenian/noto-sans-armenian-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-armenian/noto-sans-armenian.svg" - }, - { - "name": "Noto Sans Avestan", - "fontFamily": "Noto Sans Avestan, sans-serif", - "slug": "noto-sans-avestan", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansavestan/v20/bWti7ejKfBziStx7lIzKOLQZKhIJkyu9SASLji8U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Avestan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-avestan/noto-sans-avestan-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-avestan/noto-sans-avestan.svg" - }, - { - "name": "Noto Sans Balinese", - "fontFamily": "Noto Sans Balinese, sans-serif", - "slug": "noto-sans-balinese", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov7fdhE5Vd222PPY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Balinese", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-balinese/noto-sans-balinese-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov4XdhE5Vd222PPY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Balinese", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-balinese/noto-sans-balinese-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov2nahE5Vd222PPY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Balinese", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-balinese/noto-sans-balinese-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov1DahE5Vd222PPY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Balinese", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-balinese/noto-sans-balinese-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-balinese/noto-sans-balinese.svg" - }, - { - "name": "Noto Sans Bamum", - "fontFamily": "Noto Sans Bamum, sans-serif", - "slug": "noto-sans-bamum", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEddO-_gLykxEkxA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bamum", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-bamum/noto-sans-bamum-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEeVO-_gLykxEkxA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bamum", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-bamum/noto-sans-bamum-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEQlJ-_gLykxEkxA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bamum", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-bamum/noto-sans-bamum-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPETBJ-_gLykxEkxA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bamum", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-bamum/noto-sans-bamum-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-bamum/noto-sans-bamum.svg" - }, - { - "name": "Noto Sans Bassa Vah", - "fontFamily": "Noto Sans Bassa Vah, sans-serif", - "slug": "noto-sans-bassa-vah", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MaAc6p34gH-GD7.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bassa Vah", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-bassa-vah/noto-sans-bassa-vah-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MoAc6p34gH-GD7.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bassa Vah", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-bassa-vah/noto-sans-bassa-vah-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4PEBs6p34gH-GD7.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bassa Vah", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-bassa-vah/noto-sans-bassa-vah-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4P9Bs6p34gH-GD7.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bassa Vah", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-bassa-vah/noto-sans-bassa-vah-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-bassa-vah/noto-sans-bassa-vah.svg" - }, - { - "name": "Noto Sans Batak", - "fontFamily": "Noto Sans Batak, sans-serif", - "slug": "noto-sans-batak", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbatak/v16/gok2H6TwAEdtF9N8-mdTCQvT-Zdgo4_PHuk74A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Batak", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-batak/noto-sans-batak-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-batak/noto-sans-batak.svg" - }, - { - "name": "Noto Sans Bengali", - "fontFamily": "Noto Sans Bengali, sans-serif", - "slug": "noto-sans-bengali", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolKudCk8izI0lc.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-bengali/noto-sans-bengali-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglLudCk8izI0lc.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-bengali/noto-sans-bengali-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmstdLudCk8izI0lc.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-bengali/noto-sans-bengali-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolLudCk8izI0lc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-bengali/noto-sans-bengali-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsrtLudCk8izI0lc.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-bengali/noto-sans-bengali-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsldMudCk8izI0lc.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-bengali/noto-sans-bengali-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6Kmsm5MudCk8izI0lc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-bengali/noto-sans-bengali-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglMudCk8izI0lc.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-bengali/noto-sans-bengali-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsiBMudCk8izI0lc.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-bengali/noto-sans-bengali-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-bengali/noto-sans-bengali.svg" - }, - { - "name": "Noto Sans Bhaiksuki", - "fontFamily": "Noto Sans Bhaiksuki, sans-serif", - "slug": "noto-sans-bhaiksuki", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbhaiksuki/v15/UcC63EosKniBH4iELXATsSBWdvUHXxhj8rLUdU4wh9U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bhaiksuki", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-bhaiksuki/noto-sans-bhaiksuki-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-bhaiksuki/noto-sans-bhaiksuki.svg" - }, - { - "name": "Noto Sans Brahmi", - "fontFamily": "Noto Sans Brahmi, sans-serif", - "slug": "noto-sans-brahmi", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbrahmi/v18/vEFK2-VODB8RrNDvZSUmQQIIByV18tK1W77HtMo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Brahmi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-brahmi/noto-sans-brahmi-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-brahmi/noto-sans-brahmi.svg" - }, - { - "name": "Noto Sans Buginese", - "fontFamily": "Noto Sans Buginese, sans-serif", - "slug": "noto-sans-buginese", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbuginese/v18/esDM30ldNv-KYGGJpKGk18phe_7Da6_gtfuEXLmNtw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Buginese", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-buginese/noto-sans-buginese-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-buginese/noto-sans-buginese.svg" - }, - { - "name": "Noto Sans Buhid", - "fontFamily": "Noto Sans Buhid, sans-serif", - "slug": "noto-sans-buhid", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansbuhid/v18/Dxxy8jiXMW75w3OmoDXVWJD7YwzAe6tgnaFoGA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Buhid", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-buhid/noto-sans-buhid-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-buhid/noto-sans-buhid.svg" - }, - { - "name": "Noto Sans Canadian Aboriginal", - "fontFamily": "Noto Sans Canadian Aboriginal, sans-serif", - "slug": "noto-sans-canadian-aboriginal", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLj_yAsg0q0uhQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-canadian-aboriginal/noto-sans-canadian-aboriginal-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2Ln_yAsg0q0uhQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-canadian-aboriginal/noto-sans-canadian-aboriginal-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigBrn_yAsg0q0uhQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-canadian-aboriginal/noto-sans-canadian-aboriginal-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLn_yAsg0q0uhQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-canadian-aboriginal/noto-sans-canadian-aboriginal-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigarn_yAsg0q0uhQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-canadian-aboriginal/noto-sans-canadian-aboriginal-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzighr7_yAsg0q0uhQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-canadian-aboriginal/noto-sans-canadian-aboriginal-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigv77_yAsg0q0uhQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-canadian-aboriginal/noto-sans-canadian-aboriginal-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2L7_yAsg0q0uhQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-canadian-aboriginal/noto-sans-canadian-aboriginal-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig8b7_yAsg0q0uhQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-canadian-aboriginal/noto-sans-canadian-aboriginal-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-canadian-aboriginal/noto-sans-canadian-aboriginal.svg" - }, - { - "name": "Noto Sans Carian", - "fontFamily": "Noto Sans Carian, sans-serif", - "slug": "noto-sans-carian", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscarian/v16/LDIpaoiONgYwA9Yc6f0gUILeMIOgs7ob9yGLmfI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Carian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-carian/noto-sans-carian-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-carian/noto-sans-carian.svg" - }, - { - "name": "Noto Sans Caucasian Albanian", - "fontFamily": "Noto Sans Caucasian Albanian, sans-serif", - "slug": "noto-sans-caucasian-albanian", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscaucasianalbanian/v16/nKKA-HM_FYFRJvXzVXaANsU0VzsAc46QGOkWytlTs-TXrYDmoVmRSZo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Caucasian Albanian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-caucasian-albanian/noto-sans-caucasian-albanian-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-caucasian-albanian/noto-sans-caucasian-albanian.svg" - }, - { - "name": "Noto Sans Chakma", - "fontFamily": "Noto Sans Chakma, sans-serif", - "slug": "noto-sans-chakma", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanschakma/v17/Y4GQYbJ8VTEp4t3MKJSMjg5OIzhi4JjTQhYBeYo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Chakma", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-chakma/noto-sans-chakma-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-chakma/noto-sans-chakma.svg" - }, - { - "name": "Noto Sans Cham", - "fontFamily": "Noto Sans Cham, sans-serif", - "slug": "noto-sans-cham", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcER0cv7GykboaLg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cham/noto-sans-cham-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRwcv7GykboaLg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cham/noto-sans-cham-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcTxwcv7GykboaLg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cham/noto-sans-cham-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcERwcv7GykboaLg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cham/noto-sans-cham-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcIxwcv7GykboaLg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cham/noto-sans-cham-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfczxscv7GykboaLg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cham/noto-sans-cham-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfc9hscv7GykboaLg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cham/noto-sans-cham-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRscv7GykboaLg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cham/noto-sans-cham-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcuBscv7GykboaLg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cham/noto-sans-cham-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cham/noto-sans-cham.svg" - }, - { - "name": "Noto Sans Cherokee", - "fontFamily": "Noto Sans Cherokee, sans-serif", - "slug": "noto-sans-cherokee", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5ODkm5rAffjl0.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cherokee/noto-sans-cherokee-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5PDkm5rAffjl0.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cherokee/noto-sans-cherokee-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWnBPDkm5rAffjl0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cherokee/noto-sans-cherokee-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5PDkm5rAffjl0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cherokee/noto-sans-cherokee-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWhxPDkm5rAffjl0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cherokee/noto-sans-cherokee-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWvBIDkm5rAffjl0.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cherokee/noto-sans-cherokee-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWslIDkm5rAffjl0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cherokee/noto-sans-cherokee-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5IDkm5rAffjl0.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cherokee/noto-sans-cherokee-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWodIDkm5rAffjl0.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cherokee/noto-sans-cherokee-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cherokee/noto-sans-cherokee.svg" - }, - { - "name": "Noto Sans Chorasmian", - "fontFamily": "Noto Sans Chorasmian, sans-serif", - "slug": "noto-sans-chorasmian", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanschorasmian/v1/MQpL-X6uKMC7ROPLwRnI9ULxK_7NVkf8S5vyoH7w4g9b.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Chorasmian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-chorasmian/noto-sans-chorasmian-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-chorasmian/noto-sans-chorasmian.svg" - }, - { - "name": "Noto Sans Coptic", - "fontFamily": "Noto Sans Coptic, sans-serif", - "slug": "noto-sans-coptic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscoptic/v17/iJWfBWmUZi_OHPqn4wq6kgqumOEd78u_VG0xR4Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Coptic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-coptic/noto-sans-coptic-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-coptic/noto-sans-coptic.svg" - }, - { - "name": "Noto Sans Cuneiform", - "fontFamily": "Noto Sans Cuneiform, sans-serif", - "slug": "noto-sans-cuneiform", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscuneiform/v17/bMrrmTWK7YY-MF22aHGGd7H8PhJtvBDWgb9JlRQueeQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cuneiform", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cuneiform/noto-sans-cuneiform-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cuneiform/noto-sans-cuneiform.svg" - }, - { - "name": "Noto Sans Cypriot", - "fontFamily": "Noto Sans Cypriot, sans-serif", - "slug": "noto-sans-cypriot", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscypriot/v15/8AtzGta9PYqQDjyp79a6f8Cj-3a3cxIsK5MPpahF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cypriot", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cypriot/noto-sans-cypriot-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cypriot/noto-sans-cypriot.svg" - }, - { - "name": "Noto Sans Cypro Minoan", - "fontFamily": "Noto Sans Cypro Minoan, sans-serif", - "slug": "noto-sans-cypro-minoan", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanscyprominoan/v1/2Eb2L_dtDUlkNmPHB_UVtEzp3ZlPGqZ_4nAGq9eSf8_eQSE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cypro Minoan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cypro-minoan/noto-sans-cypro-minoan-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-cypro-minoan/noto-sans-cypro-minoan.svg" - }, - { - "name": "Noto Sans Deseret", - "fontFamily": "Noto Sans Deseret, sans-serif", - "slug": "noto-sans-deseret", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdeseret/v17/MwQsbgPp1eKH6QsAVuFb9AZM6MMr2Vq9ZnJSZtQG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Deseret", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-deseret/noto-sans-deseret-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-deseret/noto-sans-deseret.svg" - }, - { - "name": "Noto Sans Devanagari", - "fontFamily": "Noto Sans Devanagari, sans-serif", - "slug": "noto-sans-devanagari", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQky-AzoFoW4Ow.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-devanagari/noto-sans-devanagari-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQly-AzoFoW4Ow.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-devanagari/noto-sans-devanagari-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlSoly-AzoFoW4Ow.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-devanagari/noto-sans-devanagari-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQly-AzoFoW4Ow.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-devanagari/noto-sans-devanagari-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlUYly-AzoFoW4Ow.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-devanagari/noto-sans-devanagari-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Alaoiy-AzoFoW4Ow.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-devanagari/noto-sans-devanagari-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlZMiy-AzoFoW4Ow.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-devanagari/noto-sans-devanagari-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQiy-AzoFoW4Ow.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-devanagari/noto-sans-devanagari-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Ald0iy-AzoFoW4Ow.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-devanagari/noto-sans-devanagari-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-devanagari/noto-sans-devanagari.svg" - }, - { - "name": "Noto Sans Display", - "fontFamily": "Noto Sans Display, sans-serif", - "slug": "noto-sans-display", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdisplay/v25/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cLVTGQ2iHrvWM.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-display/noto-sans-display-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdisplay/v25/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cKVTGQ2iHrvWM.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-display/noto-sans-display-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdisplay/v25/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_ykKVTGQ2iHrvWM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-display/noto-sans-display-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdisplay/v25/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cKVTGQ2iHrvWM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-display/noto-sans-display-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdisplay/v25/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_0UKVTGQ2iHrvWM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-display/noto-sans-display-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdisplay/v25/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_6kNVTGQ2iHrvWM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-display/noto-sans-display-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdisplay/v25/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_5ANVTGQ2iHrvWM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-display/noto-sans-display-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdisplay/v25/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cNVTGQ2iHrvWM.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-display/noto-sans-display-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdisplay/v25/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_94NVTGQ2iHrvWM.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-display/noto-sans-display-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdisplay/v25/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXOa3gPurWM9uQ.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-display/noto-sans-display-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdisplay/v25/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXKa3gPurWM9uQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-display/noto-sans-display-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdisplay/v25/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9J43Ka3gPurWM9uQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-display/noto-sans-display-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdisplay/v25/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXKa3gPurWM9uQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-display/noto-sans-display-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdisplay/v25/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9Jj3Ka3gPurWM9uQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-display/noto-sans-display-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdisplay/v25/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JY3Wa3gPurWM9uQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-display/noto-sans-display-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdisplay/v25/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JWnWa3gPurWM9uQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-display/noto-sans-display-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdisplay/v25/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXWa3gPurWM9uQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-display/noto-sans-display-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansdisplay/v25/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JFHWa3gPurWM9uQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-display/noto-sans-display-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-display/noto-sans-display.svg" - }, - { - "name": "Noto Sans Duployan", - "fontFamily": "Noto Sans Duployan, sans-serif", - "slug": "noto-sans-duployan", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansduployan/v17/gokzH7nwAEdtF9N8-mdTDx_X9JM5wsvrFsIn6WYDvA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Duployan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-duployan/noto-sans-duployan-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansduployan/v17/gokwH7nwAEdtF9N8-mdTDx_X9JM5wsvTqu0D4U0ftZS-Iw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Duployan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-duployan/noto-sans-duployan-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-duployan/noto-sans-duployan.svg" - }, - { - "name": "Noto Sans Egyptian Hieroglyphs", - "fontFamily": "Noto Sans Egyptian Hieroglyphs, sans-serif", - "slug": "noto-sans-egyptian-hieroglyphs", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansegyptianhieroglyphs/v28/vEF42-tODB8RrNDvZSUmRhcQHzx1s7y_F9-j3qSzEcbEYindSVK8xRg7iw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Egyptian Hieroglyphs", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-egyptian-hieroglyphs/noto-sans-egyptian-hieroglyphs-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-egyptian-hieroglyphs/noto-sans-egyptian-hieroglyphs.svg" - }, - { - "name": "Noto Sans Elbasan", - "fontFamily": "Noto Sans Elbasan, sans-serif", - "slug": "noto-sans-elbasan", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanselbasan/v16/-F6rfiZqLzI2JPCgQBnw400qp1trvHdlre4dFcFh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Elbasan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-elbasan/noto-sans-elbasan-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-elbasan/noto-sans-elbasan.svg" - }, - { - "name": "Noto Sans Elymaic", - "fontFamily": "Noto Sans Elymaic, sans-serif", - "slug": "noto-sans-elymaic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanselymaic/v15/UqyKK9YTJW5liNMhTMqe9vUFP65ZD4AjWOT0zi2V.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Elymaic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-elymaic/noto-sans-elymaic-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-elymaic/noto-sans-elymaic.svg" - }, - { - "name": "Noto Sans Ethiopic", - "fontFamily": "Noto Sans Ethiopic, sans-serif", - "slug": "noto-sans-ethiopic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OKqDjwmfeaY9u.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-ethiopic/noto-sans-ethiopic-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OK6DjwmfeaY9u.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-ethiopic/noto-sans-ethiopic-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T34QK6DjwmfeaY9u.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-ethiopic/noto-sans-ethiopic-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OK6DjwmfeaY9u.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-ethiopic/noto-sans-ethiopic-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T358K6DjwmfeaY9u.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-ethiopic/noto-sans-ethiopic-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36QLKDjwmfeaY9u.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-ethiopic/noto-sans-ethiopic-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36pLKDjwmfeaY9u.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-ethiopic/noto-sans-ethiopic-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OLKDjwmfeaY9u.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-ethiopic/noto-sans-ethiopic-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37nLKDjwmfeaY9u.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-ethiopic/noto-sans-ethiopic-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-ethiopic/noto-sans-ethiopic.svg" - }, - { - "name": "Noto Sans Georgian", - "fontFamily": "Noto Sans Georgian, sans-serif", - "slug": "noto-sans-georgian", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzVj-f5WK0OQV.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-georgian/noto-sans-georgian-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptnzFj-f5WK0OQV.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-georgian/noto-sans-georgian-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpu5zFj-f5WK0OQV.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-georgian/noto-sans-georgian-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzFj-f5WK0OQV.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-georgian/noto-sans-georgian-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvVzFj-f5WK0OQV.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-georgian/noto-sans-georgian-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdps5y1j-f5WK0OQV.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-georgian/noto-sans-georgian-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpsAy1j-f5WK0OQV.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-georgian/noto-sans-georgian-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptny1j-f5WK0OQV.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-georgian/noto-sans-georgian-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptOy1j-f5WK0OQV.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-georgian/noto-sans-georgian-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-georgian/noto-sans-georgian.svg" - }, - { - "name": "Noto Sans Glagolitic", - "fontFamily": "Noto Sans Glagolitic, sans-serif", - "slug": "noto-sans-glagolitic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansglagolitic/v17/1q2ZY4-BBFBst88SU_tOj4J-4yuNF_HI4ERK4Amu7nM1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Glagolitic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-glagolitic/noto-sans-glagolitic-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-glagolitic/noto-sans-glagolitic.svg" - }, - { - "name": "Noto Sans Gothic", - "fontFamily": "Noto Sans Gothic, sans-serif", - "slug": "noto-sans-gothic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgothic/v16/TuGKUUVzXI5FBtUq5a8bj6wRbzxTFMX40kFQRx0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gothic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gothic/noto-sans-gothic-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gothic/noto-sans-gothic.svg" - }, - { - "name": "Noto Sans Grantha", - "fontFamily": "Noto Sans Grantha, sans-serif", - "slug": "noto-sans-grantha", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgrantha/v17/3y976akwcCjmsU8NDyrKo3IQfQ4o-r8cFeulHc6N.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Grantha", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-grantha/noto-sans-grantha-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-grantha/noto-sans-grantha.svg" - }, - { - "name": "Noto Sans Gujarati", - "fontFamily": "Noto Sans Gujarati, sans-serif", - "slug": "noto-sans-gujarati", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFgPM_OdiEH0s.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gujarati/noto-sans-gujarati-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpFwPM_OdiEH0s.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gujarati/noto-sans-gujarati-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_z3FwPM_OdiEH0s.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gujarati/noto-sans-gujarati-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFwPM_OdiEH0s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gujarati/noto-sans-gujarati-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ybFwPM_OdiEH0s.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gujarati/noto-sans-gujarati-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_x3EAPM_OdiEH0s.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gujarati/noto-sans-gujarati-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_xOEAPM_OdiEH0s.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gujarati/noto-sans-gujarati-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpEAPM_OdiEH0s.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gujarati/noto-sans-gujarati-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wAEAPM_OdiEH0s.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gujarati/noto-sans-gujarati-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gujarati/noto-sans-gujarati.svg" - }, - { - "name": "Noto Sans Gunjala Gondi", - "fontFamily": "Noto Sans Gunjala Gondi, sans-serif", - "slug": "noto-sans-gunjala-gondi", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgunjalagondi/v17/bWto7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5hcVXYMTK4q1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gunjala Gondi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gunjala-gondi/noto-sans-gunjala-gondi-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gunjala-gondi/noto-sans-gunjala-gondi.svg" - }, - { - "name": "Noto Sans Gurmukhi", - "fontFamily": "Noto Sans Gurmukhi, sans-serif", - "slug": "noto-sans-gurmukhi", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1Oe3bxZ_trdp7h.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gurmukhi/noto-sans-gurmukhi-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OenbxZ_trdp7h.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gurmukhi/noto-sans-gurmukhi-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG0QenbxZ_trdp7h.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gurmukhi/noto-sans-gurmukhi-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1OenbxZ_trdp7h.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gurmukhi/noto-sans-gurmukhi-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG18enbxZ_trdp7h.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gurmukhi/noto-sans-gurmukhi-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2QfXbxZ_trdp7h.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gurmukhi/noto-sans-gurmukhi-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2pfXbxZ_trdp7h.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gurmukhi/noto-sans-gurmukhi-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OfXbxZ_trdp7h.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gurmukhi/noto-sans-gurmukhi-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3nfXbxZ_trdp7h.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gurmukhi/noto-sans-gurmukhi-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-gurmukhi/noto-sans-gurmukhi.svg" - }, - { - "name": "Noto Sans HK", - "fontFamily": "Noto Sans HK, sans-serif", - "slug": "noto-sans-hk", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshk/v31/nKKF-GM_FYFRJvXzVXaAPe97P1KHynJFP716qHB_-oWTiYjNvVA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans HK", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hk/noto-sans-hk-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshk/v31/nKKF-GM_FYFRJvXzVXaAPe97P1KHynJFP716qPB--oWTiYjNvVA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans HK", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hk/noto-sans-hk-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshk/v31/nKKF-GM_FYFRJvXzVXaAPe97P1KHynJFP716qC5--oWTiYjNvVA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans HK", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hk/noto-sans-hk-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshk/v31/nKKF-GM_FYFRJvXzVXaAPe97P1KHynJFP716qHB--oWTiYjNvVA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans HK", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hk/noto-sans-hk-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshk/v31/nKKF-GM_FYFRJvXzVXaAPe97P1KHynJFP716qEJ--oWTiYjNvVA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans HK", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hk/noto-sans-hk-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshk/v31/nKKF-GM_FYFRJvXzVXaAPe97P1KHynJFP716qK55-oWTiYjNvVA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans HK", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hk/noto-sans-hk-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshk/v31/nKKF-GM_FYFRJvXzVXaAPe97P1KHynJFP716qJd5-oWTiYjNvVA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans HK", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hk/noto-sans-hk-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshk/v31/nKKF-GM_FYFRJvXzVXaAPe97P1KHynJFP716qPB5-oWTiYjNvVA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans HK", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hk/noto-sans-hk-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshk/v31/nKKF-GM_FYFRJvXzVXaAPe97P1KHynJFP716qNl5-oWTiYjNvVA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans HK", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hk/noto-sans-hk-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hk/noto-sans-hk.svg" - }, - { - "name": "Noto Sans Hanifi Rohingya", - "fontFamily": "Noto Sans Hanifi Rohingya, sans-serif", - "slug": "noto-sans-hanifi-rohingya", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYY4j6vvcudK8rN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hanifi Rohingya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hanifi-rohingya/noto-sans-hanifi-rohingya-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYq4j6vvcudK8rN.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hanifi Rohingya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hanifi-rohingya/noto-sans-hanifi-rohingya-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIbG5T6vvcudK8rN.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hanifi Rohingya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hanifi-rohingya/noto-sans-hanifi-rohingya-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIb_5T6vvcudK8rN.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hanifi Rohingya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hanifi-rohingya/noto-sans-hanifi-rohingya-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hanifi-rohingya/noto-sans-hanifi-rohingya.svg" - }, - { - "name": "Noto Sans Hanunoo", - "fontFamily": "Noto Sans Hanunoo, sans-serif", - "slug": "noto-sans-hanunoo", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshanunoo/v17/f0Xs0fCv8dxkDWlZSoXOj6CphMloFsEsEpgL_ix2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hanunoo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hanunoo/noto-sans-hanunoo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hanunoo/noto-sans-hanunoo.svg" - }, - { - "name": "Noto Sans Hatran", - "fontFamily": "Noto Sans Hatran, sans-serif", - "slug": "noto-sans-hatran", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshatran/v16/A2BBn4Ne0RgnVF3Lnko-0sOBIfL_mM83r1nwzDs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hatran", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hatran/noto-sans-hatran-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hatran/noto-sans-hatran.svg" - }, - { - "name": "Noto Sans Hebrew", - "fontFamily": "Noto Sans Hebrew, sans-serif", - "slug": "noto-sans-hebrew", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4utoiJltutR2g.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hebrew/noto-sans-hebrew-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX94qtoiJltutR2g.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hebrew/noto-sans-hebrew-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXKYqtoiJltutR2g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hebrew/noto-sans-hebrew-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4qtoiJltutR2g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hebrew/noto-sans-hebrew-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXRYqtoiJltutR2g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hebrew/noto-sans-hebrew-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXqY2toiJltutR2g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hebrew/noto-sans-hebrew-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXkI2toiJltutR2g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hebrew/noto-sans-hebrew-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX942toiJltutR2g.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hebrew/noto-sans-hebrew-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX3o2toiJltutR2g.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hebrew/noto-sans-hebrew-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-hebrew/noto-sans-hebrew.svg" - }, - { - "name": "Noto Sans Imperial Aramaic", - "fontFamily": "Noto Sans Imperial Aramaic, sans-serif", - "slug": "noto-sans-imperial-aramaic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansimperialaramaic/v16/a8IMNpjwKmHXpgXbMIsbTc_kvks91LlLetBr5itQrtdml3YfPNno.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Imperial Aramaic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-imperial-aramaic/noto-sans-imperial-aramaic-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-imperial-aramaic/noto-sans-imperial-aramaic.svg" - }, - { - "name": "Noto Sans Indic Siyaq Numbers", - "fontFamily": "Noto Sans Indic Siyaq Numbers, sans-serif", - "slug": "noto-sans-indic-siyaq-numbers", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansindicsiyaqnumbers/v16/6xK5dTJFKcWIu4bpRBjRZRpsIYHabOeZ8UZLubTzpXNHKx2WPOpVd5Iu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Indic Siyaq Numbers", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-indic-siyaq-numbers/noto-sans-indic-siyaq-numbers-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-indic-siyaq-numbers/noto-sans-indic-siyaq-numbers.svg" - }, - { - "name": "Noto Sans Inscriptional Pahlavi", - "fontFamily": "Noto Sans Inscriptional Pahlavi, sans-serif", - "slug": "noto-sans-inscriptional-pahlavi", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansinscriptionalpahlavi/v16/ll8UK3GaVDuxR-TEqFPIbsR79Xxz9WEKbwsjpz7VklYlC7FCVtqVOAYK0QA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Inscriptional Pahlavi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-inscriptional-pahlavi/noto-sans-inscriptional-pahlavi-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-inscriptional-pahlavi/noto-sans-inscriptional-pahlavi.svg" - }, - { - "name": "Noto Sans Inscriptional Parthian", - "fontFamily": "Noto Sans Inscriptional Parthian, sans-serif", - "slug": "noto-sans-inscriptional-parthian", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansinscriptionalparthian/v16/k3k7o-IMPvpLmixcA63oYi-yStDkgXuXncL7dzfW3P4TAJ2yklBJ2jNkLlLr.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Inscriptional Parthian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-inscriptional-parthian/noto-sans-inscriptional-parthian-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-inscriptional-parthian/noto-sans-inscriptional-parthian.svg" - }, - { - "name": "Noto Sans JP", - "fontFamily": "Noto Sans JP, sans-serif", - "slug": "noto-sans-jp", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEi75vY0rw-oME.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-jp/noto-sans-jp-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFJEj75vY0rw-oME.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-jp/noto-sans-jp-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFE8j75vY0rw-oME.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-jp/noto-sans-jp-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEj75vY0rw-oME.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-jp/noto-sans-jp-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFCMj75vY0rw-oME.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-jp/noto-sans-jp-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFM8k75vY0rw-oME.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-jp/noto-sans-jp-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFPYk75vY0rw-oME.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-jp/noto-sans-jp-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFJEk75vY0rw-oME.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-jp/noto-sans-jp-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFLgk75vY0rw-oME.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-jp/noto-sans-jp-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-jp/noto-sans-jp.svg" - }, - { - "name": "Noto Sans Javanese", - "fontFamily": "Noto Sans Javanese, sans-serif", - "slug": "noto-sans-javanese", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxJnkFFliZYWj4O8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Javanese", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-javanese/noto-sans-javanese-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxKvkFFliZYWj4O8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Javanese", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-javanese/noto-sans-javanese-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxEfjFFliZYWj4O8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Javanese", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-javanese/noto-sans-javanese-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxH7jFFliZYWj4O8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Javanese", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-javanese/noto-sans-javanese-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-javanese/noto-sans-javanese.svg" - }, - { - "name": "Noto Sans KR", - "fontFamily": "Noto Sans KR, sans-serif", - "slug": "noto-sans-kr", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskr/v36/PbyxFmXiEBPT4ITbgNA5Cgms3VYcOA-vvnIzzuozeLTq8H4hfeE.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kr/noto-sans-kr-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskr/v36/PbyxFmXiEBPT4ITbgNA5Cgms3VYcOA-vvnIzzmoyeLTq8H4hfeE.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kr/noto-sans-kr-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskr/v36/PbyxFmXiEBPT4ITbgNA5Cgms3VYcOA-vvnIzzrQyeLTq8H4hfeE.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kr/noto-sans-kr-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskr/v36/PbyxFmXiEBPT4ITbgNA5Cgms3VYcOA-vvnIzzuoyeLTq8H4hfeE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kr/noto-sans-kr-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskr/v36/PbyxFmXiEBPT4ITbgNA5Cgms3VYcOA-vvnIzztgyeLTq8H4hfeE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kr/noto-sans-kr-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskr/v36/PbyxFmXiEBPT4ITbgNA5Cgms3VYcOA-vvnIzzjQ1eLTq8H4hfeE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kr/noto-sans-kr-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskr/v36/PbyxFmXiEBPT4ITbgNA5Cgms3VYcOA-vvnIzzg01eLTq8H4hfeE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kr/noto-sans-kr-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskr/v36/PbyxFmXiEBPT4ITbgNA5Cgms3VYcOA-vvnIzzmo1eLTq8H4hfeE.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kr/noto-sans-kr-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskr/v36/PbyxFmXiEBPT4ITbgNA5Cgms3VYcOA-vvnIzzkM1eLTq8H4hfeE.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kr/noto-sans-kr-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kr/noto-sans-kr.svg" - }, - { - "name": "Noto Sans Kaithi", - "fontFamily": "Noto Sans Kaithi, sans-serif", - "slug": "noto-sans-kaithi", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskaithi/v18/buEtppS9f8_vkXadMBJJu0tWjLwjQi0KdoZIKlo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kaithi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kaithi/noto-sans-kaithi-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kaithi/noto-sans-kaithi.svg" - }, - { - "name": "Noto Sans Kannada", - "fontFamily": "Noto Sans Kannada, sans-serif", - "slug": "noto-sans-kannada", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvMzSIMLsPKrkY.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kannada/noto-sans-kannada-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvNzSIMLsPKrkY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kannada/noto-sans-kannada-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrGXNzSIMLsPKrkY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kannada/noto-sans-kannada-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvNzSIMLsPKrkY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kannada/noto-sans-kannada-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrAnNzSIMLsPKrkY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kannada/noto-sans-kannada-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrOXKzSIMLsPKrkY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kannada/noto-sans-kannada-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrNzKzSIMLsPKrkY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kannada/noto-sans-kannada-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvKzSIMLsPKrkY.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kannada/noto-sans-kannada-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrJLKzSIMLsPKrkY.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kannada/noto-sans-kannada-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kannada/noto-sans-kannada.svg" - }, - { - "name": "Noto Sans Kayah Li", - "fontFamily": "Noto Sans Kayah Li, sans-serif", - "slug": "noto-sans-kayah-li", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WCc3CZH4EXLuKVM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kayah Li", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kayah-li/noto-sans-kayah-li-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WBU3CZH4EXLuKVM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kayah Li", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kayah-li/noto-sans-kayah-li-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WPkwCZH4EXLuKVM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kayah Li", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kayah-li/noto-sans-kayah-li-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WMAwCZH4EXLuKVM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kayah Li", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kayah-li/noto-sans-kayah-li-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kayah-li/noto-sans-kayah-li.svg" - }, - { - "name": "Noto Sans Kharoshthi", - "fontFamily": "Noto Sans Kharoshthi, sans-serif", - "slug": "noto-sans-kharoshthi", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskharoshthi/v16/Fh4qPiLjKS30-P4-pGMMXCCfvkc5Vd7KE5z4rFyx5mR1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kharoshthi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kharoshthi/noto-sans-kharoshthi-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-kharoshthi/noto-sans-kharoshthi.svg" - }, - { - "name": "Noto Sans Khmer", - "fontFamily": "Noto Sans Khmer, sans-serif", - "slug": "noto-sans-khmer", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAZz4kAbrddiA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-khmer/noto-sans-khmer-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNAJz4kAbrddiA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-khmer/noto-sans-khmer-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYvTAJz4kAbrddiA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-khmer/noto-sans-khmer-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAJz4kAbrddiA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-khmer/noto-sans-khmer-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYu_AJz4kAbrddiA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-khmer/noto-sans-khmer-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtTB5z4kAbrddiA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-khmer/noto-sans-khmer-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtqB5z4kAbrddiA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-khmer/noto-sans-khmer-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNB5z4kAbrddiA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-khmer/noto-sans-khmer-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYskB5z4kAbrddiA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-khmer/noto-sans-khmer-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-khmer/noto-sans-khmer.svg" - }, - { - "name": "Noto Sans Khojki", - "fontFamily": "Noto Sans Khojki, sans-serif", - "slug": "noto-sans-khojki", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskhojki/v16/-nFnOHM29Oofr2wohFbTuPPKVWpmK_d709jy92k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khojki", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-khojki/noto-sans-khojki-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-khojki/noto-sans-khojki.svg" - }, - { - "name": "Noto Sans Khudawadi", - "fontFamily": "Noto Sans Khudawadi, sans-serif", - "slug": "noto-sans-khudawadi", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanskhudawadi/v18/fdNi9t6ZsWBZ2k5ltHN73zZ5hc8HANlHIjRnVVXz9MY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khudawadi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-khudawadi/noto-sans-khudawadi-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-khudawadi/noto-sans-khudawadi.svg" - }, - { - "name": "Noto Sans Lao", - "fontFamily": "Noto Sans Lao, sans-serif", - "slug": "noto-sans-lao", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccfdf5MK3riB2w.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lao/noto-sans-lao-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cbdf5MK3riB2w.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lao/noto-sans-lao-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4L8bdf5MK3riB2w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lao/noto-sans-lao-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccbdf5MK3riB2w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lao/noto-sans-lao-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4Q8bdf5MK3riB2w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lao/noto-sans-lao-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4r8Hdf5MK3riB2w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lao/noto-sans-lao-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4lsHdf5MK3riB2w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lao/noto-sans-lao-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cHdf5MK3riB2w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lao/noto-sans-lao-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt42MHdf5MK3riB2w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lao/noto-sans-lao-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lao/noto-sans-lao.svg" - }, - { - "name": "Noto Sans Lao Looped", - "fontFamily": "Noto Sans Lao Looped, sans-serif", - "slug": "noto-sans-lao-looped", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomPr2M-Zw5V_T71k.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lao-looped/noto-sans-lao-looped-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomHr3M-Zw5V_T71k.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lao-looped/noto-sans-lao-looped-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomKT3M-Zw5V_T71k.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lao-looped/noto-sans-lao-looped-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomPr3M-Zw5V_T71k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lao-looped/noto-sans-lao-looped-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomMj3M-Zw5V_T71k.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lao-looped/noto-sans-lao-looped-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomCTwM-Zw5V_T71k.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lao-looped/noto-sans-lao-looped-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomB3wM-Zw5V_T71k.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lao-looped/noto-sans-lao-looped-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomHrwM-Zw5V_T71k.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lao-looped/noto-sans-lao-looped-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomFPwM-Zw5V_T71k.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lao-looped/noto-sans-lao-looped-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lao-looped/noto-sans-lao-looped.svg" - }, - { - "name": "Noto Sans Lepcha", - "fontFamily": "Noto Sans Lepcha, sans-serif", - "slug": "noto-sans-lepcha", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslepcha/v16/0QI7MWlB_JWgA166SKhu05TekNS32AJstqBXgd4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lepcha", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lepcha/noto-sans-lepcha-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lepcha/noto-sans-lepcha.svg" - }, - { - "name": "Noto Sans Limbu", - "fontFamily": "Noto Sans Limbu, sans-serif", - "slug": "noto-sans-limbu", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslimbu/v22/3JnlSDv90Gmq2mrzckOBBRRoNJVj0MF3OHRDnA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Limbu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-limbu/noto-sans-limbu-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-limbu/noto-sans-limbu.svg" - }, - { - "name": "Noto Sans Linear A", - "fontFamily": "Noto Sans Linear A, sans-serif", - "slug": "noto-sans-linear-a", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslineara/v18/oPWS_l16kP4jCuhpgEGmwJOiA18FZj22zmHQAGQicw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Linear A", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-linear-a/noto-sans-linear-a-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-linear-a/noto-sans-linear-a.svg" - }, - { - "name": "Noto Sans Linear B", - "fontFamily": "Noto Sans Linear B, sans-serif", - "slug": "noto-sans-linear-b", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslinearb/v17/HhyJU4wt9vSgfHoORYOiXOckKNB737IV3BkFTq4EPw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Linear B", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-linear-b/noto-sans-linear-b-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-linear-b/noto-sans-linear-b.svg" - }, - { - "name": "Noto Sans Lisu", - "fontFamily": "Noto Sans Lisu, sans-serif", - "slug": "noto-sans-lisu", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP2Vwt29IlxkVdig.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lisu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lisu/noto-sans-lisu-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP61wt29IlxkVdig.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lisu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lisu/noto-sans-lisu-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPB1st29IlxkVdig.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lisu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lisu/noto-sans-lisu-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPPlst29IlxkVdig.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lisu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lisu/noto-sans-lisu-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lisu/noto-sans-lisu.svg" - }, - { - "name": "Noto Sans Lycian", - "fontFamily": "Noto Sans Lycian, sans-serif", - "slug": "noto-sans-lycian", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslycian/v15/QldVNSNMqAsHtsJ7UmqxBQA9r8wA5_naCJwn00E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lycian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lycian/noto-sans-lycian-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lycian/noto-sans-lycian.svg" - }, - { - "name": "Noto Sans Lydian", - "fontFamily": "Noto Sans Lydian, sans-serif", - "slug": "noto-sans-lydian", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanslydian/v17/c4m71mVzGN7s8FmIukZJ1v4ZlcPReUPXMoIjEQI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lydian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lydian/noto-sans-lydian-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-lydian/noto-sans-lydian.svg" - }, - { - "name": "Noto Sans Mahajani", - "fontFamily": "Noto Sans Mahajani, sans-serif", - "slug": "noto-sans-mahajani", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmahajani/v17/-F6sfiVqLzI2JPCgQBnw60Agp0JrvD5Fh8ARHNh4zg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mahajani", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-mahajani/noto-sans-mahajani-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-mahajani/noto-sans-mahajani.svg" - }, - { - "name": "Noto Sans Malayalam", - "fontFamily": "Noto Sans Malayalam, sans-serif", - "slug": "noto-sans-malayalam", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuH9BFzEr6HxEA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-malayalam/noto-sans-malayalam-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuD9BFzEr6HxEA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-malayalam/noto-sans-malayalam-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_GOD9BFzEr6HxEA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-malayalam/noto-sans-malayalam-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuD9BFzEr6HxEA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-malayalam/noto-sans-malayalam-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_dOD9BFzEr6HxEA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-malayalam/noto-sans-malayalam-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_mOf9BFzEr6HxEA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-malayalam/noto-sans-malayalam-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_oef9BFzEr6HxEA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-malayalam/noto-sans-malayalam-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuf9BFzEr6HxEA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-malayalam/noto-sans-malayalam-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_7-f9BFzEr6HxEA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-malayalam/noto-sans-malayalam-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-malayalam/noto-sans-malayalam.svg" - }, - { - "name": "Noto Sans Mandaic", - "fontFamily": "Noto Sans Mandaic, sans-serif", - "slug": "noto-sans-mandaic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmandaic/v16/cIfnMbdWt1w_HgCcilqhKQBo_OsMI5_A_gMk0izH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mandaic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-mandaic/noto-sans-mandaic-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-mandaic/noto-sans-mandaic.svg" - }, - { - "name": "Noto Sans Manichaean", - "fontFamily": "Noto Sans Manichaean, sans-serif", - "slug": "noto-sans-manichaean", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmanichaean/v17/taiVGntiC4--qtsfi4Jp9-_GkPZZCcrfekqCNTtFCtdX.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Manichaean", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-manichaean/noto-sans-manichaean-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-manichaean/noto-sans-manichaean.svg" - }, - { - "name": "Noto Sans Marchen", - "fontFamily": "Noto Sans Marchen, sans-serif", - "slug": "noto-sans-marchen", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmarchen/v19/aFTO7OZ_Y282EP-WyG6QTOX_C8WZMHhPk652ZaHk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Marchen", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-marchen/noto-sans-marchen-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-marchen/noto-sans-marchen.svg" - }, - { - "name": "Noto Sans Masaram Gondi", - "fontFamily": "Noto Sans Masaram Gondi, sans-serif", - "slug": "noto-sans-masaram-gondi", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmasaramgondi/v17/6xK_dThFKcWIu4bpRBjRYRV7KZCbUq6n_1kPnuGe7RI9WSWX.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Masaram Gondi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-masaram-gondi/noto-sans-masaram-gondi-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-masaram-gondi/noto-sans-masaram-gondi.svg" - }, - { - "name": "Noto Sans Math", - "fontFamily": "Noto Sans Math, sans-serif", - "slug": "noto-sans-math", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmath/v15/7Aump_cpkSecTWaHRlH2hyV5UHkG-V048PW0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Math", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-math/noto-sans-math-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-math/noto-sans-math.svg" - }, - { - "name": "Noto Sans Mayan Numerals", - "fontFamily": "Noto Sans Mayan Numerals, sans-serif", - "slug": "noto-sans-mayan-numerals", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmayannumerals/v16/PlIuFk25O6RzLfvNNVSivR09_KqYMwvvDKYjfIiE68oo6eepYQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mayan Numerals", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-mayan-numerals/noto-sans-mayan-numerals-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-mayan-numerals/noto-sans-mayan-numerals.svg" - }, - { - "name": "Noto Sans Medefaidrin", - "fontFamily": "Noto Sans Medefaidrin, sans-serif", - "slug": "noto-sans-medefaidrin", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmErWlT318e5A3rw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Medefaidrin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-medefaidrin/noto-sans-medefaidrin-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmHjWlT318e5A3rw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Medefaidrin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-medefaidrin/noto-sans-medefaidrin-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmJTRlT318e5A3rw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Medefaidrin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-medefaidrin/noto-sans-medefaidrin-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmK3RlT318e5A3rw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Medefaidrin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-medefaidrin/noto-sans-medefaidrin-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-medefaidrin/noto-sans-medefaidrin.svg" - }, - { - "name": "Noto Sans Meetei Mayek", - "fontFamily": "Noto Sans Meetei Mayek, sans-serif", - "slug": "noto-sans-meetei-mayek", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ__TW5PgeFYVa.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-meetei-mayek/noto-sans-meetei-mayek-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ_vTW5PgeFYVa.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-meetei-mayek/noto-sans-meetei-mayek-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1SX_vTW5PgeFYVa.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-meetei-mayek/noto-sans-meetei-mayek-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ_vTW5PgeFYVa.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-meetei-mayek/noto-sans-meetei-mayek-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1T7_vTW5PgeFYVa.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-meetei-mayek/noto-sans-meetei-mayek-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1QX-fTW5PgeFYVa.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-meetei-mayek/noto-sans-meetei-mayek-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Qu-fTW5PgeFYVa.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-meetei-mayek/noto-sans-meetei-mayek-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ-fTW5PgeFYVa.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-meetei-mayek/noto-sans-meetei-mayek-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Rg-fTW5PgeFYVa.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-meetei-mayek/noto-sans-meetei-mayek-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-meetei-mayek/noto-sans-meetei-mayek.svg" - }, - { - "name": "Noto Sans Mende Kikakui", - "fontFamily": "Noto Sans Mende Kikakui, sans-serif", - "slug": "noto-sans-mende-kikakui", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmendekikakui/v28/11hRGoLHz17aKjQCWj-JHcLvu2Q5zZrnkbNCLUx_aDJLAHer.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mende Kikakui", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-mende-kikakui/noto-sans-mende-kikakui-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-mende-kikakui/noto-sans-mende-kikakui.svg" - }, - { - "name": "Noto Sans Meroitic", - "fontFamily": "Noto Sans Meroitic, sans-serif", - "slug": "noto-sans-meroitic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmeroitic/v17/IFS5HfRJndhE3P4b5jnZ3ITPvC6i00UDgDhTiKY9KQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meroitic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-meroitic/noto-sans-meroitic-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-meroitic/noto-sans-meroitic.svg" - }, - { - "name": "Noto Sans Miao", - "fontFamily": "Noto Sans Miao, sans-serif", - "slug": "noto-sans-miao", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmiao/v17/Dxxz8jmXMW75w3OmoDXVV4zyZUjgUYVslLhx.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Miao", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-miao/noto-sans-miao-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-miao/noto-sans-miao.svg" - }, - { - "name": "Noto Sans Modi", - "fontFamily": "Noto Sans Modi, sans-serif", - "slug": "noto-sans-modi", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmodi/v20/pe03MIySN5pO62Z5YkFyT7jeav5qWVAgVol-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Modi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-modi/noto-sans-modi-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-modi/noto-sans-modi.svg" - }, - { - "name": "Noto Sans Mongolian", - "fontFamily": "Noto Sans Mongolian, sans-serif", - "slug": "noto-sans-mongolian", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmongolian/v17/VdGCAYADGIwE0EopZx8xQfHlgEAMsrToxLsg6-av1x0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mongolian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-mongolian/noto-sans-mongolian-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-mongolian/noto-sans-mongolian.svg" - }, - { - "name": "Noto Sans Mono", - "fontFamily": "Noto Sans Mono, monospace", - "slug": "noto-sans-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmono/v29/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNI49rXVEQQL8Y.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-mono/noto-sans-mono-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmono/v29/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNJ49rXVEQQL8Y.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-mono/noto-sans-mono-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmono/v29/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_A1J49rXVEQQL8Y.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-mono/noto-sans-mono-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmono/v29/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNJ49rXVEQQL8Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-mono/noto-sans-mono-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmono/v29/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_GFJ49rXVEQQL8Y.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-mono/noto-sans-mono-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmono/v29/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_I1O49rXVEQQL8Y.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-mono/noto-sans-mono-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmono/v29/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_LRO49rXVEQQL8Y.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-mono/noto-sans-mono-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmono/v29/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNO49rXVEQQL8Y.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-mono/noto-sans-mono-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmono/v29/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_PpO49rXVEQQL8Y.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-mono/noto-sans-mono-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-mono/noto-sans-mono.svg" - }, - { - "name": "Noto Sans Mro", - "fontFamily": "Noto Sans Mro, sans-serif", - "slug": "noto-sans-mro", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmro/v18/qWcsB6--pZv9TqnUQMhe9b39WDzRtjkho4M.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-mro/noto-sans-mro-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-mro/noto-sans-mro.svg" - }, - { - "name": "Noto Sans Multani", - "fontFamily": "Noto Sans Multani, sans-serif", - "slug": "noto-sans-multani", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmultani/v20/9Bty3ClF38_RfOpe1gCaZ8p30BOFO1A0pfCs5Kos.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Multani", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-multani/noto-sans-multani-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-multani/noto-sans-multani.svg" - }, - { - "name": "Noto Sans Myanmar", - "fontFamily": "Noto Sans Myanmar, sans-serif", - "slug": "noto-sans-myanmar", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmyanmar/v20/AlZs_y1ZtY3ymOryg38hOCSdOnFq0HGS1uEapkAC3AY.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-myanmar/noto-sans-myanmar-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HE-98EwiEwLxR-r.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-myanmar/noto-sans-myanmar-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFa9MEwiEwLxR-r.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-myanmar/noto-sans-myanmar-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmyanmar/v20/AlZq_y1ZtY3ymOryg38hOCSdOnFq0En23OU4o1AC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-myanmar/noto-sans-myanmar-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEC9cEwiEwLxR-r.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-myanmar/noto-sans-myanmar-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEu8sEwiEwLxR-r.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-myanmar/noto-sans-myanmar-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFK88EwiEwLxR-r.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-myanmar/noto-sans-myanmar-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFW8MEwiEwLxR-r.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-myanmar/noto-sans-myanmar-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFy8cEwiEwLxR-r.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-myanmar/noto-sans-myanmar-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-myanmar/noto-sans-myanmar.svg" - }, - { - "name": "Noto Sans NKo", - "fontFamily": "Noto Sans NKo, sans-serif", - "slug": "noto-sans-nko", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansnko/v2/esDX31ZdNv-KYGGJpKGk2_RpMpCMHMLBrdA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans NKo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-nko/noto-sans-nko-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-nko/noto-sans-nko.svg" - }, - { - "name": "Noto Sans Nabataean", - "fontFamily": "Noto Sans Nabataean, sans-serif", - "slug": "noto-sans-nabataean", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansnabataean/v16/IFS4HfVJndhE3P4b5jnZ34DfsjO330dNoBJ9hK8kMK4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Nabataean", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-nabataean/noto-sans-nabataean-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-nabataean/noto-sans-nabataean.svg" - }, - { - "name": "Noto Sans Nag Mundari", - "fontFamily": "Noto Sans Nag Mundari, sans-serif", - "slug": "noto-sans-nag-mundari", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHRxirbUGA0whP19M.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Nag Mundari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-nag-mundari/noto-sans-nag-mundari-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHRyqrbUGA0whP19M.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Nag Mundari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-nag-mundari/noto-sans-nag-mundari-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHR8asbUGA0whP19M.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Nag Mundari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-nag-mundari/noto-sans-nag-mundari-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHR_-sbUGA0whP19M.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Nag Mundari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-nag-mundari/noto-sans-nag-mundari-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-nag-mundari/noto-sans-nag-mundari.svg" - }, - { - "name": "Noto Sans Nandinagari", - "fontFamily": "Noto Sans Nandinagari, sans-serif", - "slug": "noto-sans-nandinagari", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansnandinagari/v3/or38Q7733eiDljA1IufXSNFT-1KI5y10H4jVa5RXzC1KOw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Nandinagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-nandinagari/noto-sans-nandinagari-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-nandinagari/noto-sans-nandinagari.svg" - }, - { - "name": "Noto Sans New Tai Lue", - "fontFamily": "Noto Sans New Tai Lue, sans-serif", - "slug": "noto-sans-new-tai-lue", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdeXAYUbghFPKzeY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans New Tai Lue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-new-tai-lue/noto-sans-new-tai-lue-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pddfAYUbghFPKzeY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans New Tai Lue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-new-tai-lue/noto-sans-new-tai-lue-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdTvHYUbghFPKzeY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans New Tai Lue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-new-tai-lue/noto-sans-new-tai-lue-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdQLHYUbghFPKzeY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans New Tai Lue", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-new-tai-lue/noto-sans-new-tai-lue-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-new-tai-lue/noto-sans-new-tai-lue.svg" - }, - { - "name": "Noto Sans Newa", - "fontFamily": "Noto Sans Newa, sans-serif", - "slug": "noto-sans-newa", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansnewa/v16/7r3fqXp6utEsO9pI4f8ok8sWg8n_qN4R5lNU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Newa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-newa/noto-sans-newa-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-newa/noto-sans-newa.svg" - }, - { - "name": "Noto Sans Nushu", - "fontFamily": "Noto Sans Nushu, sans-serif", - "slug": "noto-sans-nushu", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansnushu/v19/rnCw-xRQ3B7652emAbAe_Ai1IYaFWFAMArZKqQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Nushu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-nushu/noto-sans-nushu-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-nushu/noto-sans-nushu.svg" - }, - { - "name": "Noto Sans Ogham", - "fontFamily": "Noto Sans Ogham, sans-serif", - "slug": "noto-sans-ogham", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansogham/v17/kmKlZqk1GBDGN0mY6k5lmEmww4hrt5laQxcoCA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ogham", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-ogham/noto-sans-ogham-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-ogham/noto-sans-ogham.svg" - }, - { - "name": "Noto Sans Ol Chiki", - "fontFamily": "Noto Sans Ol Chiki, sans-serif", - "slug": "noto-sans-ol-chiki", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALWk267I6gVrz5gQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ol Chiki", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-ol-chiki/noto-sans-ol-chiki-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALVs267I6gVrz5gQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ol Chiki", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-ol-chiki/noto-sans-ol-chiki-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALbcx67I6gVrz5gQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ol Chiki", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-ol-chiki/noto-sans-ol-chiki-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALY4x67I6gVrz5gQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ol Chiki", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-ol-chiki/noto-sans-ol-chiki-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-ol-chiki/noto-sans-ol-chiki.svg" - }, - { - "name": "Noto Sans Old Hungarian", - "fontFamily": "Noto Sans Old Hungarian, sans-serif", - "slug": "noto-sans-old-hungarian", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansoldhungarian/v16/E213_cD6hP3GwCJPEUssHEM0KqLaHJXg2PiIgRfjbg5nCYXt.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old Hungarian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-old-hungarian/noto-sans-old-hungarian-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-old-hungarian/noto-sans-old-hungarian.svg" - }, - { - "name": "Noto Sans Old Italic", - "fontFamily": "Noto Sans Old Italic, sans-serif", - "slug": "noto-sans-old-italic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansolditalic/v16/TuGOUUFzXI5FBtUq5a8bh68BJxxEVam7tWlRdRhtCC4d.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old Italic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-old-italic/noto-sans-old-italic-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-old-italic/noto-sans-old-italic.svg" - }, - { - "name": "Noto Sans Old North Arabian", - "fontFamily": "Noto Sans Old North Arabian, sans-serif", - "slug": "noto-sans-old-north-arabian", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansoldnortharabian/v16/esDF30BdNv-KYGGJpKGk2tNiMt7Jar6olZDyNdr81zBQmUo_xw4ABw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old North Arabian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-old-north-arabian/noto-sans-old-north-arabian-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-old-north-arabian/noto-sans-old-north-arabian.svg" - }, - { - "name": "Noto Sans Old Permic", - "fontFamily": "Noto Sans Old Permic, sans-serif", - "slug": "noto-sans-old-permic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansoldpermic/v17/snf1s1q1-dF8pli1TesqcbUY4Mr-ElrwKLdXgv_dKYB5.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old Permic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-old-permic/noto-sans-old-permic-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-old-permic/noto-sans-old-permic.svg" - }, - { - "name": "Noto Sans Old Persian", - "fontFamily": "Noto Sans Old Persian, sans-serif", - "slug": "noto-sans-old-persian", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansoldpersian/v16/wEOjEAbNnc5caQTFG18FHrZr9Bp6-8CmIJ_tqOlQfx9CjA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old Persian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-old-persian/noto-sans-old-persian-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-old-persian/noto-sans-old-persian.svg" - }, - { - "name": "Noto Sans Old Sogdian", - "fontFamily": "Noto Sans Old Sogdian, sans-serif", - "slug": "noto-sans-old-sogdian", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansoldsogdian/v16/3JnjSCH90Gmq2mrzckOBBhFhdrMst48aURt7neIqM-9uyg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old Sogdian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-old-sogdian/noto-sans-old-sogdian-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-old-sogdian/noto-sans-old-sogdian.svg" - }, - { - "name": "Noto Sans Old South Arabian", - "fontFamily": "Noto Sans Old South Arabian, sans-serif", - "slug": "noto-sans-old-south-arabian", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansoldsoutharabian/v16/3qT5oiOhnSyU8TNFIdhZTice3hB_HWKsEnF--0XCHiKx1OtDT9HwTA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old South Arabian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-old-south-arabian/noto-sans-old-south-arabian-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-old-south-arabian/noto-sans-old-south-arabian.svg" - }, - { - "name": "Noto Sans Old Turkic", - "fontFamily": "Noto Sans Old Turkic, sans-serif", - "slug": "noto-sans-old-turkic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansoldturkic/v16/yMJNMJVya43H0SUF_WmcGEQVqoEMKDKbsE2RjEw-Vyws.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old Turkic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-old-turkic/noto-sans-old-turkic-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-old-turkic/noto-sans-old-turkic.svg" - }, - { - "name": "Noto Sans Oriya", - "fontFamily": "Noto Sans Oriya, sans-serif", - "slug": "noto-sans-oriya", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0fq_c6LhHBRe-.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-oriya/noto-sans-oriya-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0f6_c6LhHBRe-.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-oriya/noto-sans-oriya-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Iviqf6_c6LhHBRe-.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-oriya/noto-sans-oriya-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0f6_c6LhHBRe-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-oriya/noto-sans-oriya-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvjGf6_c6LhHBRe-.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-oriya/noto-sans-oriya-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgqeK_c6LhHBRe-.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-oriya/noto-sans-oriya-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgTeK_c6LhHBRe-.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-oriya/noto-sans-oriya-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0eK_c6LhHBRe-.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-oriya/noto-sans-oriya-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvhdeK_c6LhHBRe-.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-oriya/noto-sans-oriya-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-oriya/noto-sans-oriya.svg" - }, - { - "name": "Noto Sans Osage", - "fontFamily": "Noto Sans Osage, sans-serif", - "slug": "noto-sans-osage", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansosage/v18/oPWX_kB6kP4jCuhpgEGmw4mtAVtXRlaSxkrMCQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Osage", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-osage/noto-sans-osage-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-osage/noto-sans-osage.svg" - }, - { - "name": "Noto Sans Osmanya", - "fontFamily": "Noto Sans Osmanya, sans-serif", - "slug": "noto-sans-osmanya", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansosmanya/v18/8vIS7xs32H97qzQKnzfeWzUyUpOJmz6kR47NCV5Z.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Osmanya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-osmanya/noto-sans-osmanya-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-osmanya/noto-sans-osmanya.svg" - }, - { - "name": "Noto Sans Pahawh Hmong", - "fontFamily": "Noto Sans Pahawh Hmong, sans-serif", - "slug": "noto-sans-pahawh-hmong", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanspahawhhmong/v18/bWtp7e_KfBziStx7lIzKKaMUOBEA3UPQDW7krzc_c48aMpM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Pahawh Hmong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-pahawh-hmong/noto-sans-pahawh-hmong-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-pahawh-hmong/noto-sans-pahawh-hmong.svg" - }, - { - "name": "Noto Sans Palmyrene", - "fontFamily": "Noto Sans Palmyrene, sans-serif", - "slug": "noto-sans-palmyrene", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanspalmyrene/v16/ZgNPjOdKPa7CHqq0h37c_ASCWvH93SFCPnK5ZpdNtcA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Palmyrene", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-palmyrene/noto-sans-palmyrene-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-palmyrene/noto-sans-palmyrene.svg" - }, - { - "name": "Noto Sans Pau Cin Hau", - "fontFamily": "Noto Sans Pau Cin Hau, sans-serif", - "slug": "noto-sans-pau-cin-hau", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanspaucinhau/v20/x3d-cl3IZKmUqiMg_9wBLLtzl22EayN7ehIdjEWqKMxsKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Pau Cin Hau", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-pau-cin-hau/noto-sans-pau-cin-hau-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-pau-cin-hau/noto-sans-pau-cin-hau.svg" - }, - { - "name": "Noto Sans Phags Pa", - "fontFamily": "Noto Sans Phags Pa, sans-serif", - "slug": "noto-sans-phags-pa", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansphagspa/v15/pxiZyoo6v8ZYyWh5WuPeJzMkd4SrGChkqkSsrvNXiA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Phags Pa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-phags-pa/noto-sans-phags-pa-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-phags-pa/noto-sans-phags-pa.svg" - }, - { - "name": "Noto Sans Phoenician", - "fontFamily": "Noto Sans Phoenician, sans-serif", - "slug": "noto-sans-phoenician", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansphoenician/v17/jizFRF9Ksm4Bt9PvcTaEkIHiTVtxmFtS5X7Jot-p5561.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Phoenician", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-phoenician/noto-sans-phoenician-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-phoenician/noto-sans-phoenician.svg" - }, - { - "name": "Noto Sans Psalter Pahlavi", - "fontFamily": "Noto Sans Psalter Pahlavi, sans-serif", - "slug": "noto-sans-psalter-pahlavi", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanspsalterpahlavi/v16/rP2Vp3K65FkAtHfwd-eISGznYihzggmsicPfud3w1G3KsUQBct4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Psalter Pahlavi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-psalter-pahlavi/noto-sans-psalter-pahlavi-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-psalter-pahlavi/noto-sans-psalter-pahlavi.svg" - }, - { - "name": "Noto Sans Rejang", - "fontFamily": "Noto Sans Rejang, sans-serif", - "slug": "noto-sans-rejang", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansrejang/v18/Ktk2AKuMeZjqPnXgyqrib7DIogqwN4O3WYZB_sU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Rejang", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-rejang/noto-sans-rejang-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-rejang/noto-sans-rejang.svg" - }, - { - "name": "Noto Sans Runic", - "fontFamily": "Noto Sans Runic, sans-serif", - "slug": "noto-sans-runic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansrunic/v17/H4c_BXWPl9DZ0Xe_nHUaus7W68WWaxpvHtgIYg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Runic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-runic/noto-sans-runic-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-runic/noto-sans-runic.svg" - }, - { - "name": "Noto Sans SC", - "fontFamily": "Noto Sans SC, sans-serif", - "slug": "noto-sans-sc", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssc/v36/k3kCo84MPvpLmixcA63oeAL7Iqp5IZJF9bmaG9_EnYxNbPzS5HE.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sc/noto-sans-sc-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssc/v36/k3kCo84MPvpLmixcA63oeAL7Iqp5IZJF9bmaG1_FnYxNbPzS5HE.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sc/noto-sans-sc-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssc/v36/k3kCo84MPvpLmixcA63oeAL7Iqp5IZJF9bmaG4HFnYxNbPzS5HE.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sc/noto-sans-sc-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssc/v36/k3kCo84MPvpLmixcA63oeAL7Iqp5IZJF9bmaG9_FnYxNbPzS5HE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sc/noto-sans-sc-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssc/v36/k3kCo84MPvpLmixcA63oeAL7Iqp5IZJF9bmaG-3FnYxNbPzS5HE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sc/noto-sans-sc-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssc/v36/k3kCo84MPvpLmixcA63oeAL7Iqp5IZJF9bmaGwHCnYxNbPzS5HE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sc/noto-sans-sc-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssc/v36/k3kCo84MPvpLmixcA63oeAL7Iqp5IZJF9bmaGzjCnYxNbPzS5HE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sc/noto-sans-sc-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssc/v36/k3kCo84MPvpLmixcA63oeAL7Iqp5IZJF9bmaG1_CnYxNbPzS5HE.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sc/noto-sans-sc-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssc/v36/k3kCo84MPvpLmixcA63oeAL7Iqp5IZJF9bmaG3bCnYxNbPzS5HE.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sc/noto-sans-sc-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sc/noto-sans-sc.svg" - }, - { - "name": "Noto Sans Samaritan", - "fontFamily": "Noto Sans Samaritan, sans-serif", - "slug": "noto-sans-samaritan", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssamaritan/v16/buEqppe9f8_vkXadMBJJo0tSmaYjFkxOUo5jNlOVMzQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Samaritan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-samaritan/noto-sans-samaritan-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-samaritan/noto-sans-samaritan.svg" - }, - { - "name": "Noto Sans Saurashtra", - "fontFamily": "Noto Sans Saurashtra, sans-serif", - "slug": "noto-sans-saurashtra", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssaurashtra/v19/ea8GacQ0Wfz_XKWXe6OtoA8w8zvmYwTef9ndjhPTSIx9.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Saurashtra", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-saurashtra/noto-sans-saurashtra-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-saurashtra/noto-sans-saurashtra.svg" - }, - { - "name": "Noto Sans Sharada", - "fontFamily": "Noto Sans Sharada, sans-serif", - "slug": "noto-sans-sharada", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssharada/v16/gok0H7rwAEdtF9N8-mdTGALG6p0kwoXLPOwr4H8a.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sharada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sharada/noto-sans-sharada-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sharada/noto-sans-sharada.svg" - }, - { - "name": "Noto Sans Shavian", - "fontFamily": "Noto Sans Shavian, sans-serif", - "slug": "noto-sans-shavian", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansshavian/v17/CHy5V_HZE0jxJBQlqAeCKjJvQBNF4EFQSplv2Cwg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Shavian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-shavian/noto-sans-shavian-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-shavian/noto-sans-shavian.svg" - }, - { - "name": "Noto Sans Siddham", - "fontFamily": "Noto Sans Siddham, sans-serif", - "slug": "noto-sans-siddham", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssiddham/v17/OZpZg-FwqiNLe9PELUikxTWDoCCeGqndk3Ic92ZH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Siddham", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-siddham/noto-sans-siddham-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-siddham/noto-sans-siddham.svg" - }, - { - "name": "Noto Sans SignWriting", - "fontFamily": "Noto Sans SignWriting, sans-serif", - "slug": "noto-sans-signwriting", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssignwriting/v1/Noas6VX_wIWFbTTCrYmvy9A2UnkL-2SZAWiUEVCARYQemg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans SignWriting", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-signwriting/noto-sans-signwriting-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-signwriting/noto-sans-signwriting.svg" - }, - { - "name": "Noto Sans Sinhala", - "fontFamily": "Noto Sans Sinhala, sans-serif", - "slug": "noto-sans-sinhala", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2b5lgLpJwbQRM.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sinhala/noto-sans-sinhala-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2a5lgLpJwbQRM.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sinhala/noto-sans-sinhala-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwlOa5lgLpJwbQRM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sinhala/noto-sans-sinhala-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2a5lgLpJwbQRM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sinhala/noto-sans-sinhala-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwj-a5lgLpJwbQRM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sinhala/noto-sans-sinhala-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwtOd5lgLpJwbQRM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sinhala/noto-sans-sinhala-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwuqd5lgLpJwbQRM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sinhala/noto-sans-sinhala-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2d5lgLpJwbQRM.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sinhala/noto-sans-sinhala-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwqSd5lgLpJwbQRM.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sinhala/noto-sans-sinhala-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sinhala/noto-sans-sinhala.svg" - }, - { - "name": "Noto Sans Sogdian", - "fontFamily": "Noto Sans Sogdian, sans-serif", - "slug": "noto-sans-sogdian", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssogdian/v16/taiQGn5iC4--qtsfi4Jp6eHPnfxQBo--Pm6KHidM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sogdian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sogdian/noto-sans-sogdian-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sogdian/noto-sans-sogdian.svg" - }, - { - "name": "Noto Sans Sora Sompeng", - "fontFamily": "Noto Sans Sora Sompeng, sans-serif", - "slug": "noto-sans-sora-sompeng", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHR818DpZXJQd4Mu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sora Sompeng", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sora-sompeng/noto-sans-sora-sompeng-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHRO18DpZXJQd4Mu.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sora Sompeng", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sora-sompeng/noto-sans-sora-sompeng-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSi0MDpZXJQd4Mu.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sora Sompeng", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sora-sompeng/noto-sans-sora-sompeng-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSb0MDpZXJQd4Mu.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sora Sompeng", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sora-sompeng/noto-sans-sora-sompeng-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sora-sompeng/noto-sans-sora-sompeng.svg" - }, - { - "name": "Noto Sans Soyombo", - "fontFamily": "Noto Sans Soyombo, sans-serif", - "slug": "noto-sans-soyombo", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssoyombo/v17/RWmSoL-Y6-8q5LTtXs6MF6q7xsxgY0FrIFOcK25W.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Soyombo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-soyombo/noto-sans-soyombo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-soyombo/noto-sans-soyombo.svg" - }, - { - "name": "Noto Sans Sundanese", - "fontFamily": "Noto Sans Sundanese, sans-serif", - "slug": "noto-sans-sundanese", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxpNNHCizv7fQES.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sundanese", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sundanese/noto-sans-sundanese-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxbNNHCizv7fQES.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sundanese", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sundanese/noto-sans-sundanese-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6cty3M9HCizv7fQES.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sundanese", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sundanese/noto-sans-sundanese-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctyOM9HCizv7fQES.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sundanese", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sundanese/noto-sans-sundanese-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-sundanese/noto-sans-sundanese.svg" - }, - { - "name": "Noto Sans Syloti Nagri", - "fontFamily": "Noto Sans Syloti Nagri, sans-serif", - "slug": "noto-sans-syloti-nagri", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssylotinagri/v20/uU9eCAQZ75uhfF9UoWDRiY3q7Sf_VFV3m4dGFVfxN87gsj0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syloti Nagri", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-syloti-nagri/noto-sans-syloti-nagri-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-syloti-nagri/noto-sans-syloti-nagri.svg" - }, - { - "name": "Noto Sans Symbols", - "fontFamily": "Noto Sans Symbols, sans-serif", - "slug": "noto-sans-symbols", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ4gavVFRkzrbQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-symbols/noto-sans-symbols-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_Q8gavVFRkzrbQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-symbols/noto-sans-symbols-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gIw8gavVFRkzrbQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-symbols/noto-sans-symbols-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ8gavVFRkzrbQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-symbols/noto-sans-symbols-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gTw8gavVFRkzrbQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-symbols/noto-sans-symbols-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gowggavVFRkzrbQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-symbols/noto-sans-symbols-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gmgggavVFRkzrbQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-symbols/noto-sans-symbols-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_QggavVFRkzrbQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-symbols/noto-sans-symbols-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g1AggavVFRkzrbQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-symbols/noto-sans-symbols-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-symbols/noto-sans-symbols.svg" - }, - { - "name": "Noto Sans Symbols 2", - "fontFamily": "Noto Sans Symbols 2, sans-serif", - "slug": "noto-sans-symbols-2", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssymbols2/v21/I_uyMoGduATTei9eI8daxVHDyfisHr71ypPqfX71-AI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols 2", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-symbols-2/noto-sans-symbols-2-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-symbols-2/noto-sans-symbols-2.svg" - }, - { - "name": "Noto Sans Syriac", - "fontFamily": "Noto Sans Syriac, sans-serif", - "slug": "noto-sans-syriac", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-VD9caJyZfUL_FC.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-syriac/noto-sans-syriac-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-XD9MaJyZfUL_FC.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-syriac/noto-sans-syriac-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Ud9MaJyZfUL_FC.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-syriac/noto-sans-syriac-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-VD9MaJyZfUL_FC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-syriac/noto-sans-syriac-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Vx9MaJyZfUL_FC.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-syriac/noto-sans-syriac-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Wd88aJyZfUL_FC.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-syriac/noto-sans-syriac-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Wk88aJyZfUL_FC.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-syriac/noto-sans-syriac-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-XD88aJyZfUL_FC.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-syriac/noto-sans-syriac-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Xq88aJyZfUL_FC.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-syriac/noto-sans-syriac-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-syriac/noto-sans-syriac.svg" - }, - { - "name": "Noto Sans Syriac Eastern", - "fontFamily": "Noto Sans Syriac Eastern, sans-serif", - "slug": "noto-sans-syriac-eastern", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssyriaceastern/v1/Noac6Vj_wIWFbTTCrYmvy8AjVU8aslWRHHvRYxS-Ro3yS0FDacnHPi-eszCL5ep1QPQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac Eastern", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-syriac-eastern/noto-sans-syriac-eastern-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssyriaceastern/v1/Noac6Vj_wIWFbTTCrYmvy8AjVU8aslWRHHvRYxS-Ro3yS0FDacnHPq-fszCL5ep1QPQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac Eastern", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-syriac-eastern/noto-sans-syriac-eastern-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssyriaceastern/v1/Noac6Vj_wIWFbTTCrYmvy8AjVU8aslWRHHvRYxS-Ro3yS0FDacnHPnGfszCL5ep1QPQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac Eastern", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-syriac-eastern/noto-sans-syriac-eastern-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssyriaceastern/v1/Noac6Vj_wIWFbTTCrYmvy8AjVU8aslWRHHvRYxS-Ro3yS0FDacnHPi-fszCL5ep1QPQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac Eastern", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-syriac-eastern/noto-sans-syriac-eastern-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssyriaceastern/v1/Noac6Vj_wIWFbTTCrYmvy8AjVU8aslWRHHvRYxS-Ro3yS0FDacnHPh2fszCL5ep1QPQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac Eastern", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-syriac-eastern/noto-sans-syriac-eastern-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssyriaceastern/v1/Noac6Vj_wIWFbTTCrYmvy8AjVU8aslWRHHvRYxS-Ro3yS0FDacnHPvGYszCL5ep1QPQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac Eastern", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-syriac-eastern/noto-sans-syriac-eastern-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssyriaceastern/v1/Noac6Vj_wIWFbTTCrYmvy8AjVU8aslWRHHvRYxS-Ro3yS0FDacnHPsiYszCL5ep1QPQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac Eastern", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-syriac-eastern/noto-sans-syriac-eastern-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssyriaceastern/v1/Noac6Vj_wIWFbTTCrYmvy8AjVU8aslWRHHvRYxS-Ro3yS0FDacnHPq-YszCL5ep1QPQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac Eastern", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-syriac-eastern/noto-sans-syriac-eastern-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanssyriaceastern/v1/Noac6Vj_wIWFbTTCrYmvy8AjVU8aslWRHHvRYxS-Ro3yS0FDacnHPoaYszCL5ep1QPQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac Eastern", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-syriac-eastern/noto-sans-syriac-eastern-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-syriac-eastern/noto-sans-syriac-eastern.svg" - }, - { - "name": "Noto Sans TC", - "fontFamily": "Noto Sans TC, sans-serif", - "slug": "noto-sans-tc", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstc/v35/-nFuOG829Oofr2wohFbTp9ifNAn722rq0MXz76Cz_CpOtma3uNQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans TC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tc/noto-sans-tc-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstc/v35/-nFuOG829Oofr2wohFbTp9ifNAn722rq0MXz7yCy_CpOtma3uNQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans TC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tc/noto-sans-tc-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstc/v35/-nFuOG829Oofr2wohFbTp9ifNAn722rq0MXz7_6y_CpOtma3uNQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans TC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tc/noto-sans-tc-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstc/v35/-nFuOG829Oofr2wohFbTp9ifNAn722rq0MXz76Cy_CpOtma3uNQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans TC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tc/noto-sans-tc-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstc/v35/-nFuOG829Oofr2wohFbTp9ifNAn722rq0MXz75Ky_CpOtma3uNQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans TC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tc/noto-sans-tc-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstc/v35/-nFuOG829Oofr2wohFbTp9ifNAn722rq0MXz7361_CpOtma3uNQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans TC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tc/noto-sans-tc-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstc/v35/-nFuOG829Oofr2wohFbTp9ifNAn722rq0MXz70e1_CpOtma3uNQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans TC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tc/noto-sans-tc-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstc/v35/-nFuOG829Oofr2wohFbTp9ifNAn722rq0MXz7yC1_CpOtma3uNQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans TC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tc/noto-sans-tc-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstc/v35/-nFuOG829Oofr2wohFbTp9ifNAn722rq0MXz7wm1_CpOtma3uNQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans TC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tc/noto-sans-tc-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tc/noto-sans-tc.svg" - }, - { - "name": "Noto Sans Tagalog", - "fontFamily": "Noto Sans Tagalog, sans-serif", - "slug": "noto-sans-tagalog", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstagalog/v18/J7aFnoNzCnFcV9ZI-sUYuvote1R0wwEAA8jHexnL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tagalog", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tagalog/noto-sans-tagalog-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tagalog/noto-sans-tagalog.svg" - }, - { - "name": "Noto Sans Tagbanwa", - "fontFamily": "Noto Sans Tagbanwa, sans-serif", - "slug": "noto-sans-tagbanwa", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstagbanwa/v18/Y4GWYbB8VTEp4t3MKJSMmQdIKjRtt_nZRjQEaYpGoQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tagbanwa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tagbanwa/noto-sans-tagbanwa-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tagbanwa/noto-sans-tagbanwa.svg" - }, - { - "name": "Noto Sans Tai Le", - "fontFamily": "Noto Sans Tai Le, sans-serif", - "slug": "noto-sans-tai-le", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstaile/v17/vEFK2-VODB8RrNDvZSUmVxEATwR58tK1W77HtMo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tai Le", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tai-le/noto-sans-tai-le-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tai-le/noto-sans-tai-le.svg" - }, - { - "name": "Noto Sans Tai Tham", - "fontFamily": "Noto Sans Tai Tham, sans-serif", - "slug": "noto-sans-tai-tham", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBCUbPgquyaRGKMw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tai Tham", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tai-tham/noto-sans-tai-tham-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBBcbPgquyaRGKMw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tai Tham", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tai-tham/noto-sans-tai-tham-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBPscPgquyaRGKMw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tai Tham", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tai-tham/noto-sans-tai-tham-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBMIcPgquyaRGKMw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tai Tham", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tai-tham/noto-sans-tai-tham-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tai-tham/noto-sans-tai-tham.svg" - }, - { - "name": "Noto Sans Tai Viet", - "fontFamily": "Noto Sans Tai Viet, sans-serif", - "slug": "noto-sans-tai-viet", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstaiviet/v16/8QIUdj3HhN_lv4jf9vsE-9GMOLsaSPZr644fWsRO9w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tai Viet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tai-viet/noto-sans-tai-viet-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tai-viet/noto-sans-tai-viet.svg" - }, - { - "name": "Noto Sans Takri", - "fontFamily": "Noto Sans Takri, sans-serif", - "slug": "noto-sans-takri", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstakri/v23/TuGJUVpzXI5FBtUq5a8bnKIOdTwQNO_W3khJXg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Takri", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-takri/noto-sans-takri-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-takri/noto-sans-takri.svg" - }, - { - "name": "Noto Sans Tamil", - "fontFamily": "Noto Sans Tamil, sans-serif", - "slug": "noto-sans-tamil", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGor0RqKDt_EvT.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tamil/noto-sans-tamil-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGo70RqKDt_EvT.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tamil/noto-sans-tamil-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7uYo70RqKDt_EvT.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tamil/noto-sans-tamil-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGo70RqKDt_EvT.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tamil/noto-sans-tamil-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7v0o70RqKDt_EvT.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tamil/noto-sans-tamil-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7sYpL0RqKDt_EvT.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tamil/noto-sans-tamil-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7shpL0RqKDt_EvT.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tamil/noto-sans-tamil-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGpL0RqKDt_EvT.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tamil/noto-sans-tamil-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tvpL0RqKDt_EvT.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tamil/noto-sans-tamil-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tamil/noto-sans-tamil.svg" - }, - { - "name": "Noto Sans Tamil Supplement", - "fontFamily": "Noto Sans Tamil Supplement, sans-serif", - "slug": "noto-sans-tamil-supplement", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstamilsupplement/v21/DdTz78kEtnooLS5rXF1DaruiCd_bFp_Ph4sGcn7ax_vsAeMkeq1x.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil Supplement", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tamil-supplement/noto-sans-tamil-supplement-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tamil-supplement/noto-sans-tamil-supplement.svg" - }, - { - "name": "Noto Sans Tangsa", - "fontFamily": "Noto Sans Tangsa, sans-serif", - "slug": "noto-sans-tangsa", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp1YkyoRYdplyJDA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tangsa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tangsa/noto-sans-tangsa-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp1qkyoRYdplyJDA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tangsa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tangsa/noto-sans-tangsa-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp2GlCoRYdplyJDA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tangsa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tangsa/noto-sans-tangsa-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp2_lCoRYdplyJDA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tangsa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tangsa/noto-sans-tangsa-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tangsa/noto-sans-tangsa.svg" - }, - { - "name": "Noto Sans Telugu", - "fontFamily": "Noto Sans Telugu, sans-serif", - "slug": "noto-sans-telugu", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezfqQUbf-3v37w.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-telugu/noto-sans-telugu-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zbqQUbf-3v37w.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-telugu/noto-sans-telugu-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntJTbqQUbf-3v37w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-telugu/noto-sans-telugu-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezbqQUbf-3v37w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-telugu/noto-sans-telugu-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntSTbqQUbf-3v37w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-telugu/noto-sans-telugu-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntpTHqQUbf-3v37w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-telugu/noto-sans-telugu-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntnDHqQUbf-3v37w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-telugu/noto-sans-telugu-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zHqQUbf-3v37w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-telugu/noto-sans-telugu-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt0jHqQUbf-3v37w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-telugu/noto-sans-telugu-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-telugu/noto-sans-telugu.svg" - }, - { - "name": "Noto Sans Thaana", - "fontFamily": "Noto Sans Thaana, sans-serif", - "slug": "noto-sans-thaana", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbxLhnu4-tbNu.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thaana/noto-sans-thaana-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VrbhLhnu4-tbNu.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thaana/noto-sans-thaana-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4W1bhLhnu4-tbNu.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thaana/noto-sans-thaana-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbhLhnu4-tbNu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thaana/noto-sans-thaana-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XZbhLhnu4-tbNu.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thaana/noto-sans-thaana-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4U1aRLhnu4-tbNu.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thaana/noto-sans-thaana-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4UMaRLhnu4-tbNu.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thaana/noto-sans-thaana-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VraRLhnu4-tbNu.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thaana/noto-sans-thaana-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VCaRLhnu4-tbNu.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thaana/noto-sans-thaana-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thaana/noto-sans-thaana.svg" - }, - { - "name": "Noto Sans Thai", - "fontFamily": "Noto Sans Thai, sans-serif", - "slug": "noto-sans-thai", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RspzF-QRvzzXg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thai/noto-sans-thai-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRtpzF-QRvzzXg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thai/noto-sans-thai-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU8ptpzF-QRvzzXg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thai/noto-sans-thai-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RtpzF-QRvzzXg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thai/noto-sans-thai-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU6ZtpzF-QRvzzXg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thai/noto-sans-thai-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU0pqpzF-QRvzzXg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thai/noto-sans-thai-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU3NqpzF-QRvzzXg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thai/noto-sans-thai-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRqpzF-QRvzzXg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thai/noto-sans-thai-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUz1qpzF-QRvzzXg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thai/noto-sans-thai-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thai/noto-sans-thai.svg" - }, - { - "name": "Noto Sans Thai Looped", - "fontFamily": "Noto Sans Thai Looped, sans-serif", - "slug": "noto-sans-thai-looped", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthailooped/v14/B50fF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3YX6AYeCT_Wfd1.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thai-looped/noto-sans-thai-looped-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y84E4UgrzUO5sKA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thai-looped/noto-sans-thai-looped-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yl4I4UgrzUO5sKA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thai-looped/noto-sans-thai-looped-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthailooped/v14/B50RF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3gO6ocWiHvWQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thai-looped/noto-sans-thai-looped-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yz4M4UgrzUO5sKA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thai-looped/noto-sans-thai-looped-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y44Q4UgrzUO5sKA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thai-looped/noto-sans-thai-looped-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yh4U4UgrzUO5sKA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thai-looped/noto-sans-thai-looped-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Ym4Y4UgrzUO5sKA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thai-looped/noto-sans-thai-looped-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yv4c4UgrzUO5sKA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thai-looped/noto-sans-thai-looped-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-thai-looped/noto-sans-thai-looped.svg" - }, - { - "name": "Noto Sans Tifinagh", - "fontFamily": "Noto Sans Tifinagh, sans-serif", - "slug": "noto-sans-tifinagh", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstifinagh/v17/I_uzMoCduATTei9eI8dawkHIwvmhCvbn6rnEcXfs4Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tifinagh", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tifinagh/noto-sans-tifinagh-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tifinagh/noto-sans-tifinagh.svg" - }, - { - "name": "Noto Sans Tirhuta", - "fontFamily": "Noto Sans Tirhuta, sans-serif", - "slug": "noto-sans-tirhuta", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanstirhuta/v16/t5t6IQYRNJ6TWjahPR6X-M-apUyby7uGUBsTrn5P.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tirhuta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tirhuta/noto-sans-tirhuta-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-tirhuta/noto-sans-tirhuta.svg" - }, - { - "name": "Noto Sans Ugaritic", - "fontFamily": "Noto Sans Ugaritic, sans-serif", - "slug": "noto-sans-ugaritic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansugaritic/v16/3qTwoiqhnSyU8TNFIdhZVCwbjCpkAXXkMhoIkiazfg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ugaritic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-ugaritic/noto-sans-ugaritic-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-ugaritic/noto-sans-ugaritic.svg" - }, - { - "name": "Noto Sans Vai", - "fontFamily": "Noto Sans Vai, sans-serif", - "slug": "noto-sans-vai", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansvai/v17/NaPecZTSBuhTirw6IaFn_UrURMTsDIRSfr0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Vai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-vai/noto-sans-vai-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-vai/noto-sans-vai.svg" - }, - { - "name": "Noto Sans Vithkuqi", - "fontFamily": "Noto Sans Vithkuqi, sans-serif", - "slug": "noto-sans-vithkuqi", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansvithkuqi/v1/jVyi7m77CXvQswd6WjYu9E1wN6cih2TSchUEkQgw3KTnva5SgKM7vmn0BLE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Vithkuqi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-vithkuqi/noto-sans-vithkuqi-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansvithkuqi/v1/jVyi7m77CXvQswd6WjYu9E1wN6cih2TSchUEkQgw3KTnvZxSgKM7vmn0BLE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Vithkuqi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-vithkuqi/noto-sans-vithkuqi-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansvithkuqi/v1/jVyi7m77CXvQswd6WjYu9E1wN6cih2TSchUEkQgw3KTnvXBVgKM7vmn0BLE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Vithkuqi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-vithkuqi/noto-sans-vithkuqi-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansvithkuqi/v1/jVyi7m77CXvQswd6WjYu9E1wN6cih2TSchUEkQgw3KTnvUlVgKM7vmn0BLE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Vithkuqi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-vithkuqi/noto-sans-vithkuqi-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-vithkuqi/noto-sans-vithkuqi.svg" - }, - { - "name": "Noto Sans Wancho", - "fontFamily": "Noto Sans Wancho, sans-serif", - "slug": "noto-sans-wancho", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanswancho/v17/zrf-0GXXyfn6Fs0lH9P4cUubP0GBqAPopiRfKp8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Wancho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-wancho/noto-sans-wancho-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-wancho/noto-sans-wancho.svg" - }, - { - "name": "Noto Sans Warang Citi", - "fontFamily": "Noto Sans Warang Citi, sans-serif", - "slug": "noto-sans-warang-citi", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanswarangciti/v17/EYqtmb9SzL1YtsZSScyKDXIeOv3w-zgsNvKRpeVCCXzdgA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Warang Citi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-warang-citi/noto-sans-warang-citi-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-warang-citi/noto-sans-warang-citi.svg" - }, - { - "name": "Noto Sans Yi", - "fontFamily": "Noto Sans Yi, sans-serif", - "slug": "noto-sans-yi", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosansyi/v19/sJoD3LFXjsSdcnzn071rO3apxVDJNVgSNg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Yi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-yi/noto-sans-yi-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-yi/noto-sans-yi.svg" - }, - { - "name": "Noto Sans Zanabazar Square", - "fontFamily": "Noto Sans Zanabazar Square, sans-serif", - "slug": "noto-sans-zanabazar-square", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notosanszanabazarsquare/v16/Cn-jJsuGWQxOjaGwMQ6fOicyxLBEMRfDtkzl4uagQtJxOCEgN0Gc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Zanabazar Square", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-zanabazar-square/noto-sans-zanabazar-square-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-sans-zanabazar-square/noto-sans-zanabazar-square.svg" - }, - { - "name": "Noto Serif", - "fontFamily": "Noto Serif, serif", - "slug": "noto-serif", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZqFGjwM0Lhq_Szw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif/noto-serif-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZKFCjwM0Lhq_Szw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif/noto-serif-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZ9lCjwM0Lhq_Szw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif/noto-serif-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZqFCjwM0Lhq_Szw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif/noto-serif-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZmlCjwM0Lhq_Szw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif/noto-serif-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZdlejwM0Lhq_Szw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif/noto-serif-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZT1ejwM0Lhq_Szw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif/noto-serif-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZKFejwM0Lhq_Szw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif/noto-serif-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZAVejwM0Lhq_Szw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif/noto-serif-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBNLgscPpKrCzyUi.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Noto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif/noto-serif-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBPLg8cPpKrCzyUi.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Noto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif/noto-serif-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBMVg8cPpKrCzyUi.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Noto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif/noto-serif-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBNLg8cPpKrCzyUi.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Noto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif/noto-serif-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBN5g8cPpKrCzyUi.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Noto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif/noto-serif-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBOVhMcPpKrCzyUi.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Noto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif/noto-serif-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBOshMcPpKrCzyUi.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Noto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif/noto-serif-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBPLhMcPpKrCzyUi.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Noto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif/noto-serif-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBPihMcPpKrCzyUi.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Noto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif/noto-serif-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif/noto-serif.svg" - }, - { - "name": "Noto Serif Ahom", - "fontFamily": "Noto Serif Ahom, serif", - "slug": "noto-serif-ahom", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifahom/v19/FeVIS0hfp6cprmEUffAW_fUL_AN-wuYrPFiwaw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ahom", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-ahom/noto-serif-ahom-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-ahom/noto-serif-ahom.svg" - }, - { - "name": "Noto Serif Armenian", - "fontFamily": "Noto Serif Armenian, serif", - "slug": "noto-serif-armenian", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8ObxvXagGdkbg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-armenian/noto-serif-armenian-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8KbxvXagGdkbg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-armenian/noto-serif-armenian-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZ1cKbxvXagGdkbg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-armenian/noto-serif-armenian-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8KbxvXagGdkbg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-armenian/noto-serif-armenian-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZucKbxvXagGdkbg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-armenian/noto-serif-armenian-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZVcWbxvXagGdkbg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-armenian/noto-serif-armenian-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZbMWbxvXagGdkbg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-armenian/noto-serif-armenian-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8WbxvXagGdkbg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-armenian/noto-serif-armenian-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZIsWbxvXagGdkbg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-armenian/noto-serif-armenian-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-armenian/noto-serif-armenian.svg" - }, - { - "name": "Noto Serif Balinese", - "fontFamily": "Noto Serif Balinese, serif", - "slug": "noto-serif-balinese", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifbalinese/v18/QdVKSS0-JginysQSRvuCmUMB_wVeQAxXRbgJdhapcUU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Balinese", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-balinese/noto-serif-balinese-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-balinese/noto-serif-balinese.svg" - }, - { - "name": "Noto Serif Bengali", - "fontFamily": "Noto Serif Bengali, serif", - "slug": "noto-serif-bengali", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAH3qn4LjQH8yD.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-bengali/noto-serif-bengali-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAHnqn4LjQH8yD.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-bengali/noto-serif-bengali-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfdeHnqn4LjQH8yD.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-bengali/noto-serif-bengali-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAHnqn4LjQH8yD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-bengali/noto-serif-bengali-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcyHnqn4LjQH8yD.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-bengali/noto-serif-bengali-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffeGXqn4LjQH8yD.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-bengali/noto-serif-bengali-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffnGXqn4LjQH8yD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-bengali/noto-serif-bengali-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAGXqn4LjQH8yD.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-bengali/noto-serif-bengali-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfepGXqn4LjQH8yD.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-bengali/noto-serif-bengali-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-bengali/noto-serif-bengali.svg" - }, - { - "name": "Noto Serif Devanagari", - "fontFamily": "Noto Serif Devanagari, serif", - "slug": "noto-serif-devanagari", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-og-HMUe1u_dv.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-devanagari/noto-serif-devanagari-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-ow-HMUe1u_dv.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-devanagari/noto-serif-devanagari-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTBgow-HMUe1u_dv.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-devanagari/noto-serif-devanagari-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-ow-HMUe1u_dv.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-devanagari/noto-serif-devanagari-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTAMow-HMUe1u_dv.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-devanagari/noto-serif-devanagari-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDgpA-HMUe1u_dv.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-devanagari/noto-serif-devanagari-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDZpA-HMUe1u_dv.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-devanagari/noto-serif-devanagari-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-pA-HMUe1u_dv.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-devanagari/noto-serif-devanagari-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTCXpA-HMUe1u_dv.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-devanagari/noto-serif-devanagari-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-devanagari/noto-serif-devanagari.svg" - }, - { - "name": "Noto Serif Display", - "fontFamily": "Noto Serif Display, serif", - "slug": "noto-serif-display", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdisplay/v24/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd49gKaDU9hvzC.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-display/noto-serif-display-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdisplay/v24/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd4tgKaDU9hvzC.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-display/noto-serif-display-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdisplay/v24/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVoD4tgKaDU9hvzC.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-display/noto-serif-display-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdisplay/v24/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd4tgKaDU9hvzC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-display/noto-serif-display-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdisplay/v24/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpv4tgKaDU9hvzC.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-display/noto-serif-display-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdisplay/v24/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVqD5dgKaDU9hvzC.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-display/noto-serif-display-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdisplay/v24/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVq65dgKaDU9hvzC.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-display/noto-serif-display-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdisplay/v24/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd5dgKaDU9hvzC.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-display/noto-serif-display-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdisplay/v24/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVr05dgKaDU9hvzC.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-display/noto-serif-display-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdisplay/v24/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBIYjEfg-zCmf4.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-display/noto-serif-display-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdisplay/v24/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBJYjEfg-zCmf4.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-display/noto-serif-display-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdisplay/v24/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoW5JYjEfg-zCmf4.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-display/noto-serif-display-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdisplay/v24/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBJYjEfg-zCmf4.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-display/noto-serif-display-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdisplay/v24/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoQJJYjEfg-zCmf4.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-display/noto-serif-display-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdisplay/v24/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-Voe5OYjEfg-zCmf4.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-display/noto-serif-display-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdisplay/v24/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoddOYjEfg-zCmf4.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-display/noto-serif-display-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdisplay/v24/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBOYjEfg-zCmf4.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-display/noto-serif-display-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdisplay/v24/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoZlOYjEfg-zCmf4.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-display/noto-serif-display-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-display/noto-serif-display.svg" - }, - { - "name": "Noto Serif Dogra", - "fontFamily": "Noto Serif Dogra, serif", - "slug": "noto-serif-dogra", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifdogra/v16/MQpP-XquKMC7ROPP3QOOlm7xPu3fGy63IbPzkns.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Dogra", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-dogra/noto-serif-dogra-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-dogra/noto-serif-dogra.svg" - }, - { - "name": "Noto Serif Ethiopic", - "fontFamily": "Noto Serif Ethiopic, serif", - "slug": "noto-serif-ethiopic", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSQjkaO9UVLyiw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-ethiopic/noto-serif-ethiopic-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSUjkaO9UVLyiw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-ethiopic/noto-serif-ethiopic-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCkyUjkaO9UVLyiw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-ethiopic/noto-serif-ethiopic-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSUjkaO9UVLyiw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-ethiopic/noto-serif-ethiopic-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxC_yUjkaO9UVLyiw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-ethiopic/noto-serif-ethiopic-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCEyIjkaO9UVLyiw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-ethiopic/noto-serif-ethiopic-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCKiIjkaO9UVLyiw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-ethiopic/noto-serif-ethiopic-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSIjkaO9UVLyiw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-ethiopic/noto-serif-ethiopic-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCZCIjkaO9UVLyiw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-ethiopic/noto-serif-ethiopic-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-ethiopic/noto-serif-ethiopic.svg" - }, - { - "name": "Noto Serif Georgian", - "fontFamily": "Noto Serif Georgian, serif", - "slug": "noto-serif-georgian", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvsfdzTw-FgZxQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-georgian/noto-serif-georgian-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzvofdzTw-FgZxQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-georgian/noto-serif-georgian-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSEPofdzTw-FgZxQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-georgian/noto-serif-georgian-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvofdzTw-FgZxQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-georgian/noto-serif-georgian-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSfPofdzTw-FgZxQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-georgian/noto-serif-georgian-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSkP0fdzTw-FgZxQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-georgian/noto-serif-georgian-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSqf0fdzTw-FgZxQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-georgian/noto-serif-georgian-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzv0fdzTw-FgZxQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-georgian/noto-serif-georgian-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aS5_0fdzTw-FgZxQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-georgian/noto-serif-georgian-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-georgian/noto-serif-georgian.svg" - }, - { - "name": "Noto Serif Grantha", - "fontFamily": "Noto Serif Grantha, serif", - "slug": "noto-serif-grantha", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgrantha/v19/qkBIXuEH5NzDDvc3fLDYxPk9-Wq3WLiqFENLR7fHGw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Grantha", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-grantha/noto-serif-grantha-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-grantha/noto-serif-grantha.svg" - }, - { - "name": "Noto Serif Gujarati", - "fontFamily": "Noto Serif Gujarati, serif", - "slug": "noto-serif-gujarati", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycYzuM1Kf-OJu.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-gujarati/noto-serif-gujarati-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuaycIzuM1Kf-OJu.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-gujarati/noto-serif-gujarati-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuZscIzuM1Kf-OJu.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-gujarati/noto-serif-gujarati-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycIzuM1Kf-OJu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-gujarati/noto-serif-gujarati-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYAcIzuM1Kf-OJu.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-gujarati/noto-serif-gujarati-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Hubsd4zuM1Kf-OJu.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-gujarati/noto-serif-gujarati-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HubVd4zuM1Kf-OJu.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-gujarati/noto-serif-gujarati-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huayd4zuM1Kf-OJu.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-gujarati/noto-serif-gujarati-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huabd4zuM1Kf-OJu.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-gujarati/noto-serif-gujarati-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-gujarati/noto-serif-gujarati.svg" - }, - { - "name": "Noto Serif Gurmukhi", - "fontFamily": "Noto Serif Gurmukhi, serif", - "slug": "noto-serif-gurmukhi", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eBTNmqVU7y6l.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-gurmukhi/noto-serif-gurmukhi-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-eRTNmqVU7y6l.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-gurmukhi/noto-serif-gurmukhi-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr7geRTNmqVU7y6l.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-gurmukhi/noto-serif-gurmukhi-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eRTNmqVU7y6l.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-gurmukhi/noto-serif-gurmukhi-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6MeRTNmqVU7y6l.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-gurmukhi/noto-serif-gurmukhi-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5gfhTNmqVU7y6l.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-gurmukhi/noto-serif-gurmukhi-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5ZfhTNmqVU7y6l.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-gurmukhi/noto-serif-gurmukhi-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-fhTNmqVU7y6l.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-gurmukhi/noto-serif-gurmukhi-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4XfhTNmqVU7y6l.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-gurmukhi/noto-serif-gurmukhi-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-gurmukhi/noto-serif-gurmukhi.svg" - }, - { - "name": "Noto Serif HK", - "fontFamily": "Noto Serif HK, serif", - "slug": "noto-serif-hk", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-K2RmV9Su1M6i.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-hk/noto-serif-hk-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMcgK2RmV9Su1M6i.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-hk/noto-serif-hk-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMd-K2RmV9Su1M6i.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-hk/noto-serif-hk-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMdMK2RmV9Su1M6i.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-hk/noto-serif-hk-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMegLGRmV9Su1M6i.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-hk/noto-serif-hk-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMeZLGRmV9Su1M6i.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-hk/noto-serif-hk-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-LGRmV9Su1M6i.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-hk/noto-serif-hk-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMfXLGRmV9Su1M6i.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-hk/noto-serif-hk-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-hk/noto-serif-hk.svg" - }, - { - "name": "Noto Serif Hebrew", - "fontFamily": "Noto Serif Hebrew, serif", - "slug": "noto-serif-hebrew", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwTAG8_vlQxz24.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-hebrew/noto-serif-hebrew-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwSAG8_vlQxz24.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-hebrew/noto-serif-hebrew-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVFISAG8_vlQxz24.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-hebrew/noto-serif-hebrew-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwSAG8_vlQxz24.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-hebrew/noto-serif-hebrew-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVD4SAG8_vlQxz24.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-hebrew/noto-serif-hebrew-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVNIVAG8_vlQxz24.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-hebrew/noto-serif-hebrew-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVOsVAG8_vlQxz24.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-hebrew/noto-serif-hebrew-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwVAG8_vlQxz24.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-hebrew/noto-serif-hebrew-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVKUVAG8_vlQxz24.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-hebrew/noto-serif-hebrew-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-hebrew/noto-serif-hebrew.svg" - }, - { - "name": "Noto Serif JP", - "fontFamily": "Noto Serif JP, serif", - "slug": "noto-serif-jp", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZBaPRkgfU8fEwb0.otf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-jp/noto-serif-jp-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZHKMRkgfU8fEwb0.otf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-jp/noto-serif-jp-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifjp/v21/xn7mYHs72GKoTvER4Gn3b5eMXNikYkY0T84.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-jp/noto-serif-jp-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZCqNRkgfU8fEwb0.otf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-jp/noto-serif-jp-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZAaKRkgfU8fEwb0.otf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-jp/noto-serif-jp-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZGKLRkgfU8fEwb0.otf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-jp/noto-serif-jp-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZFqJRkgfU8fEwb0.otf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif JP", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-jp/noto-serif-jp-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-jp/noto-serif-jp.svg" - }, - { - "name": "Noto Serif KR", - "fontFamily": "Noto Serif KR, serif", - "slug": "noto-serif-kr", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTihC8O1ZNH1ahck.otf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-kr/noto-serif-kr-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTkxB8O1ZNH1ahck.otf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-kr/noto-serif-kr-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkr/v20/3Jn7SDn90Gmq2mr3blnHaTZXduZp1ONyKHQ.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-kr/noto-serif-kr-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXThRA8O1ZNH1ahck.otf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-kr/noto-serif-kr-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTjhH8O1ZNH1ahck.otf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-kr/noto-serif-kr-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTlxG8O1ZNH1ahck.otf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-kr/noto-serif-kr-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTmRE8O1ZNH1ahck.otf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif KR", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-kr/noto-serif-kr-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-kr/noto-serif-kr.svg" - }, - { - "name": "Noto Serif Kannada", - "fontFamily": "Noto Serif Kannada, serif", - "slug": "noto-serif-kannada", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYCceRJ71svgcI.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-kannada/noto-serif-kannada-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYDceRJ71svgcI.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-kannada/noto-serif-kannada-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgZgDceRJ71svgcI.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-kannada/noto-serif-kannada-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYDceRJ71svgcI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-kannada/noto-serif-kannada-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgfQDceRJ71svgcI.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-kannada/noto-serif-kannada-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgRgEceRJ71svgcI.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-kannada/noto-serif-kannada-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgSEEceRJ71svgcI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-kannada/noto-serif-kannada-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYEceRJ71svgcI.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-kannada/noto-serif-kannada-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgW8EceRJ71svgcI.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-kannada/noto-serif-kannada-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-kannada/noto-serif-kannada.svg" - }, - { - "name": "Noto Serif Khitan Small Script", - "fontFamily": "Noto Serif Khitan Small Script, serif", - "slug": "noto-serif-khitan-small-script", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkhitansmallscript/v4/jizzRFVKsm4Bt9PrbSzC4KLlQUF5lRJg5j-l5PvyhfTdd4TsZ8lb39iddA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khitan Small Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-khitan-small-script/noto-serif-khitan-small-script-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-khitan-small-script/noto-serif-khitan-small-script.svg" - }, - { - "name": "Noto Serif Khmer", - "fontFamily": "Noto Serif Khmer, serif", - "slug": "noto-serif-khmer", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B4wXEZK9Xo4xg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-khmer/noto-serif-khmer-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaB8wXEZK9Xo4xg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-khmer/noto-serif-khmer-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNth8wXEZK9Xo4xg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-khmer/noto-serif-khmer-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B8wXEZK9Xo4xg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-khmer/noto-serif-khmer-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN2h8wXEZK9Xo4xg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-khmer/noto-serif-khmer-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNNhgwXEZK9Xo4xg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-khmer/noto-serif-khmer-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNDxgwXEZK9Xo4xg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-khmer/noto-serif-khmer-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaBgwXEZK9Xo4xg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-khmer/noto-serif-khmer-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNQRgwXEZK9Xo4xg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-khmer/noto-serif-khmer-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-khmer/noto-serif-khmer.svg" - }, - { - "name": "Noto Serif Khojki", - "fontFamily": "Noto Serif Khojki, serif", - "slug": "noto-serif-khojki", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMY0ghvyZ0Qtc5HAQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khojki", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-khojki/noto-serif-khojki-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMY4AhvyZ0Qtc5HAQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khojki", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-khojki/noto-serif-khojki-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMYDA9vyZ0Qtc5HAQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khojki", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-khojki/noto-serif-khojki-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMYNQ9vyZ0Qtc5HAQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khojki", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-khojki/noto-serif-khojki-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-khojki/noto-serif-khojki.svg" - }, - { - "name": "Noto Serif Lao", - "fontFamily": "Noto Serif Lao, serif", - "slug": "noto-serif-lao", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMLrvOjlmyhHHQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-lao/noto-serif-lao-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMKrvOjlmyhHHQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-lao/noto-serif-lao-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8Vb0KrvOjlmyhHHQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-lao/noto-serif-lao-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMKrvOjlmyhHHQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-lao/noto-serif-lao-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VdEKrvOjlmyhHHQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-lao/noto-serif-lao-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VT0NrvOjlmyhHHQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-lao/noto-serif-lao-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VQQNrvOjlmyhHHQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-lao/noto-serif-lao-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMNrvOjlmyhHHQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-lao/noto-serif-lao-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VUoNrvOjlmyhHHQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-lao/noto-serif-lao-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-lao/noto-serif-lao.svg" - }, - { - "name": "Noto Serif Makasar", - "fontFamily": "Noto Serif Makasar, serif", - "slug": "noto-serif-makasar", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifmakasar/v1/memjYbqtyH-NiZpFH_9zcvB_PqkfY9S7j4HTVSmevw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Makasar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-makasar/noto-serif-makasar-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-makasar/noto-serif-makasar.svg" - }, - { - "name": "Noto Serif Malayalam", - "fontFamily": "Noto Serif Malayalam, serif", - "slug": "noto-serif-malayalam", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-1fnVwHpQVySg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-malayalam/noto-serif-malayalam-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-xfnVwHpQVySg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-malayalam/noto-serif-malayalam-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL16exfnVwHpQVySg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-malayalam/noto-serif-malayalam-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-xfnVwHpQVySg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-malayalam/noto-serif-malayalam-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1hexfnVwHpQVySg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-malayalam/noto-serif-malayalam-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1aetfnVwHpQVySg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-malayalam/noto-serif-malayalam-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1UOtfnVwHpQVySg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-malayalam/noto-serif-malayalam-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-tfnVwHpQVySg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-malayalam/noto-serif-malayalam-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1HutfnVwHpQVySg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-malayalam/noto-serif-malayalam-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-malayalam/noto-serif-malayalam.svg" - }, - { - "name": "Noto Serif Myanmar", - "fontFamily": "Noto Serif Myanmar, serif", - "slug": "noto-serif-myanmar", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJudM7F2Yv76aBKKs-bHMQfAHUw3jnNwBDsU9X6RPzQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-myanmar/noto-serif-myanmar-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNbDHMefv2TeXJng.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-myanmar/noto-serif-myanmar-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNCDLMefv2TeXJng.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-myanmar/noto-serif-myanmar-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJsdM7F2Yv76aBKKs-bHMQfAHUw3jn1pBrocdDqRA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-myanmar/noto-serif-myanmar-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNUDPMefv2TeXJng.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-myanmar/noto-serif-myanmar-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNfDTMefv2TeXJng.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-myanmar/noto-serif-myanmar-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNGDXMefv2TeXJng.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-myanmar/noto-serif-myanmar-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNBDbMefv2TeXJng.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-myanmar/noto-serif-myanmar-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNIDfMefv2TeXJng.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-myanmar/noto-serif-myanmar-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-myanmar/noto-serif-myanmar.svg" - }, - { - "name": "Noto Serif NP Hmong", - "fontFamily": "Noto Serif NP Hmong, serif", - "slug": "noto-serif-np-hmong", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbjPhFLp3u0rVO-d.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif NP Hmong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-np-hmong/noto-serif-np-hmong-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbj9hFLp3u0rVO-d.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif NP Hmong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-np-hmong/noto-serif-np-hmong-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbgRg1Lp3u0rVO-d.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif NP Hmong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-np-hmong/noto-serif-np-hmong-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbgog1Lp3u0rVO-d.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif NP Hmong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-np-hmong/noto-serif-np-hmong-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-np-hmong/noto-serif-np-hmong.svg" - }, - { - "name": "Noto Serif Oriya", - "fontFamily": "Noto Serif Oriya, serif", - "slug": "noto-serif-oriya", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxrc_Hy-v039MF1j.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Oriya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-oriya/noto-serif-oriya-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxru_Hy-v039MF1j.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Oriya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-oriya/noto-serif-oriya-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxoC-3y-v039MF1j.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Oriya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-oriya/noto-serif-oriya-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxo7-3y-v039MF1j.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Oriya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-oriya/noto-serif-oriya-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-oriya/noto-serif-oriya.svg" - }, - { - "name": "Noto Serif Ottoman Siyaq", - "fontFamily": "Noto Serif Ottoman Siyaq, serif", - "slug": "noto-serif-ottoman-siyaq", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifottomansiyaq/v1/fC1yPZ9IYnzRhTrrc4s8cSvYI0eozzaFOQ01qoHLJrgA00kAdA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ottoman Siyaq", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-ottoman-siyaq/noto-serif-ottoman-siyaq-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-ottoman-siyaq/noto-serif-ottoman-siyaq.svg" - }, - { - "name": "Noto Serif SC", - "fontFamily": "Noto Serif SC, serif", - "slug": "noto-serif-sc", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mm63SzZBEtERe7U.otf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-sc/noto-serif-sc-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mgq0SzZBEtERe7U.otf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-sc/noto-serif-sc-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifsc/v22/H4chBXePl9DZ0Xe7gG9cyOj7oqCcbzhqDtg.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-sc/noto-serif-sc-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mlK1SzZBEtERe7U.otf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-sc/noto-serif-sc-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mn6ySzZBEtERe7U.otf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-sc/noto-serif-sc-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mhqzSzZBEtERe7U.otf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-sc/noto-serif-sc-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7miKxSzZBEtERe7U.otf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-sc/noto-serif-sc-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-sc/noto-serif-sc.svg" - }, - { - "name": "Noto Serif Sinhala", - "fontFamily": "Noto Serif Sinhala, serif", - "slug": "noto-serif-sinhala", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxRlMsxaLRn3W-.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-sinhala/noto-serif-sinhala-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExR1MsxaLRn3W-.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-sinhala/noto-serif-sinhala-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pHvR1MsxaLRn3W-.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-sinhala/noto-serif-sinhala-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxR1MsxaLRn3W-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-sinhala/noto-serif-sinhala-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGDR1MsxaLRn3W-.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-sinhala/noto-serif-sinhala-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFvQFMsxaLRn3W-.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-sinhala/noto-serif-sinhala-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFWQFMsxaLRn3W-.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-sinhala/noto-serif-sinhala-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExQFMsxaLRn3W-.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-sinhala/noto-serif-sinhala-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pEYQFMsxaLRn3W-.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-sinhala/noto-serif-sinhala-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-sinhala/noto-serif-sinhala.svg" - }, - { - "name": "Noto Serif TC", - "fontFamily": "Noto Serif TC, serif", - "slug": "noto-serif-tc", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvr8vbX9GTsoOAX4.otf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif TC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tc/noto-serif-tc-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvtssbX9GTsoOAX4.otf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif TC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tc/noto-serif-tc-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftc/v23/XLYgIZb5bJNDGYxLBibeHZ0BhnEESXFtUsM.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif TC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tc/noto-serif-tc-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvoMtbX9GTsoOAX4.otf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif TC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tc/noto-serif-tc-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvq8qbX9GTsoOAX4.otf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif TC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tc/noto-serif-tc-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvssrbX9GTsoOAX4.otf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif TC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tc/noto-serif-tc-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvvMpbX9GTsoOAX4.otf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif TC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tc/noto-serif-tc-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tc/noto-serif-tc.svg" - }, - { - "name": "Noto Serif Tamil", - "fontFamily": "Noto Serif Tamil, serif", - "slug": "noto-serif-tamil", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN6R8Pz3v8Etew.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tamil/noto-serif-tamil-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNN-R8Pz3v8Etew.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tamil/noto-serif-tamil-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecat6t-R8Pz3v8Etew.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tamil/noto-serif-tamil-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN-R8Pz3v8Etew.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tamil/noto-serif-tamil-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatht-R8Pz3v8Etew.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tamil/noto-serif-tamil-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatatiR8Pz3v8Etew.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tamil/noto-serif-tamil-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatU9iR8Pz3v8Etew.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tamil/noto-serif-tamil-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNNiR8Pz3v8Etew.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tamil/noto-serif-tamil-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatHdiR8Pz3v8Etew.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tamil/noto-serif-tamil-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5svbzncQ9e3wx.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tamil/noto-serif-tamil-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5s_bzncQ9e3wx.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tamil/noto-serif-tamil-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJwns_bzncQ9e3wx.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tamil/noto-serif-tamil-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5s_bzncQ9e3wx.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tamil/noto-serif-tamil-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJxLs_bzncQ9e3wx.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tamil/noto-serif-tamil-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyntPbzncQ9e3wx.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tamil/noto-serif-tamil-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyetPbzncQ9e3wx.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tamil/noto-serif-tamil-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5tPbzncQ9e3wx.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tamil/noto-serif-tamil-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJzQtPbzncQ9e3wx.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tamil/noto-serif-tamil-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tamil/noto-serif-tamil.svg" - }, - { - "name": "Noto Serif Tangut", - "fontFamily": "Noto Serif Tangut, serif", - "slug": "noto-serif-tangut", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftangut/v16/xn76YGc72GKoTvER4Gn3b4m9Ern7Em41fcvN2KT4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tangut", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tangut/noto-serif-tangut-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tangut/noto-serif-tangut.svg" - }, - { - "name": "Noto Serif Telugu", - "fontFamily": "Noto Serif Telugu, serif", - "slug": "noto-serif-telugu", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TGwuY2fjgrZYA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-telugu/noto-serif-telugu-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTCwuY2fjgrZYA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-telugu/noto-serif-telugu-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DqzCwuY2fjgrZYA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-telugu/noto-serif-telugu-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TCwuY2fjgrZYA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-telugu/noto-serif-telugu-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DxzCwuY2fjgrZYA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-telugu/noto-serif-telugu-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DKzewuY2fjgrZYA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-telugu/noto-serif-telugu-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DEjewuY2fjgrZYA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-telugu/noto-serif-telugu-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTewuY2fjgrZYA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-telugu/noto-serif-telugu-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DXDewuY2fjgrZYA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-telugu/noto-serif-telugu-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-telugu/noto-serif-telugu.svg" - }, - { - "name": "Noto Serif Thai", - "fontFamily": "Noto Serif Thai, serif", - "slug": "noto-serif-thai", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiFuRRCmsdu0Qx.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-thai/noto-serif-thai-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiF-RRCmsdu0Qx.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-thai/noto-serif-thai-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0p8F-RRCmsdu0Qx.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-thai/noto-serif-thai-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiF-RRCmsdu0Qx.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-thai/noto-serif-thai-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oQF-RRCmsdu0Qx.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-thai/noto-serif-thai-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0r8EORRCmsdu0Qx.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-thai/noto-serif-thai-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0rFEORRCmsdu0Qx.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-thai/noto-serif-thai-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiEORRCmsdu0Qx.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-thai/noto-serif-thai-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qLEORRCmsdu0Qx.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-thai/noto-serif-thai-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-thai/noto-serif-thai.svg" - }, - { - "name": "Noto Serif Tibetan", - "fontFamily": "Noto Serif Tibetan, serif", - "slug": "noto-serif-tibetan", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYdPS7rdSy_32c.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tibetan/noto-serif-tibetan-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYcPS7rdSy_32c.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tibetan/noto-serif-tibetan-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIugcPS7rdSy_32c.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tibetan/noto-serif-tibetan-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYcPS7rdSy_32c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tibetan/noto-serif-tibetan-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIoQcPS7rdSy_32c.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tibetan/noto-serif-tibetan-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmImgbPS7rdSy_32c.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tibetan/noto-serif-tibetan-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIlEbPS7rdSy_32c.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tibetan/noto-serif-tibetan-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYbPS7rdSy_32c.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tibetan/noto-serif-tibetan-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIh8bPS7rdSy_32c.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tibetan/noto-serif-tibetan-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-tibetan/noto-serif-tibetan.svg" - }, - { - "name": "Noto Serif Toto", - "fontFamily": "Noto Serif Toto, serif", - "slug": "noto-serif-toto", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhCy3Il-aj55vdNug.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Toto", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-toto/noto-serif-toto-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhCx_Il-aj55vdNug.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Toto", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-toto/noto-serif-toto-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhC_PPl-aj55vdNug.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Toto", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-toto/noto-serif-toto-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhC8rPl-aj55vdNug.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Toto", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-toto/noto-serif-toto-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-toto/noto-serif-toto.svg" - }, - { - "name": "Noto Serif Vithkuqi", - "fontFamily": "Noto Serif Vithkuqi, serif", - "slug": "noto-serif-vithkuqi", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifvithkuqi/v1/YA94r1OY7FjTf5szakutkndpw9HH-4a4z9pklvg1IQSNcRWMdW2Cqy9A4teH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Vithkuqi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-vithkuqi/noto-serif-vithkuqi-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifvithkuqi/v1/YA94r1OY7FjTf5szakutkndpw9HH-4a4z9pklvg1IQSNcRW-dW2Cqy9A4teH.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Vithkuqi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-vithkuqi/noto-serif-vithkuqi-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifvithkuqi/v1/YA94r1OY7FjTf5szakutkndpw9HH-4a4z9pklvg1IQSNcRVScm2Cqy9A4teH.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Vithkuqi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-vithkuqi/noto-serif-vithkuqi-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifvithkuqi/v1/YA94r1OY7FjTf5szakutkndpw9HH-4a4z9pklvg1IQSNcRVrcm2Cqy9A4teH.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Vithkuqi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-vithkuqi/noto-serif-vithkuqi-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-vithkuqi/noto-serif-vithkuqi.svg" - }, - { - "name": "Noto Serif Yezidi", - "fontFamily": "Noto Serif Yezidi, serif", - "slug": "noto-serif-yezidi", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifyezidi/v21/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD2yEkrlGJgmVCqg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Yezidi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-yezidi/noto-serif-yezidi-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifyezidi/v21/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD6SEkrlGJgmVCqg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Yezidi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-yezidi/noto-serif-yezidi-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifyezidi/v21/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDBSYkrlGJgmVCqg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Yezidi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-yezidi/noto-serif-yezidi-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/notoserifyezidi/v21/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDPCYkrlGJgmVCqg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Yezidi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-yezidi/noto-serif-yezidi-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-serif-yezidi/noto-serif-yezidi.svg" - }, - { - "name": "Noto Traditional Nushu", - "fontFamily": "Noto Traditional Nushu, sans-serif", - "slug": "noto-traditional-nushu", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXvy1tnPa7QoqirI.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Traditional Nushu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-traditional-nushu/noto-traditional-nushu-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXus1tnPa7QoqirI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Traditional Nushu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-traditional-nushu/noto-traditional-nushu-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXue1tnPa7QoqirI.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Traditional Nushu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-traditional-nushu/noto-traditional-nushu-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXty0dnPa7QoqirI.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Traditional Nushu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-traditional-nushu/noto-traditional-nushu-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXtL0dnPa7QoqirI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Traditional Nushu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-traditional-nushu/noto-traditional-nushu-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/noto-traditional-nushu/noto-traditional-nushu.svg" - }, - { - "name": "Nova Cut", - "fontFamily": "Nova Cut, system-ui", - "slug": "nova-cut", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/novacut/v24/KFOkCnSYu8mL-39LkWxPKTM1K9nz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Cut", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nova-cut/nova-cut-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nova-cut/nova-cut.svg" - }, - { - "name": "Nova Flat", - "fontFamily": "Nova Flat, system-ui", - "slug": "nova-flat", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/novaflat/v24/QdVUSTc-JgqpytEbVebEuStkm20oJA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Flat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nova-flat/nova-flat-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nova-flat/nova-flat.svg" - }, - { - "name": "Nova Mono", - "fontFamily": "Nova Mono, monospace", - "slug": "nova-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/novamono/v20/Cn-0JtiGWQ5Ajb--MRKfYGxYrdM9Sg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nova-mono/nova-mono-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nova-mono/nova-mono.svg" - }, - { - "name": "Nova Oval", - "fontFamily": "Nova Oval, system-ui", - "slug": "nova-oval", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/novaoval/v24/jAnEgHdmANHvPenMaswCMY-h3cWkWg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Oval", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nova-oval/nova-oval-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nova-oval/nova-oval.svg" - }, - { - "name": "Nova Round", - "fontFamily": "Nova Round, system-ui", - "slug": "nova-round", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/novaround/v21/flU9Rqquw5UhEnlwTJYTYYfeeetYEBc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Round", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nova-round/nova-round-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nova-round/nova-round.svg" - }, - { - "name": "Nova Script", - "fontFamily": "Nova Script, system-ui", - "slug": "nova-script", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/novascript/v25/7Au7p_IpkSWSTWaFWkumvmQNEl0O0kEx.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nova-script/nova-script-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nova-script/nova-script.svg" - }, - { - "name": "Nova Slim", - "fontFamily": "Nova Slim, system-ui", - "slug": "nova-slim", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/novaslim/v24/Z9XUDmZNQAuem8jyZcn-yMOInrib9Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Slim", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nova-slim/nova-slim-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nova-slim/nova-slim.svg" - }, - { - "name": "Nova Square", - "fontFamily": "Nova Square, system-ui", - "slug": "nova-square", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/novasquare/v24/RrQUbo9-9DV7b06QHgSWsZhARYMgGtWA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Square", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nova-square/nova-square-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nova-square/nova-square.svg" - }, - { - "name": "Numans", - "fontFamily": "Numans, sans-serif", - "slug": "numans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/numans/v15/SlGRmQmGupYAfH8IYRggiHVqaQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Numans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/numans/numans-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/numans/numans.svg" - }, - { - "name": "Nunito", - "fontFamily": "Nunito, sans-serif", - "slug": "nunito", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshRTM9jo7eTWk.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Nunito", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito/nunito-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDOUhRTM9jo7eTWk.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Nunito", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito/nunito-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshRTM9jo7eTWk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nunito", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito/nunito-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhRTM9jo7eTWk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Nunito", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito/nunito-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmRTM9jo7eTWk.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Nunito", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito/nunito-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmRTM9jo7eTWk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Nunito", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito/nunito-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmRTM9jo7eTWk.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Nunito", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito/nunito-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImRTM9jo7eTWk.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Nunito", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito/nunito-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXA3iqzbXWnoeg.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Nunito", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito/nunito-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNi83A3iqzbXWnoeg.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Nunito", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito/nunito-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNirXA3iqzbXWnoeg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Nunito", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito/nunito-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNin3A3iqzbXWnoeg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Nunito", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito/nunito-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNic3c3iqzbXWnoeg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Nunito", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito/nunito-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiSnc3iqzbXWnoeg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Nunito", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito/nunito-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXc3iqzbXWnoeg.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Nunito", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito/nunito-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiBHc3iqzbXWnoeg.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Nunito", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito/nunito-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito/nunito.svg" - }, - { - "name": "Nunito Sans", - "fontFamily": "Nunito Sans, sans-serif", - "slug": "nunito-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GVilntF8kA_Ykqw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Nunito Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito-sans/nunito-sans-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GiClntF8kA_Ykqw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Nunito Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito-sans/nunito-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G1ilntF8kA_Ykqw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nunito Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito-sans/nunito-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G5ClntF8kA_Ykqw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Nunito Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito-sans/nunito-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GCC5ntF8kA_Ykqw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Nunito Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito-sans/nunito-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GMS5ntF8kA_Ykqw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Nunito Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito-sans/nunito-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GVi5ntF8kA_Ykqw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Nunito Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito-sans/nunito-sans-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4Gfy5ntF8kA_Ykqw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Nunito Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito-sans/nunito-sans-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmoP91UgIfM0qxVd.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Nunito Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito-sans/nunito-sans-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmrR91UgIfM0qxVd.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Nunito Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito-sans/nunito-sans-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmqP91UgIfM0qxVd.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Nunito Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito-sans/nunito-sans-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmq991UgIfM0qxVd.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Nunito Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito-sans/nunito-sans-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmpR8FUgIfM0qxVd.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Nunito Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito-sans/nunito-sans-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmpo8FUgIfM0qxVd.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Nunito Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito-sans/nunito-sans-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmoP8FUgIfM0qxVd.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Nunito Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito-sans/nunito-sans-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmom8FUgIfM0qxVd.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Nunito Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito-sans/nunito-sans-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nunito-sans/nunito-sans.svg" - }, - { - "name": "Nuosu SIL", - "fontFamily": "Nuosu SIL, sans-serif", - "slug": "nuosu-sil", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/nuosusil/v10/8vIK7wM3wmRn_kc4uAjeFGxbO_zo-w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nuosu SIL", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nuosu-sil/nuosu-sil-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/nuosu-sil/nuosu-sil.svg" - }, - { - "name": "Odibee Sans", - "fontFamily": "Odibee Sans, system-ui", - "slug": "odibee-sans", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/odibeesans/v18/neIPzCSooYAho6WvjeToRYkyepH9qGsf.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Odibee Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/odibee-sans/odibee-sans-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/odibee-sans/odibee-sans.svg" - }, - { - "name": "Odor Mean Chey", - "fontFamily": "Odor Mean Chey, serif", - "slug": "odor-mean-chey", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/odormeanchey/v27/raxkHiKDttkTe1aOGcJMR1A_4mrY2zqUKafv.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Odor Mean Chey", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/odor-mean-chey/odor-mean-chey-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/odor-mean-chey/odor-mean-chey.svg" - }, - { - "name": "Offside", - "fontFamily": "Offside, system-ui", - "slug": "offside", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/offside/v24/HI_KiYMWKa9QrAykQ5HiRp-dhpQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Offside", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/offside/offside-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/offside/offside.svg" - }, - { - "name": "Oi", - "fontFamily": "Oi, system-ui", - "slug": "oi", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oi/v19/w8gXH2EuRqtaut6yjBOG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oi/oi-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oi/oi.svg" - }, - { - "name": "Old Standard TT", - "fontFamily": "Old Standard TT, serif", - "slug": "old-standard-tt", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oldstandardtt/v20/MwQubh3o1vLImiwAVvYawgcf2eVurVC5RHdCZg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Old Standard TT", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/old-standard-tt/old-standard-tt-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oldstandardtt/v20/MwQsbh3o1vLImiwAVvYawgcf2eVer1q9ZnJSZtQG.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Old Standard TT", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/old-standard-tt/old-standard-tt-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oldstandardtt/v20/MwQrbh3o1vLImiwAVvYawgcf2eVWEX-dTFxeb80flQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Old Standard TT", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/old-standard-tt/old-standard-tt-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/old-standard-tt/old-standard-tt.svg" - }, - { - "name": "Oldenburg", - "fontFamily": "Oldenburg, system-ui", - "slug": "oldenburg", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oldenburg/v22/fC1jPY5JYWzbywv7c4V6UU6oXyndrw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oldenburg", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oldenburg/oldenburg-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oldenburg/oldenburg.svg" - }, - { - "name": "Ole", - "fontFamily": "Ole, cursive", - "slug": "ole", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ole/v3/dFazZf6Z-rd89fw69qJ_ew.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ole", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ole/ole-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ole/ole.svg" - }, - { - "name": "Oleo Script", - "fontFamily": "Oleo Script, system-ui", - "slug": "oleo-script", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oleoscript/v14/rax5HieDvtMOe0iICsUccBhasU7Q8Cad.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oleo Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oleo-script/oleo-script-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oleoscript/v14/raxkHieDvtMOe0iICsUccCDmnmrY2zqUKafv.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Oleo Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oleo-script/oleo-script-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oleo-script/oleo-script.svg" - }, - { - "name": "Oleo Script Swash Caps", - "fontFamily": "Oleo Script Swash Caps, system-ui", - "slug": "oleo-script-swash-caps", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMXquSY0Hg90.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oleo Script Swash Caps", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oleo-script-swash-caps/oleo-script-swash-caps-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noag6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HCcaBbYUsn9T5dt0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Oleo Script Swash Caps", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oleo-script-swash-caps/oleo-script-swash-caps-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oleo-script-swash-caps/oleo-script-swash-caps.svg" - }, - { - "name": "Oooh Baby", - "fontFamily": "Oooh Baby, cursive", - "slug": "oooh-baby", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ooohbaby/v4/2sDcZGJWgJTT2Jf76xQDb2-4C7wFZQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oooh Baby", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oooh-baby/oooh-baby-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oooh-baby/oooh-baby.svg" - }, - { - "name": "Open Sans", - "fontFamily": "Open Sans, sans-serif", - "slug": "open-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4nY1M2xLER.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Open Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/open-sans/open-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4nY1M2xLER.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Open Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/open-sans/open-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4nY1M2xLER.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Open Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/open-sans/open-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4nY1M2xLER.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Open Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/open-sans/open-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4nY1M2xLER.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Open Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/open-sans/open-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1y4nY1M2xLER.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Open Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/open-sans/open-sans-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkaVcUwaERZjA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Open Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/open-sans/open-sans-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkaVcUwaERZjA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Open Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/open-sans/open-sans-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk_RkaVcUwaERZjA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Open Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/open-sans/open-sans-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjaVcUwaERZjA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Open Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/open-sans/open-sans-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjaVcUwaERZjA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Open Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/open-sans/open-sans-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjaVcUwaERZjA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Open Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/open-sans/open-sans-800-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/open-sans/open-sans.svg" - }, - { - "name": "Oranienbaum", - "fontFamily": "Oranienbaum, serif", - "slug": "oranienbaum", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oranienbaum/v15/OZpHg_txtzZKMuXLIVrx-3zn7kz3dpHc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oranienbaum", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oranienbaum/oranienbaum-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oranienbaum/oranienbaum.svg" - }, - { - "name": "Orbit", - "fontFamily": "Orbit, sans-serif", - "slug": "orbit", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/orbit/v1/_LOCmz7I-uHd2mjEeqciRwRm.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Orbit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/orbit/orbit-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/orbit/orbit.svg" - }, - { - "name": "Orbitron", - "fontFamily": "Orbitron, sans-serif", - "slug": "orbitron", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/orbitron/v31/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6xpmIyXjU1pg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Orbitron", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/orbitron/orbitron-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/orbitron/v31/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyKS6xpmIyXjU1pg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Orbitron", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/orbitron/orbitron-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/orbitron/v31/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyxSmxpmIyXjU1pg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Orbitron", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/orbitron/orbitron-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/orbitron/v31/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1ny_CmxpmIyXjU1pg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Orbitron", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/orbitron/orbitron-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/orbitron/v31/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nymymxpmIyXjU1pg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Orbitron", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/orbitron/orbitron-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/orbitron/v31/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nysimxpmIyXjU1pg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Orbitron", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/orbitron/orbitron-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/orbitron/orbitron.svg" - }, - { - "name": "Oregano", - "fontFamily": "Oregano, system-ui", - "slug": "oregano", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oregano/v15/If2IXTPxciS3H4S2kZffPznO3yM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oregano", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oregano/oregano-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oregano/v15/If2KXTPxciS3H4S2oZXVOxvLzyP_qw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Oregano", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oregano/oregano-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oregano/oregano.svg" - }, - { - "name": "Orelega One", - "fontFamily": "Orelega One, system-ui", - "slug": "orelega-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/orelegaone/v12/3qTpojOggD2XtAdFb-QXZGt61EcYaQ7F.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Orelega One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/orelega-one/orelega-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/orelega-one/orelega-one.svg" - }, - { - "name": "Orienta", - "fontFamily": "Orienta, sans-serif", - "slug": "orienta", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/orienta/v15/PlI9FlK4Jrl5Y9zNeyeo9HRFhcU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Orienta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/orienta/orienta-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/orienta/orienta.svg" - }, - { - "name": "Original Surfer", - "fontFamily": "Original Surfer, system-ui", - "slug": "original-surfer", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/originalsurfer/v22/RWmQoKGZ9vIirYntXJ3_MbekzNMiDEtvAlaMKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Original Surfer", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/original-surfer/original-surfer-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/original-surfer/original-surfer.svg" - }, - { - "name": "Oswald", - "fontFamily": "Oswald, sans-serif", - "slug": "oswald", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgUFoZAaRliE.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Oswald", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oswald/oswald-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUFoZAaRliE.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Oswald", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oswald/oswald-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUFoZAaRliE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oswald", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oswald/oswald-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUFoZAaRliE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Oswald", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oswald/oswald-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUFoZAaRliE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Oswald", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oswald/oswald-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUFoZAaRliE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Oswald", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oswald/oswald-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oswald/oswald.svg" - }, - { - "name": "Outfit", - "fontFamily": "Outfit, sans-serif", - "slug": "outfit", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC0C4G-EiAou6Y.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Outfit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/outfit/outfit-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bC1C4G-EiAou6Y.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Outfit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/outfit/outfit-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61C4G-EiAou6Y.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Outfit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/outfit/outfit-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4G-EiAou6Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Outfit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/outfit/outfit-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4G-EiAou6Y.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Outfit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/outfit/outfit-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4G-EiAou6Y.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Outfit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/outfit/outfit-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4G-EiAou6Y.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Outfit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/outfit/outfit-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bCyC4G-EiAou6Y.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Outfit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/outfit/outfit-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4ZmyC4G-EiAou6Y.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Outfit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/outfit/outfit-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/outfit/outfit.svg" - }, - { - "name": "Over the Rainbow", - "fontFamily": "Over the Rainbow, cursive", - "slug": "over-the-rainbow", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overtherainbow/v20/11haGoXG1k_HKhMLUWz7Mc7vvW5upvOm9NA2XG0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Over the Rainbow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/over-the-rainbow/over-the-rainbow-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/over-the-rainbow/over-the-rainbow.svg" - }, - { - "name": "Overlock", - "fontFamily": "Overlock, system-ui", - "slug": "overlock", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overlock/v17/Z9XVDmdMWRiN1_T9Z4Te4u2El6GC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Overlock", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overlock/overlock-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overlock/v17/Z9XTDmdMWRiN1_T9Z7Tc6OmmkrGC7Cs.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Overlock", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overlock/overlock-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overlock/v17/Z9XSDmdMWRiN1_T9Z7xizcmMvL2L9TLT.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Overlock", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overlock/overlock-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overlock/v17/Z9XQDmdMWRiN1_T9Z7Tc0FWJtrmp8CLTlNs.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Overlock", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overlock/overlock-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overlock/v17/Z9XSDmdMWRiN1_T9Z7xaz8mMvL2L9TLT.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Overlock", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overlock/overlock-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overlock/v17/Z9XQDmdMWRiN1_T9Z7Tc0G2Ltrmp8CLTlNs.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Overlock", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overlock/overlock-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overlock/overlock.svg" - }, - { - "name": "Overlock SC", - "fontFamily": "Overlock SC, system-ui", - "slug": "overlock-sc", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overlocksc/v23/1cX3aUHKGZrstGAY8nwVzHGAq8Sk1PoH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Overlock SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overlock-sc/overlock-sc-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overlock-sc/overlock-sc.svg" - }, - { - "name": "Overpass", - "fontFamily": "Overpass, sans-serif", - "slug": "overpass", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PLrOZCLtce-og.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Overpass", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass/overpass-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPPrOZCLtce-og.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Overpass", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass/overpass-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6ovPrOZCLtce-og.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Overpass", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass/overpass-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PPrOZCLtce-og.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Overpass", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass/overpass-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6zvPrOZCLtce-og.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Overpass", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass/overpass-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6IvTrOZCLtce-og.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Overpass", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass/overpass-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6G_TrOZCLtce-og.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Overpass", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass/overpass-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPTrOZCLtce-og.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Overpass", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass/overpass-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6VfTrOZCLtce-og.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Overpass", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass/overpass-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADe5qPl8Kuosgz.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Overpass", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass/overpass-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDepqPl8Kuosgz.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Overpass", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass/overpass-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLBdepqPl8Kuosgz.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Overpass", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass/overpass-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADepqPl8Kuosgz.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Overpass", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass/overpass-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLAxepqPl8Kuosgz.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Overpass", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass/overpass-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDdfZqPl8Kuosgz.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Overpass", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass/overpass-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDkfZqPl8Kuosgz.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Overpass", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass/overpass-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDfZqPl8Kuosgz.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Overpass", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass/overpass-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCqfZqPl8Kuosgz.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Overpass", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass/overpass-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass/overpass.svg" - }, - { - "name": "Overpass Mono", - "fontFamily": "Overpass Mono, monospace", - "slug": "overpass-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EWKokzzXur-SmIr.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Overpass Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass-mono/overpass-mono-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXUokzzXur-SmIr.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Overpass Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass-mono/overpass-mono-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXmokzzXur-SmIr.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Overpass Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass-mono/overpass-mono-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUKpUzzXur-SmIr.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Overpass Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass-mono/overpass-mono-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUzpUzzXur-SmIr.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Overpass Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass-mono/overpass-mono-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/overpass-mono/overpass-mono.svg" - }, - { - "name": "Ovo", - "fontFamily": "Ovo, serif", - "slug": "ovo", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ovo/v17/yYLl0h7Wyfzjy4Q5_3WVxA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ovo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ovo/ovo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ovo/ovo.svg" - }, - { - "name": "Oxanium", - "fontFamily": "Oxanium, system-ui", - "slug": "oxanium", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oxanium/v19/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JfniMBXQ7d67x.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Oxanium", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oxanium/oxanium-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oxanium/v19/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G80XfniMBXQ7d67x.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Oxanium", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oxanium/oxanium-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oxanium/v19/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G81JfniMBXQ7d67x.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oxanium", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oxanium/oxanium-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oxanium/v19/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G817fniMBXQ7d67x.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Oxanium", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oxanium/oxanium-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oxanium/v19/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82XeXiMBXQ7d67x.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Oxanium", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oxanium/oxanium-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oxanium/v19/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82ueXiMBXQ7d67x.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Oxanium", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oxanium/oxanium-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oxanium/v19/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JeXiMBXQ7d67x.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Oxanium", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oxanium/oxanium-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oxanium/oxanium.svg" - }, - { - "name": "Oxygen", - "fontFamily": "Oxygen, sans-serif", - "slug": "oxygen", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCJW8Db2-4C7wFZQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Oxygen", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oxygen/oxygen-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oxygen/v15/2sDfZG1Wl4Lcnbu6iUcnZ0SkAg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oxygen", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oxygen/oxygen-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCNWgDb2-4C7wFZQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Oxygen", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oxygen/oxygen-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oxygen/oxygen.svg" - }, - { - "name": "Oxygen Mono", - "fontFamily": "Oxygen Mono, monospace", - "slug": "oxygen-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/oxygenmono/v14/h0GsssGg9FxgDgCjLeAd7ijfze-PPlUu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oxygen Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oxygen-mono/oxygen-mono-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/oxygen-mono/oxygen-mono.svg" - }, - { - "name": "PT Mono", - "fontFamily": "PT Mono, monospace", - "slug": "pt-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ptmono/v13/9oRONYoBnWILk-9ArCg5MtPyAcg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "PT Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pt-mono/pt-mono-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pt-mono/pt-mono.svg" - }, - { - "name": "PT Sans", - "fontFamily": "PT Sans, sans-serif", - "slug": "pt-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79P0WOxOGMMDQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "PT Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pt-sans/pt-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ptsans/v17/jizYRExUiTo99u79D0eEwMOJIDQA-g.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "PT Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pt-sans/pt-sans-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh4OmnLD0Z4zM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "PT Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pt-sans/pt-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ptsans/v17/jizdRExUiTo99u79D0e8fOytKB8c8zMrig.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "PT Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pt-sans/pt-sans-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pt-sans/pt-sans.svg" - }, - { - "name": "PT Sans Caption", - "fontFamily": "PT Sans Caption, sans-serif", - "slug": "pt-sans-caption", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ptsanscaption/v19/0FlMVP6Hrxmt7-fsUFhlFXNIlpcqfQXwQy6yxg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "PT Sans Caption", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pt-sans-caption/pt-sans-caption-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ptsanscaption/v19/0FlJVP6Hrxmt7-fsUFhlFXNIlpcSwSrUSwWuz38Tgg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "PT Sans Caption", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pt-sans-caption/pt-sans-caption-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pt-sans-caption/pt-sans-caption.svg" - }, - { - "name": "PT Sans Narrow", - "fontFamily": "PT Sans Narrow, sans-serif", - "slug": "pt-sans-narrow", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ptsansnarrow/v18/BngRUXNadjH0qYEzV7ab-oWlsYCByxyKeuDp.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "PT Sans Narrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pt-sans-narrow/pt-sans-narrow-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ptsansnarrow/v18/BngSUXNadjH0qYEzV7ab-oWlsbg95DiCUfzgRd-3.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "PT Sans Narrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pt-sans-narrow/pt-sans-narrow-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pt-sans-narrow/pt-sans-narrow.svg" - }, - { - "name": "PT Serif", - "fontFamily": "PT Serif, serif", - "slug": "pt-serif", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ptserif/v18/EJRVQgYoZZY2vCFuvDFRxL6ddjb-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "PT Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pt-serif/pt-serif-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ptserif/v18/EJRTQgYoZZY2vCFuvAFTzrq_cyb-vco.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "PT Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pt-serif/pt-serif-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ptserif/v18/EJRSQgYoZZY2vCFuvAnt65qVXSr3pNNB.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "PT Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pt-serif/pt-serif-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ptserif/v18/EJRQQgYoZZY2vCFuvAFT9gaQVy7VocNB6Iw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "PT Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pt-serif/pt-serif-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pt-serif/pt-serif.svg" - }, - { - "name": "PT Serif Caption", - "fontFamily": "PT Serif Caption, serif", - "slug": "pt-serif-caption", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ptserifcaption/v17/ieVl2ZhbGCW-JoW6S34pSDpqYKU059WxDCs5cvI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "PT Serif Caption", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pt-serif-caption/pt-serif-caption-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ptserifcaption/v17/ieVj2ZhbGCW-JoW6S34pSDpqYKU019e7CAk8YvJEeg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "PT Serif Caption", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pt-serif-caption/pt-serif-caption-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pt-serif-caption/pt-serif-caption.svg" - }, - { - "name": "Pacifico", - "fontFamily": "Pacifico, cursive", - "slug": "pacifico", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pacifico/v22/FwZY7-Qmy14u9lezJ96A4sijpFu_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pacifico", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pacifico/pacifico-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pacifico/pacifico.svg" - }, - { - "name": "Padauk", - "fontFamily": "Padauk, sans-serif", - "slug": "padauk", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/padauk/v16/RrQRboJg-id7OnbBa0_g3LlYbg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Padauk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/padauk/padauk-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/padauk/v16/RrQSboJg-id7Onb512DE1JJEZ4YwGg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Padauk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/padauk/padauk-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/padauk/padauk.svg" - }, - { - "name": "Padyakke Expanded One", - "fontFamily": "Padyakke Expanded One, serif", - "slug": "padyakke-expanded-one", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/padyakkeexpandedone/v6/K2FvfY9El_tbR0JfHb6WWvrBaU6XAUvC4IAYOKRkpDjeoQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Padyakke Expanded One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/padyakke-expanded-one/padyakke-expanded-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/padyakke-expanded-one/padyakke-expanded-one.svg" - }, - { - "name": "Palanquin", - "fontFamily": "Palanquin, sans-serif", - "slug": "palanquin", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/palanquin/v13/9XUhlJ90n1fBFg7ceXwUEltI7rWmZzTH.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Palanquin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/palanquin/palanquin-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUvnpoxJuqbi3ezg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Palanquin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/palanquin/palanquin-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwU2nloxJuqbi3ezg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Palanquin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/palanquin/palanquin-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/palanquin/v13/9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Palanquin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/palanquin/palanquin-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUgnhoxJuqbi3ezg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Palanquin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/palanquin/palanquin-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUrn9oxJuqbi3ezg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Palanquin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/palanquin/palanquin-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUyn5oxJuqbi3ezg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Palanquin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/palanquin/palanquin-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/palanquin/palanquin.svg" - }, - { - "name": "Palanquin Dark", - "fontFamily": "Palanquin Dark, sans-serif", - "slug": "palanquin-dark", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/palanquindark/v14/xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Palanquin Dark", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/palanquin-dark/palanquin-dark-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/palanquindark/v14/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41fcvN2KT4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Palanquin Dark", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/palanquin-dark/palanquin-dark-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/palanquindark/v14/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41fcvN2KT4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Palanquin Dark", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/palanquin-dark/palanquin-dark-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/palanquindark/v14/xn76YHgl1nqmANMB-26xC7yuF8YyY241fcvN2KT4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Palanquin Dark", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/palanquin-dark/palanquin-dark-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/palanquin-dark/palanquin-dark.svg" - }, - { - "name": "Palette Mosaic", - "fontFamily": "Palette Mosaic, system-ui", - "slug": "palette-mosaic", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/palettemosaic/v10/AMOIz4aBvWuBFe3TohdW6YZ9MFiy4dxL4jSr.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Palette Mosaic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/palette-mosaic/palette-mosaic-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/palette-mosaic/palette-mosaic.svg" - }, - { - "name": "Pangolin", - "fontFamily": "Pangolin, cursive", - "slug": "pangolin", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pangolin/v11/cY9GfjGcW0FPpi-tWPfK5d3aiLBG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pangolin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pangolin/pangolin-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pangolin/pangolin.svg" - }, - { - "name": "Paprika", - "fontFamily": "Paprika, system-ui", - "slug": "paprika", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/paprika/v21/8QIJdijZitv49rDfuIgOq7jkAOw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Paprika", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/paprika/paprika-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/paprika/paprika.svg" - }, - { - "name": "Parisienne", - "fontFamily": "Parisienne, cursive", - "slug": "parisienne", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/parisienne/v13/E21i_d3kivvAkxhLEVZpcy96DuKuavM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Parisienne", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/parisienne/parisienne-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/parisienne/parisienne.svg" - }, - { - "name": "Passero One", - "fontFamily": "Passero One, system-ui", - "slug": "passero-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/passeroone/v26/JTUTjIko8DOq5FeaeEAjgE5B5Arr-s50.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Passero One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/passero-one/passero-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/passero-one/passero-one.svg" - }, - { - "name": "Passion One", - "fontFamily": "Passion One, system-ui", - "slug": "passion-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/passionone/v18/PbynFmL8HhTPqbjUzux3JHuW_Frg6YoV.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Passion One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/passion-one/passion-one-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/passionone/v18/Pby6FmL8HhTPqbjUzux3JEMq037owpYcuH8y.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Passion One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/passion-one/passion-one-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/passionone/v18/Pby6FmL8HhTPqbjUzux3JEMS0X7owpYcuH8y.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Passion One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/passion-one/passion-one-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/passion-one/passion-one.svg" - }, - { - "name": "Passions Conflict", - "fontFamily": "Passions Conflict, cursive", - "slug": "passions-conflict", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/passionsconflict/v7/kmKnZrcrFhfafnWX9x0GuEC-zowow5NeYRI4CN2V.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Passions Conflict", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/passions-conflict/passions-conflict-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/passions-conflict/passions-conflict.svg" - }, - { - "name": "Pathway Extreme", - "fontFamily": "Pathway Extreme, sans-serif", - "slug": "pathway-extreme", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2Nx1Kyw3igP5eg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pathway-extreme/pathway-extreme-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakWN11Kyw3igP5eg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pathway-extreme/pathway-extreme-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakht11Kyw3igP5eg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pathway-extreme/pathway-extreme-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2N11Kyw3igP5eg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pathway-extreme/pathway-extreme-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak6t11Kyw3igP5eg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pathway-extreme/pathway-extreme-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakBtp1Kyw3igP5eg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pathway-extreme/pathway-extreme-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakP9p1Kyw3igP5eg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pathway-extreme/pathway-extreme-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakWNp1Kyw3igP5eg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pathway-extreme/pathway-extreme-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakcdp1Kyw3igP5eg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pathway-extreme/pathway-extreme-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6daSYzqAbpepnF.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pathway-extreme/pathway-extreme-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ4daCYzqAbpepnF.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pathway-extreme/pathway-extreme-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ7DaCYzqAbpepnF.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pathway-extreme/pathway-extreme-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6daCYzqAbpepnF.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pathway-extreme/pathway-extreme-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6vaCYzqAbpepnF.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pathway-extreme/pathway-extreme-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ5DbyYzqAbpepnF.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pathway-extreme/pathway-extreme-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ56byYzqAbpepnF.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pathway-extreme/pathway-extreme-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ4dbyYzqAbpepnF.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pathway-extreme/pathway-extreme-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ40byYzqAbpepnF.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pathway-extreme/pathway-extreme-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pathway-extreme/pathway-extreme.svg" - }, - { - "name": "Pathway Gothic One", - "fontFamily": "Pathway Gothic One, sans-serif", - "slug": "pathway-gothic-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pathwaygothicone/v15/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dTFxeb80flQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pathway Gothic One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pathway-gothic-one/pathway-gothic-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pathway-gothic-one/pathway-gothic-one.svg" - }, - { - "name": "Patrick Hand", - "fontFamily": "Patrick Hand, cursive", - "slug": "patrick-hand", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/patrickhand/v23/LDI1apSQOAYtSuYWp8ZhfYeMWcjKm7sp8g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Patrick Hand", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/patrick-hand/patrick-hand-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/patrick-hand/patrick-hand.svg" - }, - { - "name": "Patrick Hand SC", - "fontFamily": "Patrick Hand SC, cursive", - "slug": "patrick-hand-sc", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/patrickhandsc/v15/0nkwC9f7MfsBiWcLtY65AWDK873ViSi6JQc7Vg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Patrick Hand SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/patrick-hand-sc/patrick-hand-sc-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/patrick-hand-sc/patrick-hand-sc.svg" - }, - { - "name": "Pattaya", - "fontFamily": "Pattaya, sans-serif", - "slug": "pattaya", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pattaya/v16/ea8ZadcqV_zkHY-XNdCn92ZEmVs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pattaya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pattaya/pattaya-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pattaya/pattaya.svg" - }, - { - "name": "Patua One", - "fontFamily": "Patua One, system-ui", - "slug": "patua-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/patuaone/v20/ZXuke1cDvLCKLDcimxBI5PNvNA9LuA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Patua One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/patua-one/patua-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/patua-one/patua-one.svg" - }, - { - "name": "Pavanam", - "fontFamily": "Pavanam, sans-serif", - "slug": "pavanam", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pavanam/v11/BXRrvF_aiezLh0xPDOtQ9Wf0QcE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pavanam", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pavanam/pavanam-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pavanam/pavanam.svg" - }, - { - "name": "Paytone One", - "fontFamily": "Paytone One, sans-serif", - "slug": "paytone-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/paytoneone/v23/0nksC9P7MfYHj2oFtYm2CiTqivr9iBq_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Paytone One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/paytone-one/paytone-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/paytone-one/paytone-one.svg" - }, - { - "name": "Peddana", - "fontFamily": "Peddana, serif", - "slug": "peddana", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/peddana/v20/aFTU7PBhaX89UcKWhh2aBYyMcKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Peddana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/peddana/peddana-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/peddana/peddana.svg" - }, - { - "name": "Peralta", - "fontFamily": "Peralta, serif", - "slug": "peralta", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/peralta/v19/hYkJPu0-RP_9d3kRGxAhrv956B8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Peralta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/peralta/peralta-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/peralta/peralta.svg" - }, - { - "name": "Permanent Marker", - "fontFamily": "Permanent Marker, cursive", - "slug": "permanent-marker", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/permanentmarker/v16/Fh4uPib9Iyv2ucM6pGQMWimMp004HaqIfrT5nlk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Permanent Marker", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/permanent-marker/permanent-marker-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/permanent-marker/permanent-marker.svg" - }, - { - "name": "Petemoss", - "fontFamily": "Petemoss, cursive", - "slug": "petemoss", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/petemoss/v7/A2BZn5tA2xgtGWHZgxkesKb9UouQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Petemoss", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petemoss/petemoss-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petemoss/petemoss.svg" - }, - { - "name": "Petit Formal Script", - "fontFamily": "Petit Formal Script, cursive", - "slug": "petit-formal-script", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/petitformalscript/v17/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHnqP4gZSiE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Petit Formal Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petit-formal-script/petit-formal-script-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petit-formal-script/petit-formal-script.svg" - }, - { - "name": "Petrona", - "fontFamily": "Petrona, serif", - "slug": "petrona", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsARBH452Mvds.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Petrona", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petrona/petrona-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NsQRBH452Mvds.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Petrona", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petrona/petrona-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk7TsQRBH452Mvds.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Petrona", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petrona/petrona-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsQRBH452Mvds.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Petrona", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petrona/petrona-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6_sQRBH452Mvds.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Petrona", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petrona/petrona-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5TtgRBH452Mvds.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Petrona", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petrona/petrona-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5qtgRBH452Mvds.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Petrona", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petrona/petrona-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NtgRBH452Mvds.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Petrona", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petrona/petrona-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4ktgRBH452Mvds.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Petrona", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petrona/petrona-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwDFYpUN-dsIWs.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Petrona", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petrona/petrona-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwCFYpUN-dsIWs.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Petrona", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petrona/petrona-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8rICFYpUN-dsIWs.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Petrona", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petrona/petrona-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwCFYpUN-dsIWs.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Petrona", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petrona/petrona-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8t4CFYpUN-dsIWs.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Petrona", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petrona/petrona-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8jIFFYpUN-dsIWs.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Petrona", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petrona/petrona-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8gsFFYpUN-dsIWs.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Petrona", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petrona/petrona-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwFFYpUN-dsIWs.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Petrona", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petrona/petrona-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8kUFFYpUN-dsIWs.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Petrona", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petrona/petrona-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/petrona/petrona.svg" - }, - { - "name": "Philosopher", - "fontFamily": "Philosopher, sans-serif", - "slug": "philosopher", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/philosopher/v19/vEFV2_5QCwIS4_Dhez5jcVBpRUwU08qe.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Philosopher", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/philosopher/philosopher-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/philosopher/v19/vEFX2_5QCwIS4_Dhez5jcWBrT0g21tqeR7c.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Philosopher", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/philosopher/philosopher-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/philosopher/v19/vEFI2_5QCwIS4_Dhez5jcWjVamgc-NaXXq7H.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Philosopher", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/philosopher/philosopher-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/philosopher/v19/vEFK2_5QCwIS4_Dhez5jcWBrd_QZ8tK1W77HtMo.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Philosopher", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/philosopher/philosopher-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/philosopher/philosopher.svg" - }, - { - "name": "Phudu", - "fontFamily": "Phudu, system-ui", - "slug": "phudu", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/phudu/v4/0FlJVPSHk0ya-7OUeO_U-Lwm7PkK62zUSwWuz38Tgg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Phudu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/phudu/phudu-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/phudu/v4/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKtWzUSwWuz38Tgg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Phudu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/phudu/phudu-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/phudu/v4/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKh2zUSwWuz38Tgg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Phudu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/phudu/phudu-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/phudu/v4/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKa2vUSwWuz38Tgg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Phudu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/phudu/phudu-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/phudu/v4/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKUmvUSwWuz38Tgg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Phudu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/phudu/phudu-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/phudu/v4/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKNWvUSwWuz38Tgg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Phudu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/phudu/phudu-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/phudu/v4/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKHGvUSwWuz38Tgg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Phudu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/phudu/phudu-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/phudu/phudu.svg" - }, - { - "name": "Piazzolla", - "fontFamily": "Piazzolla, serif", - "slug": "piazzolla", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/piazzolla/v35/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYx3Ly1AHfAAy5.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Piazzolla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/piazzolla/piazzolla-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/piazzolla/v35/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYxnLy1AHfAAy5.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Piazzolla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/piazzolla/piazzolla-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/piazzolla/v35/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7KGxnLy1AHfAAy5.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Piazzolla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/piazzolla/piazzolla-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/piazzolla/v35/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYxnLy1AHfAAy5.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Piazzolla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/piazzolla/piazzolla-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/piazzolla/v35/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LqxnLy1AHfAAy5.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Piazzolla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/piazzolla/piazzolla-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/piazzolla/v35/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7IGwXLy1AHfAAy5.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Piazzolla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/piazzolla/piazzolla-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/piazzolla/v35/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7I_wXLy1AHfAAy5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Piazzolla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/piazzolla/piazzolla-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/piazzolla/v35/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYwXLy1AHfAAy5.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Piazzolla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/piazzolla/piazzolla-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/piazzolla/v35/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JxwXLy1AHfAAy5.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Piazzolla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/piazzolla/piazzolla-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/piazzolla/v35/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqw3gX9BRy5m5M.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Piazzolla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/piazzolla/piazzolla-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/piazzolla/v35/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRqx3gX9BRy5m5M.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Piazzolla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/piazzolla/piazzolla-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/piazzolla/v35/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhcSx3gX9BRy5m5M.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Piazzolla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/piazzolla/piazzolla-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/piazzolla/v35/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Piazzolla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/piazzolla/piazzolla-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/piazzolla/v35/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhaix3gX9BRy5m5M.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Piazzolla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/piazzolla/piazzolla-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/piazzolla/v35/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhUS23gX9BRy5m5M.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Piazzolla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/piazzolla/piazzolla-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/piazzolla/v35/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhX223gX9BRy5m5M.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Piazzolla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/piazzolla/piazzolla-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/piazzolla/v35/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRq23gX9BRy5m5M.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Piazzolla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/piazzolla/piazzolla-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/piazzolla/v35/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhTO23gX9BRy5m5M.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Piazzolla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/piazzolla/piazzolla-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/piazzolla/piazzolla.svg" - }, - { - "name": "Piedra", - "fontFamily": "Piedra, system-ui", - "slug": "piedra", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/piedra/v25/ke8kOg8aN0Bn7hTunEyHN_M3gA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Piedra", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/piedra/piedra-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/piedra/piedra.svg" - }, - { - "name": "Pinyon Script", - "fontFamily": "Pinyon Script, cursive", - "slug": "pinyon-script", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pinyonscript/v21/6xKpdSJbL9-e9LuoeQiDRQR8aOLQO4bhiDY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pinyon Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pinyon-script/pinyon-script-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pinyon-script/pinyon-script.svg" - }, - { - "name": "Pirata One", - "fontFamily": "Pirata One, system-ui", - "slug": "pirata-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pirataone/v22/I_urMpiDvgLdLh0fAtoftiiEr5_BdZ8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pirata One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pirata-one/pirata-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pirata-one/pirata-one.svg" - }, - { - "name": "Plaster", - "fontFamily": "Plaster, system-ui", - "slug": "plaster", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/plaster/v24/DdTm79QatW80eRh4Ei5JOtLOeLI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Plaster", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/plaster/plaster-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/plaster/plaster.svg" - }, - { - "name": "Play", - "fontFamily": "Play, sans-serif", - "slug": "play", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/play/v19/6aez4K2oVqwIjtI8Hp8Tx3A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Play", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/play/play-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/play/v19/6ae84K2oVqwItm4TOpc423nTJTM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Play", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/play/play-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/play/play.svg" - }, - { - "name": "Playball", - "fontFamily": "Playball, system-ui", - "slug": "playball", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playball/v20/TK3gWksYAxQ7jbsKcj8Dl-tPKo2t.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Playball", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playball/playball-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playball/playball.svg" - }, - { - "name": "Playfair", - "fontFamily": "Playfair, serif", - "slug": "playfair", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfair/v2/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-TUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPlKetgdoSMw5ifm.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Playfair", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair/playfair-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfair/v2/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-TUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPkUetgdoSMw5ifm.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Playfair", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair/playfair-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfair/v2/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-TUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPkmetgdoSMw5ifm.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Playfair", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair/playfair-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfair/v2/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-TUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPnKfdgdoSMw5ifm.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Playfair", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair/playfair-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfair/v2/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-TUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPnzfdgdoSMw5ifm.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Playfair", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair/playfair-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfair/v2/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-TUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPmUfdgdoSMw5ifm.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Playfair", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair/playfair-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfair/v2/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-TUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPm9fdgdoSMw5ifm.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Playfair", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair/playfair-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfair/v2/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZDFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOW5eqycS4zfmNrE.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Playfair", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair/playfair-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfair/v2/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZDFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOTBeqycS4zfmNrE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Playfair", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair/playfair-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfair/v2/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZDFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOQJeqycS4zfmNrE.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Playfair", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair/playfair-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfair/v2/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZDFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOe5ZqycS4zfmNrE.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Playfair", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair/playfair-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfair/v2/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZDFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOddZqycS4zfmNrE.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Playfair", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair/playfair-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfair/v2/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZDFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcObBZqycS4zfmNrE.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Playfair", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair/playfair-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfair/v2/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZDFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOZlZqycS4zfmNrE.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Playfair", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair/playfair-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair/playfair.svg" - }, - { - "name": "Playfair Display", - "fontFamily": "Playfair Display, serif", - "slug": "playfair-display", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfairdisplay/v36/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvUDQZNLo_U2r.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Playfair Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair-display/playfair-display-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfairdisplay/v36/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKd3vUDQZNLo_U2r.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Playfair Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair-display/playfair-display-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfairdisplay/v36/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKebukDQZNLo_U2r.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Playfair Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair-display/playfair-display-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfairdisplay/v36/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiukDQZNLo_U2r.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Playfair Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair-display/playfair-display-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfairdisplay/v36/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfFukDQZNLo_U2r.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Playfair Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair-display/playfair-display-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfairdisplay/v36/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfsukDQZNLo_U2r.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Playfair Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair-display/playfair-display-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfairdisplay/v36/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_qiTbtbK-F2rA0s.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Playfair Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair-display/playfair-display-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfairdisplay/v36/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_pqTbtbK-F2rA0s.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Playfair Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair-display/playfair-display-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfairdisplay/v36/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_naUbtbK-F2rA0s.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Playfair Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair-display/playfair-display-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfairdisplay/v36/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_k-UbtbK-F2rA0s.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Playfair Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair-display/playfair-display-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfairdisplay/v36/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_iiUbtbK-F2rA0s.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Playfair Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair-display/playfair-display-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfairdisplay/v36/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_gGUbtbK-F2rA0s.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Playfair Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair-display/playfair-display-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair-display/playfair-display.svg" - }, - { - "name": "Playfair Display SC", - "fontFamily": "Playfair Display SC, serif", - "slug": "playfair-display-sc", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfairdisplaysc/v15/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pb4GEcM2M4s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Playfair Display SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair-display-sc/playfair-display-sc-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfairdisplaysc/v15/ke87OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbwMFeEzI4sNKg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Playfair Display SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair-display-sc/playfair-display-sc-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nQIpNcsdL4IUMyE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Playfair Display SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair-display-sc/playfair-display-sc-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0qc4XK6ARIyH5IA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Playfair Display SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair-display-sc/playfair-display-sc-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nTorNcsdL4IUMyE.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Playfair Display SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair-display-sc/playfair-display-sc-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0kcwXK6ARIyH5IA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Playfair Display SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair-display-sc/playfair-display-sc-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/playfair-display-sc/playfair-display-sc.svg" - }, - { - "name": "Plus Jakarta Sans", - "fontFamily": "Plus Jakarta Sans, sans-serif", - "slug": "plus-jakarta-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KU7NShXUEKi4Rw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Plus Jakarta Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/plus-jakarta-sans/plus-jakarta-sans-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_907NShXUEKi4Rw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Plus Jakarta Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/plus-jakarta-sans/plus-jakarta-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NShXUEKi4Rw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Plus Jakarta Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/plus-jakarta-sans/plus-jakarta-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NShXUEKi4Rw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Plus Jakarta Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/plus-jakarta-sans/plus-jakarta-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNShXUEKi4Rw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Plus Jakarta Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/plus-jakarta-sans/plus-jakarta-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNShXUEKi4Rw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Plus Jakarta Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/plus-jakarta-sans/plus-jakarta-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNShXUEKi4Rw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Plus Jakarta Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/plus-jakarta-sans/plus-jakarta-sans-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lCR_QMq2oR82k.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Plus Jakarta Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/plus-jakarta-sans/plus-jakarta-sans-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ17CR_QMq2oR82k.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Plus Jakarta Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/plus-jakarta-sans/plus-jakarta-sans-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0lCR_QMq2oR82k.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Plus Jakarta Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/plus-jakarta-sans/plus-jakarta-sans-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0XCR_QMq2oR82k.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Plus Jakarta Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/plus-jakarta-sans/plus-jakarta-sans-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ37Dh_QMq2oR82k.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Plus Jakarta Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/plus-jakarta-sans/plus-jakarta-sans-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ3CDh_QMq2oR82k.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Plus Jakarta Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/plus-jakarta-sans/plus-jakarta-sans-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lDh_QMq2oR82k.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Plus Jakarta Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/plus-jakarta-sans/plus-jakarta-sans-800-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/plus-jakarta-sans/plus-jakarta-sans.svg" - }, - { - "name": "Podkova", - "fontFamily": "Podkova, serif", - "slug": "podkova", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/podkova/v31/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWtFzcU4EoporSHH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Podkova", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/podkova/podkova-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/podkova/v31/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWt3zcU4EoporSHH.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Podkova", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/podkova/podkova-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/podkova/v31/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWubysU4EoporSHH.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Podkova", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/podkova/podkova-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/podkova/v31/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWuiysU4EoporSHH.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Podkova", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/podkova/podkova-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/podkova/v31/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWvFysU4EoporSHH.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Podkova", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/podkova/podkova-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/podkova/podkova.svg" - }, - { - "name": "Poiret One", - "fontFamily": "Poiret One, system-ui", - "slug": "poiret-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poiretone/v16/UqyVK80NJXN4zfRgbdfbk5lWVscxdKE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Poiret One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poiret-one/poiret-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poiret-one/poiret-one.svg" - }, - { - "name": "Poller One", - "fontFamily": "Poller One, system-ui", - "slug": "poller-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pollerone/v23/ahccv82n0TN3gia5E4Bud-lbgUS5u0s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Poller One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poller-one/poller-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poller-one/poller-one.svg" - }, - { - "name": "Poltawski Nowy", - "fontFamily": "Poltawski Nowy, serif", - "slug": "poltawski-nowy", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poltawskinowy/v2/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KqCWnDS6V5CzCoQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Poltawski Nowy", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poltawski-nowy/poltawski-nowy-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poltawskinowy/v2/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KmiWnDS6V5CzCoQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Poltawski Nowy", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poltawski-nowy/poltawski-nowy-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poltawskinowy/v2/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KdiKnDS6V5CzCoQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Poltawski Nowy", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poltawski-nowy/poltawski-nowy-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poltawskinowy/v2/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KTyKnDS6V5CzCoQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Poltawski Nowy", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poltawski-nowy/poltawski-nowy-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poltawskinowy/v2/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGZPTiSRxinSoROp.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Poltawski Nowy", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poltawski-nowy/poltawski-nowy-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poltawskinowy/v2/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGZ9TiSRxinSoROp.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Poltawski Nowy", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poltawski-nowy/poltawski-nowy-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poltawskinowy/v2/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGaRSSSRxinSoROp.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Poltawski Nowy", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poltawski-nowy/poltawski-nowy-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poltawskinowy/v2/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGaoSSSRxinSoROp.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Poltawski Nowy", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poltawski-nowy/poltawski-nowy-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poltawski-nowy/poltawski-nowy.svg" - }, - { - "name": "Poly", - "fontFamily": "Poly, serif", - "slug": "poly", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poly/v16/MQpb-W6wKNitRLCAq2Lpris.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Poly", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poly/poly-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poly/v16/MQpV-W6wKNitdLKKr0DsviuGWA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Poly", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poly/poly-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poly/poly.svg" - }, - { - "name": "Pompiere", - "fontFamily": "Pompiere, system-ui", - "slug": "pompiere", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pompiere/v19/VEMyRoxis5Dwuyeov6Wt5jDtreOL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pompiere", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pompiere/pompiere-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pompiere/pompiere.svg" - }, - { - "name": "Pontano Sans", - "fontFamily": "Pontano Sans, sans-serif", - "slug": "pontano-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOSzMncaMp9gzWsE.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Pontano Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pontano-sans/pontano-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOXLMncaMp9gzWsE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pontano Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pontano-sans/pontano-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOUDMncaMp9gzWsE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Pontano Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pontano-sans/pontano-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOazLncaMp9gzWsE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Pontano Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pontano-sans/pontano-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOZXLncaMp9gzWsE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Pontano Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pontano-sans/pontano-sans-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pontano-sans/pontano-sans.svg" - }, - { - "name": "Poor Story", - "fontFamily": "Poor Story, system-ui", - "slug": "poor-story", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poorstory/v20/jizfREFUsnUct9P6cDfd4OmnLD0Z4zM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Poor Story", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poor-story/poor-story-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poor-story/poor-story.svg" - }, - { - "name": "Poppins", - "fontFamily": "Poppins, sans-serif", - "slug": "poppins", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Poppins", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poppins/poppins-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poppins/v20/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Poppins", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poppins/poppins-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Poppins", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poppins/poppins-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Poppins", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poppins/poppins-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Poppins", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poppins/poppins-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Poppins", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poppins/poppins-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Poppins", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poppins/poppins-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Poppins", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poppins/poppins-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Poppins", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poppins/poppins-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Poppins", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poppins/poppins-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Poppins", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poppins/poppins-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Poppins", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poppins/poppins-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Poppins", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poppins/poppins-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Poppins", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poppins/poppins-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Poppins", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poppins/poppins-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Poppins", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poppins/poppins-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Poppins", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poppins/poppins-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Poppins", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poppins/poppins-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/poppins/poppins.svg" - }, - { - "name": "Port Lligat Sans", - "fontFamily": "Port Lligat Sans, sans-serif", - "slug": "port-lligat-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/portlligatsans/v22/kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7N0Tx4xEcQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Port Lligat Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/port-lligat-sans/port-lligat-sans-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/port-lligat-sans/port-lligat-sans.svg" - }, - { - "name": "Port Lligat Slab", - "fontFamily": "Port Lligat Slab, serif", - "slug": "port-lligat-slab", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/portlligatslab/v25/LDIpaoiQNgArA8kR7ulhZ8P_NYOss7ob9yGLmfI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Port Lligat Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/port-lligat-slab/port-lligat-slab-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/port-lligat-slab/port-lligat-slab.svg" - }, - { - "name": "Potta One", - "fontFamily": "Potta One, system-ui", - "slug": "potta-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pottaone/v16/FeVSS05Bp6cy7xI-YfxQ3Z5nm29Gww.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Potta One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/potta-one/potta-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/potta-one/potta-one.svg" - }, - { - "name": "Pragati Narrow", - "fontFamily": "Pragati Narrow, sans-serif", - "slug": "pragati-narrow", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pragatinarrow/v13/vm8vdRf0T0bS1ffgsPB7WZ-mD17_ytN3M48a.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pragati Narrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pragati-narrow/pragati-narrow-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pragatinarrow/v13/vm8sdRf0T0bS1ffgsPB7WZ-mD2ZD5fd_GJMTlo_4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Pragati Narrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pragati-narrow/pragati-narrow-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pragati-narrow/pragati-narrow.svg" - }, - { - "name": "Praise", - "fontFamily": "Praise, cursive", - "slug": "praise", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/praise/v7/qkBUXvUZ-cnFXcFyDvO67L9XmQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Praise", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/praise/praise-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/praise/praise.svg" - }, - { - "name": "Prata", - "fontFamily": "Prata, serif", - "slug": "prata", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prata/v20/6xKhdSpbNNCT-vWIAG_5LWwJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Prata", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prata/prata-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prata/prata.svg" - }, - { - "name": "Preahvihear", - "fontFamily": "Preahvihear, sans-serif", - "slug": "preahvihear", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/preahvihear/v29/6NUS8F-dNQeEYhzj7uluxswE49FJf8Wv.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Preahvihear", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/preahvihear/preahvihear-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/preahvihear/preahvihear.svg" - }, - { - "name": "Press Start 2P", - "fontFamily": "Press Start 2P, system-ui", - "slug": "press-start-2p", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pressstart2p/v15/e3t4euO8T-267oIAQAu6jDQyK0nSgPJE4580.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Press Start 2P", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/press-start-2p/press-start-2p-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/press-start-2p/press-start-2p.svg" - }, - { - "name": "Pridi", - "fontFamily": "Pridi, serif", - "slug": "pridi", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pridi/v13/2sDdZG5JnZLfkc1SiE0jRUG0AqUc.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Pridi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pridi/pridi-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pridi/v13/2sDdZG5JnZLfkc02i00jRUG0AqUc.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Pridi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pridi/pridi-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pridi/v13/2sDQZG5JnZLfkfWao2krbl29.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pridi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pridi/pridi-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pridi/v13/2sDdZG5JnZLfkc1uik0jRUG0AqUc.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Pridi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pridi/pridi-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pridi/v13/2sDdZG5JnZLfkc1CjU0jRUG0AqUc.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Pridi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pridi/pridi-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pridi/v13/2sDdZG5JnZLfkc0mjE0jRUG0AqUc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Pridi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pridi/pridi-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pridi/pridi.svg" - }, - { - "name": "Princess Sofia", - "fontFamily": "Princess Sofia, cursive", - "slug": "princess-sofia", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/princesssofia/v25/qWczB6yguIb8DZ_GXZst16n7GRz7mDUoupoI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Princess Sofia", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/princess-sofia/princess-sofia-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/princess-sofia/princess-sofia.svg" - }, - { - "name": "Prociono", - "fontFamily": "Prociono, serif", - "slug": "prociono", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prociono/v26/r05YGLlR-KxAf9GGO8upyDYtStiJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Prociono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prociono/prociono-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prociono/prociono.svg" - }, - { - "name": "Prompt", - "fontFamily": "Prompt, sans-serif", - "slug": "prompt", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2CA9oYREcjeo0k.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Prompt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prompt/prompt-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prompt/v10/-W_7XJnvUD7dzB2KZeJ8TkMBf50kbiM.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Prompt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prompt/prompt-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cr_s4bmkvc5Q9dw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Prompt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prompt/prompt-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLQb2MrUZEtdzow.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Prompt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prompt/prompt-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cy_g4bmkvc5Q9dw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Prompt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prompt/prompt-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK0bGMrUZEtdzow.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Prompt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prompt/prompt-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prompt/v10/-W__XJnvUD7dzB26Z9AcZkIzeg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Prompt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prompt/prompt-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2KZdoYREcjeo0k.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Prompt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prompt/prompt-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Ck_k4bmkvc5Q9dw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Prompt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prompt/prompt-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLsbWMrUZEtdzow.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Prompt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prompt/prompt-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cv_44bmkvc5Q9dw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Prompt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prompt/prompt-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLAamMrUZEtdzow.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Prompt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prompt/prompt-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C2_84bmkvc5Q9dw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Prompt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prompt/prompt-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKka2MrUZEtdzow.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Prompt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prompt/prompt-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cx_w4bmkvc5Q9dw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Prompt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prompt/prompt-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK4aGMrUZEtdzow.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Prompt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prompt/prompt-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C4_04bmkvc5Q9dw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Prompt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prompt/prompt-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKcaWMrUZEtdzow.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Prompt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prompt/prompt-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prompt/prompt.svg" - }, - { - "name": "Prosto One", - "fontFamily": "Prosto One, system-ui", - "slug": "prosto-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prostoone/v19/OpNJno4VhNfK-RgpwWWxpipfWhXD00c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Prosto One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prosto-one/prosto-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/prosto-one/prosto-one.svg" - }, - { - "name": "Proza Libre", - "fontFamily": "Proza Libre, sans-serif", - "slug": "proza-libre", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prozalibre/v9/LYjGdGHgj0k1DIQRyUEyyHovftvXWYyz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Proza Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/proza-libre/proza-libre-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prozalibre/v9/LYjEdGHgj0k1DIQRyUEyyEotdN_1XJyz7zc.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Proza Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/proza-libre/proza-libre-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyELbV__fcpC69i6N.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Proza Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/proza-libre/proza-libre-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTCvceJSY8z6Np1k.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Proza Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/proza-libre/proza-libre-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEL3UP_fcpC69i6N.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Proza Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/proza-libre/proza-libre-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTAfbeJSY8z6Np1k.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Proza Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/proza-libre/proza-libre-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKTUf_fcpC69i6N.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Proza Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/proza-libre/proza-libre-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTGPaeJSY8z6Np1k.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Proza Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/proza-libre/proza-libre-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKPUv_fcpC69i6N.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Proza Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/proza-libre/proza-libre-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTH_ZeJSY8z6Np1k.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Proza Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/proza-libre/proza-libre-800-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/proza-libre/proza-libre.svg" - }, - { - "name": "Public Sans", - "fontFamily": "Public Sans, sans-serif", - "slug": "public-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpi5ww0pX189fg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Public Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/public-sans/public-sans-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulpm5ww0pX189fg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Public Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/public-sans/public-sans-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuSJm5ww0pX189fg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Public Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/public-sans/public-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpm5ww0pX189fg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Public Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/public-sans/public-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuJJm5ww0pX189fg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Public Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/public-sans/public-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuyJ65ww0pX189fg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Public Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/public-sans/public-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65ww0pX189fg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Public Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/public-sans/public-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulp65ww0pX189fg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Public Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/public-sans/public-sans-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuv565ww0pX189fg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Public Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/public-sans/public-sans-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgQctfVotfj7j.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Public Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/public-sans/public-sans-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRgActfVotfj7j.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Public Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/public-sans/public-sans-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673toPgActfVotfj7j.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Public Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/public-sans/public-sans-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgActfVotfj7j.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Public Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/public-sans/public-sans-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpjgActfVotfj7j.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Public Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/public-sans/public-sans-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tqPhwctfVotfj7j.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Public Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/public-sans/public-sans-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tq2hwctfVotfj7j.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Public Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/public-sans/public-sans-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRhwctfVotfj7j.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Public Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/public-sans/public-sans-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tr4hwctfVotfj7j.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Public Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/public-sans/public-sans-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/public-sans/public-sans.svg" - }, - { - "name": "Puppies Play", - "fontFamily": "Puppies Play, cursive", - "slug": "puppies-play", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/puppiesplay/v9/wlp2gwHZEV99rG6M3NR9uB9vaAJSA_JN3Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Puppies Play", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/puppies-play/puppies-play-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/puppies-play/puppies-play.svg" - }, - { - "name": "Puritan", - "fontFamily": "Puritan, sans-serif", - "slug": "puritan", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/puritan/v24/845YNMgkAJ2VTtIo9JrwRdaI50M.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Puritan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/puritan/puritan-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/puritan/v24/845aNMgkAJ2VTtIoxJj6QfSN90PfXA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Puritan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/puritan/puritan-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/puritan/v24/845dNMgkAJ2VTtIozCbfYd6j-0rGRes.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Puritan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/puritan/puritan-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/puritan/v24/845fNMgkAJ2VTtIoxJjC_dup_2jDVevnLQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Puritan", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/puritan/puritan-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/puritan/puritan.svg" - }, - { - "name": "Purple Purse", - "fontFamily": "Purple Purse, system-ui", - "slug": "purple-purse", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/purplepurse/v23/qWctB66gv53iAp-Vfs4My6qyeBb_ujA4ug.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Purple Purse", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/purple-purse/purple-purse-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/purple-purse/purple-purse.svg" - }, - { - "name": "Pushster", - "fontFamily": "Pushster, system-ui", - "slug": "pushster", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/pushster/v21/BXRovFDanenCmllHXst622v9WNjW.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pushster", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pushster/pushster-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/pushster/pushster.svg" - }, - { - "name": "Qahiri", - "fontFamily": "Qahiri, sans-serif", - "slug": "qahiri", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/qahiri/v9/tsssAp1RZy0C_hGuU3Chrnmupw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Qahiri", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/qahiri/qahiri-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/qahiri/qahiri.svg" - }, - { - "name": "Quando", - "fontFamily": "Quando, serif", - "slug": "quando", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/quando/v16/xMQVuFNaVa6YuW0pC6WzKX_QmA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Quando", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quando/quando-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quando/quando.svg" - }, - { - "name": "Quantico", - "fontFamily": "Quantico, sans-serif", - "slug": "quantico", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/quantico/v17/rax-HiSdp9cPL3KIF4xsLjxSmlLZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Quantico", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quantico/quantico-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/quantico/v17/rax4HiSdp9cPL3KIF7xuJDhwn0LZ6T8.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Quantico", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quantico/quantico-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/quantico/v17/rax5HiSdp9cPL3KIF7TQARhasU7Q8Cad.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Quantico", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quantico/quantico-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/quantico/v17/rax7HiSdp9cPL3KIF7xuHIRfu0ry9TadML4.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Quantico", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quantico/quantico-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quantico/quantico.svg" - }, - { - "name": "Quattrocento", - "fontFamily": "Quattrocento, serif", - "slug": "quattrocento", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/quattrocento/v21/OZpEg_xvsDZQL_LKIF7q4jPHxGL7f4jFuA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Quattrocento", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quattrocento/quattrocento-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/quattrocento/v21/OZpbg_xvsDZQL_LKIF7q4jP_eE3fd6PZsXcM9w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Quattrocento", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quattrocento/quattrocento-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quattrocento/quattrocento.svg" - }, - { - "name": "Quattrocento Sans", - "fontFamily": "Quattrocento Sans, sans-serif", - "slug": "quattrocento-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/quattrocentosans/v18/va9c4lja2NVIDdIAAoMR5MfuElaRB3zOvU7eHGHJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Quattrocento Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quattrocento-sans/quattrocento-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/quattrocentosans/v18/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0r8GXHJkLI.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Quattrocento Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quattrocento-sans/quattrocento-sans-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/quattrocentosans/v18/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrWN33AiasJ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Quattrocento Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quattrocento-sans/quattrocento-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/quattrocentosans/v18/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXnijLsJV7E.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Quattrocento Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quattrocento-sans/quattrocento-sans-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quattrocento-sans/quattrocento-sans.svg" - }, - { - "name": "Questrial", - "fontFamily": "Questrial, sans-serif", - "slug": "questrial", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/questrial/v18/QdVUSTchPBm7nuUeVf7EuStkm20oJA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Questrial", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/questrial/questrial-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/questrial/questrial.svg" - }, - { - "name": "Quicksand", - "fontFamily": "Quicksand, sans-serif", - "slug": "quicksand", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkKEo18G0wx40QDw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Quicksand", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quicksand/quicksand-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o18G0wx40QDw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Quicksand", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quicksand/quicksand-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkM0o18G0wx40QDw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Quicksand", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quicksand/quicksand-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkCEv18G0wx40QDw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Quicksand", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quicksand/quicksand-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkBgv18G0wx40QDw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Quicksand", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quicksand/quicksand-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quicksand/quicksand.svg" - }, - { - "name": "Quintessential", - "fontFamily": "Quintessential, cursive", - "slug": "quintessential", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/quintessential/v22/fdNn9sOGq31Yjnh3qWU14DdtjY5wS7kmAyxM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Quintessential", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quintessential/quintessential-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/quintessential/quintessential.svg" - }, - { - "name": "Qwigley", - "fontFamily": "Qwigley, cursive", - "slug": "qwigley", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/qwigley/v18/1cXzaU3UGJb5tGoCuVxsi1mBmcE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Qwigley", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/qwigley/qwigley-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/qwigley/qwigley.svg" - }, - { - "name": "Qwitcher Grypen", - "fontFamily": "Qwitcher Grypen, cursive", - "slug": "qwitcher-grypen", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/qwitchergrypen/v6/pxicypclp9tDilN9RrC5BSI1dZmrSGNAom-wpw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Qwitcher Grypen", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/qwitcher-grypen/qwitcher-grypen-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/qwitchergrypen/v6/pxiZypclp9tDilN9RrC5BSI1dZmT9ExkqkSsrvNXiA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Qwitcher Grypen", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/qwitcher-grypen/qwitcher-grypen-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/qwitcher-grypen/qwitcher-grypen.svg" - }, - { - "name": "REM", - "fontFamily": "REM, sans-serif", - "slug": "rem", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rem/v2/WnzgHAIoSDyHbRjfsYumpRvUPMLrrToUbIqIfBU.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "REM", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rem/rem-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rem/v2/WnzgHAIoSDyHbRjfsYumpRvUPELqrToUbIqIfBU.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "REM", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rem/rem-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rem/v2/WnzgHAIoSDyHbRjfsYumpRvUPJzqrToUbIqIfBU.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "REM", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rem/rem-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rem/v2/WnzgHAIoSDyHbRjfsYumpRvUPMLqrToUbIqIfBU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "REM", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rem/rem-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rem/v2/WnzgHAIoSDyHbRjfsYumpRvUPPDqrToUbIqIfBU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "REM", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rem/rem-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rem/v2/WnzgHAIoSDyHbRjfsYumpRvUPBztrToUbIqIfBU.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "REM", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rem/rem-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rem/v2/WnzgHAIoSDyHbRjfsYumpRvUPCXtrToUbIqIfBU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "REM", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rem/rem-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rem/v2/WnzgHAIoSDyHbRjfsYumpRvUPELtrToUbIqIfBU.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "REM", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rem/rem-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rem/v2/WnzgHAIoSDyHbRjfsYumpRvUPGvtrToUbIqIfBU.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "REM", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rem/rem-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rem/v2/WnzmHAIoSDytZCogaeLNP7XTKQqpRXgeaKiNbBVWkw.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "REM", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rem/rem-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rem/v2/WnzmHAIoSDytZCogaeLNP7XTKQqpxXkeaKiNbBVWkw.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "REM", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rem/rem-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rem/v2/WnzmHAIoSDytZCogaeLNP7XTKQqpG3keaKiNbBVWkw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "REM", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rem/rem-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rem/v2/WnzmHAIoSDytZCogaeLNP7XTKQqpRXkeaKiNbBVWkw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "REM", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rem/rem-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rem/v2/WnzmHAIoSDytZCogaeLNP7XTKQqpd3keaKiNbBVWkw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "REM", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rem/rem-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rem/v2/WnzmHAIoSDytZCogaeLNP7XTKQqpm34eaKiNbBVWkw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "REM", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rem/rem-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rem/v2/WnzmHAIoSDytZCogaeLNP7XTKQqpon4eaKiNbBVWkw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "REM", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rem/rem-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rem/v2/WnzmHAIoSDytZCogaeLNP7XTKQqpxX4eaKiNbBVWkw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "REM", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rem/rem-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rem/v2/WnzmHAIoSDytZCogaeLNP7XTKQqp7H4eaKiNbBVWkw.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "REM", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rem/rem-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rem/rem.svg" - }, - { - "name": "Racing Sans One", - "fontFamily": "Racing Sans One, system-ui", - "slug": "racing-sans-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/racingsansone/v15/sykr-yRtm7EvTrXNxkv5jfKKyDCwL3rmWpIBtA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Racing Sans One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/racing-sans-one/racing-sans-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/racing-sans-one/racing-sans-one.svg" - }, - { - "name": "Radio Canada", - "fontFamily": "Radio Canada, sans-serif", - "slug": "radio-canada", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nESkQPIJOdSSfOT.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Radio Canada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/radio-canada/radio-canada-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nFMkQPIJOdSSfOT.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Radio Canada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/radio-canada/radio-canada-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nF-kQPIJOdSSfOT.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Radio Canada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/radio-canada/radio-canada-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGSlgPIJOdSSfOT.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Radio Canada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/radio-canada/radio-canada-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGrlgPIJOdSSfOT.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Radio Canada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/radio-canada/radio-canada-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0rWLLuNwTOOTa9k.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Radio Canada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/radio-canada/radio-canada-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0uuLLuNwTOOTa9k.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Radio Canada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/radio-canada/radio-canada-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0tmLLuNwTOOTa9k.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Radio Canada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/radio-canada/radio-canada-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0jWMLuNwTOOTa9k.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Radio Canada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/radio-canada/radio-canada-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0gyMLuNwTOOTa9k.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Radio Canada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/radio-canada/radio-canada-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/radio-canada/radio-canada.svg" - }, - { - "name": "Radley", - "fontFamily": "Radley, serif", - "slug": "radley", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/radley/v22/LYjDdGzinEIjCN19oAlEpVs3VQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Radley", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/radley/radley-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/radley/v22/LYjBdGzinEIjCN1NogNAh14nVcfe.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Radley", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/radley/radley-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/radley/radley.svg" - }, - { - "name": "Rajdhani", - "fontFamily": "Rajdhani, sans-serif", - "slug": "rajdhani", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pasEcOsc-bGkqIw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Rajdhani", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rajdhani/rajdhani-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rajdhani/v15/LDIxapCSOBg7S-QT7q4AOeekWPrP.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rajdhani", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rajdhani/rajdhani-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pb0EMOsc-bGkqIw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Rajdhani", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rajdhani/rajdhani-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pbYF8Osc-bGkqIw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Rajdhani", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rajdhani/rajdhani-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pa8FsOsc-bGkqIw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rajdhani", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rajdhani/rajdhani-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rajdhani/rajdhani.svg" - }, - { - "name": "Rakkas", - "fontFamily": "Rakkas, system-ui", - "slug": "rakkas", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rakkas/v19/Qw3cZQlNHiblL3j_lttPOeMcCw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rakkas", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rakkas/rakkas-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rakkas/rakkas.svg" - }, - { - "name": "Raleway", - "fontFamily": "Raleway, sans-serif", - "slug": "raleway", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvao4CPNLA3JC9c.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Raleway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/raleway/raleway-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtaooCPNLA3JC9c.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Raleway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/raleway/raleway-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVuEooCPNLA3JC9c.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Raleway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/raleway/raleway-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaooCPNLA3JC9c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Raleway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/raleway/raleway-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCPNLA3JC9c.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Raleway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/raleway/raleway-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVsEpYCPNLA3JC9c.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Raleway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/raleway/raleway-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pYCPNLA3JC9c.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Raleway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/raleway/raleway-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtapYCPNLA3JC9c.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Raleway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/raleway/raleway-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtzpYCPNLA3JC9c.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Raleway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/raleway/raleway-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjNPrQVIT9c2c8.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Raleway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/raleway/raleway-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejMPrQVIT9c2c8.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Raleway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/raleway/raleway-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Raleway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/raleway/raleway-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Raleway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/raleway/raleway-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Raleway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/raleway/raleway-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Raleway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/raleway/raleway-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Raleway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/raleway/raleway-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejLPrQVIT9c2c8.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Raleway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/raleway/raleway-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4cHLPrQVIT9c2c8.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Raleway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/raleway/raleway-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/raleway/raleway.svg" - }, - { - "name": "Raleway Dots", - "fontFamily": "Raleway Dots, system-ui", - "slug": "raleway-dots", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ralewaydots/v16/6NUR8FifJg6AfQvzpshgwJ8kyf9Fdty2ew.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Raleway Dots", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/raleway-dots/raleway-dots-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/raleway-dots/raleway-dots.svg" - }, - { - "name": "Ramabhadra", - "fontFamily": "Ramabhadra, sans-serif", - "slug": "ramabhadra", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ramabhadra/v15/EYq2maBOwqRW9P1SQ83LehNGX5uWw3o.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ramabhadra", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ramabhadra/ramabhadra-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ramabhadra/ramabhadra.svg" - }, - { - "name": "Ramaraja", - "fontFamily": "Ramaraja, serif", - "slug": "ramaraja", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ramaraja/v15/SlGTmQearpYAYG1CABIkqnB6aSQU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ramaraja", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ramaraja/ramaraja-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ramaraja/ramaraja.svg" - }, - { - "name": "Rambla", - "fontFamily": "Rambla, sans-serif", - "slug": "rambla", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rambla/v13/snfrs0ip98hx6mr0I7IONthkwQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rambla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rambla/rambla-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rambla/v13/snfps0ip98hx6mrEIbgKFN10wYKa.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Rambla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rambla/rambla-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rambla/v13/snfos0ip98hx6mrMn50qPvN4yJuDYQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rambla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rambla/rambla-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rambla/v13/snfus0ip98hx6mrEIYC2O_l86p6TYS-Y.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Rambla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rambla/rambla-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rambla/rambla.svg" - }, - { - "name": "Rammetto One", - "fontFamily": "Rammetto One, system-ui", - "slug": "rammetto-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rammettoone/v18/LhWiMV3HOfMbMetJG3lQDpp9Mvuciu-_SQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rammetto One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rammetto-one/rammetto-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rammetto-one/rammetto-one.svg" - }, - { - "name": "Rampart One", - "fontFamily": "Rampart One, system-ui", - "slug": "rampart-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rampartone/v9/K2F1fZFGl_JSR1tAWNG9R6qgLS76ZHOM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rampart One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rampart-one/rampart-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rampart-one/rampart-one.svg" - }, - { - "name": "Ranchers", - "fontFamily": "Ranchers, system-ui", - "slug": "ranchers", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ranchers/v17/zrfm0H3Lx-P2Xvs2AoDYDC79XTHv.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ranchers", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ranchers/ranchers-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ranchers/ranchers.svg" - }, - { - "name": "Rancho", - "fontFamily": "Rancho, cursive", - "slug": "rancho", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rancho/v21/46kulbzmXjLaqZRlbWXgd0RY1g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rancho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rancho/rancho-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rancho/rancho.svg" - }, - { - "name": "Ranga", - "fontFamily": "Ranga, system-ui", - "slug": "ranga", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ranga/v21/C8ct4cYisGb28p6CLDwZwmGE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ranga", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ranga/ranga-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ranga/v21/C8cg4cYisGb28qY-AxgR6X2NZAn2.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Ranga", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ranga/ranga-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ranga/ranga.svg" - }, - { - "name": "Rasa", - "fontFamily": "Rasa, serif", - "slug": "rasa", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rasa/v22/xn76YHIn1mWmVKl8ZtAM9NrJfN4YJW41fcvN2KT4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Rasa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rasa/rasa-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rasa/v22/xn76YHIn1mWmVKl8ZtAM9NrJfN5GJW41fcvN2KT4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rasa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rasa/rasa-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rasa/v22/xn76YHIn1mWmVKl8ZtAM9NrJfN50JW41fcvN2KT4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Rasa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rasa/rasa-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rasa/v22/xn76YHIn1mWmVKl8ZtAM9NrJfN6YIm41fcvN2KT4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Rasa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rasa/rasa-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rasa/v22/xn76YHIn1mWmVKl8ZtAM9NrJfN6hIm41fcvN2KT4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rasa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rasa/rasa-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rasa/v22/xn78YHIn1mWmfqBOmQhln0Bne8uOZth2d8_v3bT4Ycc.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Rasa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rasa/rasa-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rasa/v22/xn78YHIn1mWmfqBOmQhln0Bne8uOZoZ2d8_v3bT4Ycc.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Rasa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rasa/rasa-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rasa/v22/xn78YHIn1mWmfqBOmQhln0Bne8uOZrR2d8_v3bT4Ycc.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Rasa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rasa/rasa-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rasa/v22/xn78YHIn1mWmfqBOmQhln0Bne8uOZlhxd8_v3bT4Ycc.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Rasa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rasa/rasa-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rasa/v22/xn78YHIn1mWmfqBOmQhln0Bne8uOZmFxd8_v3bT4Ycc.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Rasa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rasa/rasa-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rasa/rasa.svg" - }, - { - "name": "Rationale", - "fontFamily": "Rationale, sans-serif", - "slug": "rationale", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rationale/v28/9XUnlJ92n0_JFxHIfHcsdlFMzLC2Zw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rationale", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rationale/rationale-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rationale/rationale.svg" - }, - { - "name": "Ravi Prakash", - "fontFamily": "Ravi Prakash, system-ui", - "slug": "ravi-prakash", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/raviprakash/v19/gokpH6fsDkVrF9Bv9X8SOAKHmNZEq6TTFw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ravi Prakash", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ravi-prakash/ravi-prakash-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ravi-prakash/ravi-prakash.svg" - }, - { - "name": "Readex Pro", - "fontFamily": "Readex Pro, sans-serif", - "slug": "readex-pro", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCYUSmgmsglvjkag.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Readex Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/readex-pro/readex-pro-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCv0Smgmsglvjkag.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Readex Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/readex-pro/readex-pro-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTC4USmgmsglvjkag.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Readex Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/readex-pro/readex-pro-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTC00Smgmsglvjkag.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Readex Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/readex-pro/readex-pro-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCP0Omgmsglvjkag.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Readex Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/readex-pro/readex-pro-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCBkOmgmsglvjkag.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Readex Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/readex-pro/readex-pro-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/readex-pro/readex-pro.svg" - }, - { - "name": "Recursive", - "fontFamily": "Recursive, sans-serif", - "slug": "recursive", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadDck018vwxjDJCL.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Recursive", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/recursive/recursive-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCCk018vwxjDJCL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Recursive", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/recursive/recursive-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCwk018vwxjDJCL.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Recursive", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/recursive/recursive-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBclE18vwxjDJCL.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Recursive", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/recursive/recursive-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBllE18vwxjDJCL.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Recursive", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/recursive/recursive-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadAClE18vwxjDJCL.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Recursive", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/recursive/recursive-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadArlE18vwxjDJCL.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Recursive", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/recursive/recursive-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/recursive/recursive.svg" - }, - { - "name": "Red Hat Display", - "fontFamily": "Red Hat Display, sans-serif", - "slug": "red-hat-display", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatdisplay/v19/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbjKWckg5-Xecg3w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Red Hat Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-display/red-hat-display-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatdisplay/v19/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbmyWckg5-Xecg3w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Red Hat Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-display/red-hat-display-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatdisplay/v19/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbl6Wckg5-Xecg3w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Red Hat Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-display/red-hat-display-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatdisplay/v19/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbrKRckg5-Xecg3w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Red Hat Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-display/red-hat-display-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatdisplay/v19/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbouRckg5-Xecg3w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Red Hat Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-display/red-hat-display-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatdisplay/v19/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbuyRckg5-Xecg3w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Red Hat Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-display/red-hat-display-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatdisplay/v19/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbsWRckg5-Xecg3w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Red Hat Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-display/red-hat-display-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatdisplay/v19/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVxAsz_VWZk3zJGg.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Red Hat Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-display/red-hat-display-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatdisplay/v19/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVmgsz_VWZk3zJGg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Red Hat Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-display/red-hat-display-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatdisplay/v19/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVqAsz_VWZk3zJGg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Red Hat Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-display/red-hat-display-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatdisplay/v19/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVRAwz_VWZk3zJGg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Red Hat Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-display/red-hat-display-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatdisplay/v19/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVfQwz_VWZk3zJGg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Red Hat Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-display/red-hat-display-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatdisplay/v19/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVGgwz_VWZk3zJGg.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Red Hat Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-display/red-hat-display-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatdisplay/v19/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVMwwz_VWZk3zJGg.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Red Hat Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-display/red-hat-display-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-display/red-hat-display.svg" - }, - { - "name": "Red Hat Mono", - "fontFamily": "Red Hat Mono, monospace", - "slug": "red-hat-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQQPI-7HNuW4QuKI.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Red Hat Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-mono/red-hat-mono-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQV3I-7HNuW4QuKI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Red Hat Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-mono/red-hat-mono-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQW_I-7HNuW4QuKI.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Red Hat Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-mono/red-hat-mono-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQYPP-7HNuW4QuKI.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Red Hat Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-mono/red-hat-mono-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQbrP-7HNuW4QuKI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Red Hat Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-mono/red-hat-mono-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLTfLHvUwVqKIJuw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Red Hat Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-mono/red-hat-mono-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLE_LHvUwVqKIJuw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Red Hat Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-mono/red-hat-mono-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLIfLHvUwVqKIJuw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Red Hat Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-mono/red-hat-mono-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLzfXHvUwVqKIJuw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Red Hat Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-mono/red-hat-mono-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWL9PXHvUwVqKIJuw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Red Hat Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-mono/red-hat-mono-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-mono/red-hat-mono.svg" - }, - { - "name": "Red Hat Text", - "fontFamily": "Red Hat Text, sans-serif", - "slug": "red-hat-text", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML-ZwVrbacYVFtIY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Red Hat Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-text/red-hat-text-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML7hwVrbacYVFtIY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Red Hat Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-text/red-hat-text-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML4pwVrbacYVFtIY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Red Hat Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-text/red-hat-text-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML2Z3VrbacYVFtIY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Red Hat Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-text/red-hat-text-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML193VrbacYVFtIY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Red Hat Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-text/red-hat-text-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAz4PXQdadApIYv_g.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Red Hat Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-text/red-hat-text-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzvvXQdadApIYv_g.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Red Hat Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-text/red-hat-text-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzjPXQdadApIYv_g.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Red Hat Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-text/red-hat-text-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzYPLQdadApIYv_g.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Red Hat Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-text/red-hat-text-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzWfLQdadApIYv_g.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Red Hat Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-text/red-hat-text-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-hat-text/red-hat-text.svg" - }, - { - "name": "Red Rose", - "fontFamily": "Red Rose, system-ui", - "slug": "red-rose", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redrose/v20/QdVISTYiLBjouPgEUajvsfWwDtc3MH8y8_sDcjSsYUVUjg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Red Rose", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-rose/red-rose-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redrose/v20/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yrfsDcjSsYUVUjg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Red Rose", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-rose/red-rose-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redrose/v20/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yn_sDcjSsYUVUjg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Red Rose", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-rose/red-rose-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redrose/v20/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yc_wDcjSsYUVUjg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Red Rose", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-rose/red-rose-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redrose/v20/QdVISTYiLBjouPgEUajvsfWwDtc3MH8ySvwDcjSsYUVUjg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Red Rose", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-rose/red-rose-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/red-rose/red-rose.svg" - }, - { - "name": "Redacted", - "fontFamily": "Redacted, system-ui", - "slug": "redacted", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redacted/v8/Z9XVDmdRShme2O_7aITe4u2El6GC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Redacted", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/redacted/redacted-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/redacted/redacted.svg" - }, - { - "name": "Redacted Script", - "fontFamily": "Redacted Script, system-ui", - "slug": "redacted-script", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redactedscript/v10/ypvEbXGRglhokR7dcC3d1-R6zmxqHUzVmbI397ldkg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Redacted Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/redacted-script/redacted-script-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redactedscript/v10/ypvBbXGRglhokR7dcC3d1-R6zmxSsWTxkZkr_g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Redacted Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/redacted-script/redacted-script-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redactedscript/v10/ypvEbXGRglhokR7dcC3d1-R6zmxqDUvVmbI397ldkg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Redacted Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/redacted-script/redacted-script-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/redacted-script/redacted-script.svg" - }, - { - "name": "Redressed", - "fontFamily": "Redressed, cursive", - "slug": "redressed", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/redressed/v29/x3dickHUbrmJ7wMy9MsBfPACvy_1BA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Redressed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/redressed/redressed-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/redressed/redressed.svg" - }, - { - "name": "Reem Kufi", - "fontFamily": "Reem Kufi, sans-serif", - "slug": "reem-kufi", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Reem Kufi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/reem-kufi/reem-kufi-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Reem Kufi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/reem-kufi/reem-kufi-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Reem Kufi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/reem-kufi/reem-kufi-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Reem Kufi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/reem-kufi/reem-kufi-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/reem-kufi/reem-kufi.svg" - }, - { - "name": "Reem Kufi Fun", - "fontFamily": "Reem Kufi Fun, sans-serif", - "slug": "reem-kufi-fun", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYj3nCgrvqZzZXq.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Reem Kufi Fun", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/reem-kufi-fun/reem-kufi-fun-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYR3nCgrvqZzZXq.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Reem Kufi Fun", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/reem-kufi-fun/reem-kufi-fun-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChob92XCgrvqZzZXq.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Reem Kufi Fun", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/reem-kufi-fun/reem-kufi-fun-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChobE2XCgrvqZzZXq.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Reem Kufi Fun", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/reem-kufi-fun/reem-kufi-fun-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/reem-kufi-fun/reem-kufi-fun.svg" - }, - { - "name": "Reem Kufi Ink", - "fontFamily": "Reem Kufi Ink, sans-serif", - "slug": "reem-kufi-ink", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/reemkufiink/v9/oPWJ_kJmmu8hCvB9iFumxZSnRj5dQnSX1ko.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Reem Kufi Ink", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/reem-kufi-ink/reem-kufi-ink-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/reem-kufi-ink/reem-kufi-ink.svg" - }, - { - "name": "Reenie Beanie", - "fontFamily": "Reenie Beanie, cursive", - "slug": "reenie-beanie", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/reeniebeanie/v20/z7NSdR76eDkaJKZJFkkjuvWxbP2_qoOgf_w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Reenie Beanie", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/reenie-beanie/reenie-beanie-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/reenie-beanie/reenie-beanie.svg" - }, - { - "name": "Reggae One", - "fontFamily": "Reggae One, system-ui", - "slug": "reggae-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/reggaeone/v15/~CgwKClJlZ2dhZSBPbmUgACoECAEYAQ==.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Reggae One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/reggae-one/reggae-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/reggae-one/reggae-one.svg" - }, - { - "name": "Revalia", - "fontFamily": "Revalia, system-ui", - "slug": "revalia", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/revalia/v22/WwkexPimBE2-4ZPEeVruNIgJSNM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Revalia", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/revalia/revalia-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/revalia/revalia.svg" - }, - { - "name": "Rhodium Libre", - "fontFamily": "Rhodium Libre, serif", - "slug": "rhodium-libre", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rhodiumlibre/v19/1q2AY5adA0tn_ukeHcQHqpx6pETLeo2gm2U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rhodium Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rhodium-libre/rhodium-libre-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rhodium-libre/rhodium-libre.svg" - }, - { - "name": "Ribeye", - "fontFamily": "Ribeye, system-ui", - "slug": "ribeye", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ribeye/v25/L0x8DFMxk1MP9R3RvPCmRSlUig.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ribeye", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ribeye/ribeye-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ribeye/ribeye.svg" - }, - { - "name": "Ribeye Marrow", - "fontFamily": "Ribeye Marrow, system-ui", - "slug": "ribeye-marrow", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ribeyemarrow/v24/GFDsWApshnqMRO2JdtRZ2d0vEAwTVWgKdtw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ribeye Marrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ribeye-marrow/ribeye-marrow-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ribeye-marrow/ribeye-marrow.svg" - }, - { - "name": "Righteous", - "fontFamily": "Righteous, system-ui", - "slug": "righteous", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/righteous/v17/1cXxaUPXBpj2rGoU7C9mj3uEicG01A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Righteous", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/righteous/righteous-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/righteous/righteous.svg" - }, - { - "name": "Risque", - "fontFamily": "Risque, system-ui", - "slug": "risque", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/risque/v22/VdGfAZUfHosahXxoCUYVBJ-T5g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Risque", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/risque/risque-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/risque/risque.svg" - }, - { - "name": "Road Rage", - "fontFamily": "Road Rage, system-ui", - "slug": "road-rage", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/roadrage/v7/6NUU8F2fKAOBKjjr4ekvtMYAwdRZfw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Road Rage", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/road-rage/road-rage-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/road-rage/road-rage.svg" - }, - { - "name": "Roboto", - "fontFamily": "Roboto, sans-serif", - "slug": "roboto", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1MmgWxPKTM1K9nz.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Roboto", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto/roboto-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/roboto/v30/KFOiCnqEu92Fr1Mu51QrIzcXLsnzjYk.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Roboto", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto/roboto-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5vAx05IsDqlA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Roboto", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto/roboto-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjARc9AMX6lJBP.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Roboto", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto/roboto-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Roboto", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto/roboto-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu52xPKTM1K9nz.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Roboto", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto/roboto-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9vAx05IsDqlA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Roboto", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto/roboto-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51S7ABc9AMX6lJBP.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Roboto", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto/roboto-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Roboto", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto/roboto-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBhc9AMX6lJBP.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Roboto", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto/roboto-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtvAx05IsDqlA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Roboto", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto/roboto-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TLBBc9AMX6lJBP.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Roboto", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto/roboto-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto/roboto.svg" - }, - { - "name": "Roboto Condensed", - "fontFamily": "Roboto Condensed, sans-serif", - "slug": "roboto-condensed", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCMSbvtdYyQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Roboto Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-condensed/roboto-condensed-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotocondensed/v25/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYatlYcyRi4A.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Roboto Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-condensed/roboto-condensed-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotocondensed/v25/ieVl2ZhZI2eCN5jzbjEETS9weq8-59WxDCs5cvI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Roboto Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-condensed/roboto-condensed-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotocondensed/v25/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7CAk8YvJEeg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Roboto Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-condensed/roboto-condensed-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCMSbvtdYyQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Roboto Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-condensed/roboto-condensed-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotocondensed/v25/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYatlYcyRi4A.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Roboto Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-condensed/roboto-condensed-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-condensed/roboto-condensed.svg" - }, - { - "name": "Roboto Flex", - "fontFamily": "Roboto Flex, sans-serif", - "slug": "roboto-flex", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoflex/v9/NaN4epOXO_NexZs0b5QrzlOHb8wCikXpYqmZsWI-__OGfttPZktqc2VdZ80KvCLZaPcSBZtOx2MifRuWR28sPJtUMbsFEK6cRrleUx9Xgbm3WLHa_F4Ep4Fm0PN19Ik5Dntczx0wZGzhPlL1YNMYKbv9_1IQXOw7AiUJVXpRJ6cXW4O8TNGoXjC79QRyaLshNDUf3e0O-gn5rrZCu20YNYG0EACUTNK-QKavMlxGIY8dxef0jQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Roboto Flex", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-flex/roboto-flex-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-flex/roboto-flex.svg" - }, - { - "name": "Roboto Mono", - "fontFamily": "Roboto Mono, monospace", - "slug": "roboto-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vuPQ--5Ip2sSQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Roboto Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-mono/roboto-mono-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_XvqPQ--5Ip2sSQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Roboto Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-mono/roboto-mono-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_gPqPQ--5Ip2sSQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Roboto Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-mono/roboto-mono-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPQ--5Ip2sSQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Roboto Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-mono/roboto-mono-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_7PqPQ--5Ip2sSQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Roboto Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-mono/roboto-mono-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_AP2PQ--5Ip2sSQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Roboto Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-mono/roboto-mono-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_Of2PQ--5Ip2sSQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Roboto Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-mono/roboto-mono-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAeW9AJi8SZwt.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Roboto Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-mono/roboto-mono-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrnnAOW9AJi8SZwt.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Roboto Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-mono/roboto-mono-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrk5AOW9AJi8SZwt.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Roboto Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-mono/roboto-mono-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAOW9AJi8SZwt.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Roboto Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-mono/roboto-mono-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlVAOW9AJi8SZwt.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Roboto Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-mono/roboto-mono-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrm5B-W9AJi8SZwt.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Roboto Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-mono/roboto-mono-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrmAB-W9AJi8SZwt.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Roboto Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-mono/roboto-mono-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-mono/roboto-mono.svg" - }, - { - "name": "Roboto Serif", - "fontFamily": "Roboto Serif, serif", - "slug": "roboto-serif", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliosp6d2Af5fR4k.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Roboto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-serif/roboto-serif-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqotp6d2Af5fR4k.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Roboto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-serif/roboto-serif-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElnQtp6d2Af5fR4k.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Roboto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-serif/roboto-serif-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliotp6d2Af5fR4k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Roboto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-serif/roboto-serif-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElhgtp6d2Af5fR4k.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Roboto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-serif/roboto-serif-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElvQqp6d2Af5fR4k.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Roboto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-serif/roboto-serif-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEls0qp6d2Af5fR4k.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Roboto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-serif/roboto-serif-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqoqp6d2Af5fR4k.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Roboto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-serif/roboto-serif-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEloMqp6d2Af5fR4k.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Roboto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-serif/roboto-serif-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-V8BdxaV4nUFw.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Roboto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-serif/roboto-serif-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-R8BdxaV4nUFw.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Roboto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-serif/roboto-serif-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuEeR8BdxaV4nUFw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Roboto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-serif/roboto-serif-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-R8BdxaV4nUFw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Roboto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-serif/roboto-serif-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JufeR8BdxaV4nUFw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Roboto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-serif/roboto-serif-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JukeN8BdxaV4nUFw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Roboto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-serif/roboto-serif-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuqON8BdxaV4nUFw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Roboto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-serif/roboto-serif-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-N8BdxaV4nUFw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Roboto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-serif/roboto-serif-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Ju5uN8BdxaV4nUFw.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Roboto Serif", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-serif/roboto-serif-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-serif/roboto-serif.svg" - }, - { - "name": "Roboto Slab", - "fontFamily": "Roboto Slab, serif", - "slug": "roboto-slab", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojIWWaG5iddG-1A.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Roboto Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-slab/roboto-slab-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDISWaG5iddG-1A.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Roboto Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-slab/roboto-slab-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjo0oSWaG5iddG-1A.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Roboto Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-slab/roboto-slab-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISWaG5iddG-1A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Roboto Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-slab/roboto-slab-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjovoSWaG5iddG-1A.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Roboto Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-slab/roboto-slab-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoUoOWaG5iddG-1A.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Roboto Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-slab/roboto-slab-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OWaG5iddG-1A.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Roboto Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-slab/roboto-slab-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDIOWaG5iddG-1A.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Roboto Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-slab/roboto-slab-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoJYOWaG5iddG-1A.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Roboto Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-slab/roboto-slab-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/roboto-slab/roboto-slab.svg" - }, - { - "name": "Rochester", - "fontFamily": "Rochester, cursive", - "slug": "rochester", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rochester/v22/6ae-4KCqVa4Zy6Fif-Uy31vWNTMwoQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rochester", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rochester/rochester-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rochester/rochester.svg" - }, - { - "name": "Rock 3D", - "fontFamily": "Rock 3D, system-ui", - "slug": "rock-3d", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rock3d/v10/yYLp0hrL0PCo651513SnwRnQyNI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rock 3D", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rock-3d/rock-3d-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rock-3d/rock-3d.svg" - }, - { - "name": "Rock Salt", - "fontFamily": "Rock Salt, cursive", - "slug": "rock-salt", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rocksalt/v22/MwQ0bhv11fWD6QsAVOZbsEk7hbBWrA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rock Salt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rock-salt/rock-salt-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rock-salt/rock-salt.svg" - }, - { - "name": "RocknRoll One", - "fontFamily": "RocknRoll One, sans-serif", - "slug": "rocknroll-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rocknrollone/v10/kmK7ZqspGAfCeUiW6FFlmEC9guVhs7tfUxc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "RocknRoll One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rocknroll-one/rocknroll-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rocknroll-one/rocknroll-one.svg" - }, - { - "name": "Rokkitt", - "fontFamily": "Rokkitt, serif", - "slug": "rokkitt", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rokkitt/v36/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rydpDLE76HvN6n.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Rokkitt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rokkitt/rokkitt-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rokkitt/v36/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pyd5DLE76HvN6n.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Rokkitt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rokkitt/rokkitt-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rokkitt/v36/qFdb35qfgYFjGy5hukqqhw5XeRgdi1qsd5DLE76HvN6n.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Rokkitt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rokkitt/rokkitt-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rokkitt/v36/qFdb35qfgYFjGy5hukqqhw5XeRgdi1ryd5DLE76HvN6n.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rokkitt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rokkitt/rokkitt-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rokkitt/v36/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rAd5DLE76HvN6n.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Rokkitt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rokkitt/rokkitt-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rokkitt/v36/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oscJDLE76HvN6n.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Rokkitt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rokkitt/rokkitt-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rokkitt/v36/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oVcJDLE76HvN6n.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rokkitt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rokkitt/rokkitt-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rokkitt/v36/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pycJDLE76HvN6n.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Rokkitt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rokkitt/rokkitt-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rokkitt/v36/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pbcJDLE76HvN6n.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Rokkitt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rokkitt/rokkitt-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rokkitt/v36/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NHiJGbqluc6nu9E.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Rokkitt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rokkitt/rokkitt-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rokkitt/v36/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NPiIGbqluc6nu9E.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Rokkitt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rokkitt/rokkitt-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rokkitt/v36/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NCaIGbqluc6nu9E.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Rokkitt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rokkitt/rokkitt-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rokkitt/v36/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NHiIGbqluc6nu9E.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Rokkitt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rokkitt/rokkitt-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rokkitt/v36/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NEqIGbqluc6nu9E.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Rokkitt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rokkitt/rokkitt-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rokkitt/v36/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NKaPGbqluc6nu9E.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Rokkitt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rokkitt/rokkitt-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rokkitt/v36/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NJ-PGbqluc6nu9E.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Rokkitt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rokkitt/rokkitt-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rokkitt/v36/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NPiPGbqluc6nu9E.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Rokkitt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rokkitt/rokkitt-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rokkitt/v36/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NNGPGbqluc6nu9E.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Rokkitt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rokkitt/rokkitt-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rokkitt/rokkitt.svg" - }, - { - "name": "Romanesco", - "fontFamily": "Romanesco, cursive", - "slug": "romanesco", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/romanesco/v21/w8gYH2ozQOY7_r_J7mSn3HwLqOqSBg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Romanesco", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/romanesco/romanesco-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/romanesco/romanesco.svg" - }, - { - "name": "Ropa Sans", - "fontFamily": "Ropa Sans, sans-serif", - "slug": "ropa-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ropasans/v15/EYqxmaNOzLlWtsZSScyKWjloU5KP2g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ropa Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ropa-sans/ropa-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ropasans/v15/EYq3maNOzLlWtsZSScy6WDNscZef2mNE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Ropa Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ropa-sans/ropa-sans-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ropa-sans/ropa-sans.svg" - }, - { - "name": "Rosario", - "fontFamily": "Rosario, sans-serif", - "slug": "rosario", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM69GCWczd-YnOzUD.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Rosario", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rosario/rosario-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68YCWczd-YnOzUD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rosario", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rosario/rosario-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68qCWczd-YnOzUD.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Rosario", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rosario/rosario-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6_GDmczd-YnOzUD.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Rosario", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rosario/rosario-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6__Dmczd-YnOzUD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rosario", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rosario/rosario-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQStFwfeIFPiUDn08.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Rosario", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rosario/rosario-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSo9wfeIFPiUDn08.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Rosario", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rosario/rosario-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSr1wfeIFPiUDn08.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Rosario", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rosario/rosario-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSlF3feIFPiUDn08.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Rosario", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rosario/rosario-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSmh3feIFPiUDn08.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Rosario", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rosario/rosario-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rosario/rosario.svg" - }, - { - "name": "Rosarivo", - "fontFamily": "Rosarivo, serif", - "slug": "rosarivo", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rosarivo/v22/PlI-Fl2lO6N9f8HaNAeC2nhMnNy5.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rosarivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rosarivo/rosarivo-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rosarivo/v22/PlI4Fl2lO6N9f8HaNDeA0Hxumcy5ZX8.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Rosarivo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rosarivo/rosarivo-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rosarivo/rosarivo.svg" - }, - { - "name": "Rouge Script", - "fontFamily": "Rouge Script, cursive", - "slug": "rouge-script", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rougescript/v18/LYjFdGbiklMoCIQOw1Ep3S4PVPXbUJWq9g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rouge Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rouge-script/rouge-script-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rouge-script/rouge-script.svg" - }, - { - "name": "Rowdies", - "fontFamily": "Rowdies, system-ui", - "slug": "rowdies", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rowdies/v17/ptRMTieMYPNBAK219hth5O7yKQNute8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Rowdies", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rowdies/rowdies-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rowdies/v17/ptRJTieMYPNBAK21zrdJwObZNQo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rowdies", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rowdies/rowdies-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rowdies/v17/ptRMTieMYPNBAK219gtm5O7yKQNute8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rowdies", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rowdies/rowdies-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rowdies/rowdies.svg" - }, - { - "name": "Rozha One", - "fontFamily": "Rozha One, serif", - "slug": "rozha-one", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rozhaone/v15/AlZy_zVFtYP12Zncg2khdXf4XB0Tow.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rozha One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rozha-one/rozha-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rozha-one/rozha-one.svg" - }, - { - "name": "Rubik", - "fontFamily": "Rubik, sans-serif", - "slug": "rubik", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-WYi1UE80V4bVkA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Rubik", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik/rubik-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4i1UE80V4bVkA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik/rubik-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-NYi1UE80V4bVkA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Rubik", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik/rubik-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-2Y-1UE80V4bVkA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Rubik", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik/rubik-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-4I-1UE80V4bVkA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rubik", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik/rubik-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-h4-1UE80V4bVkA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Rubik", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik/rubik-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-ro-1UE80V4bVkA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Rubik", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik/rubik-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubik/v28/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8sDE0UwdYPFkJ1O.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Rubik", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik/rubik-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubik/v28/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tdE0UwdYPFkJ1O.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Rubik", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik/rubik-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubik/v28/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tvE0UwdYPFkJ1O.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Rubik", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik/rubik-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubik/v28/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8uDFEUwdYPFkJ1O.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Rubik", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik/rubik-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubik/v28/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8u6FEUwdYPFkJ1O.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Rubik", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik/rubik-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubik/v28/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8vdFEUwdYPFkJ1O.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Rubik", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik/rubik-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubik/v28/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8v0FEUwdYPFkJ1O.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Rubik", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik/rubik-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik/rubik.svg" - }, - { - "name": "Rubik 80s Fade", - "fontFamily": "Rubik 80s Fade, system-ui", - "slug": "rubik-80s-fade", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubik80sfade/v2/U9MF6dW37nLSmnwZXyoV-uPXUhHwkbL8IHcK.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik 80s Fade", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-80s-fade/rubik-80s-fade-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-80s-fade/rubik-80s-fade.svg" - }, - { - "name": "Rubik Beastly", - "fontFamily": "Rubik Beastly, system-ui", - "slug": "rubik-beastly", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubikbeastly/v10/0QImMXRd5oOmSC2ZQ7o9653X07z8_ApHqqk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Beastly", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-beastly/rubik-beastly-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-beastly/rubik-beastly.svg" - }, - { - "name": "Rubik Bubbles", - "fontFamily": "Rubik Bubbles, system-ui", - "slug": "rubik-bubbles", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubikbubbles/v3/JIA1UVdwbHFJtwA7Us1BPFbRNTENfDxyRXI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Bubbles", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-bubbles/rubik-bubbles-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-bubbles/rubik-bubbles.svg" - }, - { - "name": "Rubik Burned", - "fontFamily": "Rubik Burned, system-ui", - "slug": "rubik-burned", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubikburned/v1/Jqzk5TmOVOqQHihKqPpscqniHQuaCY5ZSg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Burned", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-burned/rubik-burned-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-burned/rubik-burned.svg" - }, - { - "name": "Rubik Dirt", - "fontFamily": "Rubik Dirt, system-ui", - "slug": "rubik-dirt", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubikdirt/v2/DtVmJxC7WLEj1uIXEWAdulwm6gDXvwE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Dirt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-dirt/rubik-dirt-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-dirt/rubik-dirt.svg" - }, - { - "name": "Rubik Distressed", - "fontFamily": "Rubik Distressed, system-ui", - "slug": "rubik-distressed", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubikdistressed/v1/GFDxWBdsmnqAVqjtUsZf2dcrQ2ldcWAhatVBaGM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Distressed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-distressed/rubik-distressed-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-distressed/rubik-distressed.svg" - }, - { - "name": "Rubik Gemstones", - "fontFamily": "Rubik Gemstones, system-ui", - "slug": "rubik-gemstones", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubikgemstones/v1/zrf90HrL0-_8Xb4DFM2rUkWbOVrOiCnGqi1GMw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Gemstones", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-gemstones/rubik-gemstones-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-gemstones/rubik-gemstones.svg" - }, - { - "name": "Rubik Glitch", - "fontFamily": "Rubik Glitch, system-ui", - "slug": "rubik-glitch", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubikglitch/v2/qkBSXv8b_srFRYQVYrDKh9ZvmC7HONiSFQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Glitch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-glitch/rubik-glitch-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-glitch/rubik-glitch.svg" - }, - { - "name": "Rubik Iso", - "fontFamily": "Rubik Iso, system-ui", - "slug": "rubik-iso", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubikiso/v2/x3dickHUfr-S4VAI4sABfPACvy_1BA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Iso", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-iso/rubik-iso-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-iso/rubik-iso.svg" - }, - { - "name": "Rubik Marker Hatch", - "fontFamily": "Rubik Marker Hatch, system-ui", - "slug": "rubik-marker-hatch", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubikmarkerhatch/v1/QldTNSFQsh0B_bFXXWv6LAt-jswapJHQDL4iw0H6zw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Marker Hatch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-marker-hatch/rubik-marker-hatch-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-marker-hatch/rubik-marker-hatch.svg" - }, - { - "name": "Rubik Maze", - "fontFamily": "Rubik Maze, system-ui", - "slug": "rubik-maze", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubikmaze/v2/xMQRuF9ZVa2ftiJEavXSAX7inS-bxV4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Maze", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-maze/rubik-maze-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-maze/rubik-maze.svg" - }, - { - "name": "Rubik Microbe", - "fontFamily": "Rubik Microbe, system-ui", - "slug": "rubik-microbe", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubikmicrobe/v2/UqyWK8oPP3hjw6ANS9rM3PsZcs8aaKgiauE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Microbe", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-microbe/rubik-microbe-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-microbe/rubik-microbe.svg" - }, - { - "name": "Rubik Mono One", - "fontFamily": "Rubik Mono One, sans-serif", - "slug": "rubik-mono-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubikmonoone/v18/UqyJK8kPP3hjw6ANTdfRk9YSN-8wRqQrc_j9.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Mono One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-mono-one/rubik-mono-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-mono-one/rubik-mono-one.svg" - }, - { - "name": "Rubik Moonrocks", - "fontFamily": "Rubik Moonrocks, system-ui", - "slug": "rubik-moonrocks", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubikmoonrocks/v5/845ANMAmAI2VUZMLu_W0M7HqlDHnXcD7JGy1Sw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Moonrocks", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-moonrocks/rubik-moonrocks-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-moonrocks/rubik-moonrocks.svg" - }, - { - "name": "Rubik Pixels", - "fontFamily": "Rubik Pixels, system-ui", - "slug": "rubik-pixels", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubikpixels/v2/SlGXmQOaupkIeSx4CEpB7AdSaBYRagrQrA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Pixels", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-pixels/rubik-pixels-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-pixels/rubik-pixels.svg" - }, - { - "name": "Rubik Puddles", - "fontFamily": "Rubik Puddles, system-ui", - "slug": "rubik-puddles", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubikpuddles/v2/1Ptog8bYX_qGnkLkrU5MJsQcJfC0wVMT-aE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Puddles", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-puddles/rubik-puddles-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-puddles/rubik-puddles.svg" - }, - { - "name": "Rubik Spray Paint", - "fontFamily": "Rubik Spray Paint, system-ui", - "slug": "rubik-spray-paint", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubikspraypaint/v1/WnzhHBAoeBPUDTB4EWR82y6EXWPH-Ro-QoaBZQxP.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Spray Paint", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-spray-paint/rubik-spray-paint-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-spray-paint/rubik-spray-paint.svg" - }, - { - "name": "Rubik Storm", - "fontFamily": "Rubik Storm, system-ui", - "slug": "rubik-storm", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubikstorm/v1/eLGYP-_uPgO5Ag7ju9JaouL9T2Xh9NQk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Storm", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-storm/rubik-storm-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-storm/rubik-storm.svg" - }, - { - "name": "Rubik Vinyl", - "fontFamily": "Rubik Vinyl, system-ui", - "slug": "rubik-vinyl", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubikvinyl/v1/iJWABXKIfDnIV4mQ5BfjvUXexox2ztOU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Vinyl", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-vinyl/rubik-vinyl-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-vinyl/rubik-vinyl.svg" - }, - { - "name": "Rubik Wet Paint", - "fontFamily": "Rubik Wet Paint, system-ui", - "slug": "rubik-wet-paint", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rubikwetpaint/v2/HTx0L20uMDGHgdULcpTF3Oe4d_-F-zz313DuvQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Wet Paint", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-wet-paint/rubik-wet-paint-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rubik-wet-paint/rubik-wet-paint.svg" - }, - { - "name": "Ruda", - "fontFamily": "Ruda, sans-serif", - "slug": "ruda", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ruda/v28/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJFsi_-2KiSGg-H.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ruda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ruda/ruda-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ruda/v28/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJ3si_-2KiSGg-H.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Ruda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ruda/ruda-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ruda/v28/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKbtS_-2KiSGg-H.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Ruda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ruda/ruda-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ruda/v28/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKitS_-2KiSGg-H.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Ruda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ruda/ruda-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ruda/v28/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLFtS_-2KiSGg-H.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Ruda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ruda/ruda-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ruda/v28/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLstS_-2KiSGg-H.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Ruda", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ruda/ruda-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ruda/ruda.svg" - }, - { - "name": "Rufina", - "fontFamily": "Rufina, serif", - "slug": "rufina", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rufina/v15/Yq6V-LyURyLy-aKyoxRktOdClg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rufina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rufina/rufina-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rufina/v15/Yq6W-LyURyLy-aKKHztAvMxenxE0SA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rufina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rufina/rufina-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rufina/rufina.svg" - }, - { - "name": "Ruge Boogie", - "fontFamily": "Ruge Boogie, cursive", - "slug": "ruge-boogie", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rugeboogie/v28/JIA3UVFwbHRF_GIWSMhKNROiPzUveSxy.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ruge Boogie", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ruge-boogie/ruge-boogie-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ruge-boogie/ruge-boogie.svg" - }, - { - "name": "Ruluko", - "fontFamily": "Ruluko, sans-serif", - "slug": "ruluko", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ruluko/v21/xMQVuFNZVaODtm0pC6WzKX_QmA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ruluko", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ruluko/ruluko-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ruluko/ruluko.svg" - }, - { - "name": "Rum Raisin", - "fontFamily": "Rum Raisin, sans-serif", - "slug": "rum-raisin", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rumraisin/v22/nwpRtKu3Ih8D5avB4h2uJ3-IywA7eMM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rum Raisin", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rum-raisin/rum-raisin-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rum-raisin/rum-raisin.svg" - }, - { - "name": "Ruslan Display", - "fontFamily": "Ruslan Display, system-ui", - "slug": "ruslan-display", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ruslandisplay/v24/Gw6jwczl81XcIZuckK_e3UpfdzxrldyFvm1n.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ruslan Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ruslan-display/ruslan-display-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ruslan-display/ruslan-display.svg" - }, - { - "name": "Russo One", - "fontFamily": "Russo One, sans-serif", - "slug": "russo-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/russoone/v16/Z9XUDmZRWg6M1LvRYsH-yMOInrib9Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Russo One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/russo-one/russo-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/russo-one/russo-one.svg" - }, - { - "name": "Ruthie", - "fontFamily": "Ruthie, cursive", - "slug": "ruthie", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ruthie/v26/gokvH63sGkdqXuU9lD53Q2u_mQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ruthie", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ruthie/ruthie-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ruthie/ruthie.svg" - }, - { - "name": "Ruwudu", - "fontFamily": "Ruwudu, serif", - "slug": "ruwudu", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ruwudu/v4/syky-y1tj6UzRKfNlQCT9tPdpw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ruwudu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ruwudu/ruwudu-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ruwudu/v4/sykx-y1tj6UzRKf1YSm3_vjBrlSILg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Ruwudu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ruwudu/ruwudu-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ruwudu/v4/sykx-y1tj6UzRKf1TS63_vjBrlSILg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Ruwudu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ruwudu/ruwudu-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ruwudu/v4/sykx-y1tj6UzRKf1KS-3_vjBrlSILg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Ruwudu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ruwudu/ruwudu-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ruwudu/ruwudu.svg" - }, - { - "name": "Rye", - "fontFamily": "Rye, system-ui", - "slug": "rye", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/rye/v15/r05XGLJT86YDFpTsXOqx4w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rye", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rye/rye-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/rye/rye.svg" - }, - { - "name": "STIX Two Text", - "fontFamily": "STIX Two Text, serif", - "slug": "stix-two-text", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yihg2SOYWxFMN1WD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "STIX Two Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stix-two-text/stix-two-text-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YihS2SOYWxFMN1WD.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "STIX Two Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stix-two-text/stix-two-text-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yii-3iOYWxFMN1WD.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "STIX Two Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stix-two-text/stix-two-text-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YiiH3iOYWxFMN1WD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "STIX Two Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stix-two-text/stix-two-text-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omsvbURVuMkWDmSo.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "STIX Two Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stix-two-text/stix-two-text-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omvnbURVuMkWDmSo.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "STIX Two Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stix-two-text/stix-two-text-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omhXcURVuMkWDmSo.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "STIX Two Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stix-two-text/stix-two-text-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omizcURVuMkWDmSo.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "STIX Two Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stix-two-text/stix-two-text-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stix-two-text/stix-two-text.svg" - }, - { - "name": "Sacramento", - "fontFamily": "Sacramento, cursive", - "slug": "sacramento", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sacramento/v15/buEzpo6gcdjy0EiZMBUG0CoV_NxLeiw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sacramento", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sacramento/sacramento-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sacramento/sacramento.svg" - }, - { - "name": "Sahitya", - "fontFamily": "Sahitya, serif", - "slug": "sahitya", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sahitya/v17/6qLAKZkOuhnuqlJAaScFPywEDnI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sahitya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sahitya/sahitya-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sahitya/v17/6qLFKZkOuhnuqlJAUZsqGyQvEnvSexI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sahitya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sahitya/sahitya-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sahitya/sahitya.svg" - }, - { - "name": "Sail", - "fontFamily": "Sail, system-ui", - "slug": "sail", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sail/v16/DPEjYwiBxwYJFBTDADYAbvw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sail", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sail/sail-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sail/sail.svg" - }, - { - "name": "Saira", - "fontFamily": "Saira, sans-serif", - "slug": "saira", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/saira/v19/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rDosg7lwYmUVY.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Saira", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira/saira-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/saira/v19/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rCosg7lwYmUVY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Saira", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira/saira-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/saira/v19/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7wTCosg7lwYmUVY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Saira", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira/saira-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/saira/v19/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rCosg7lwYmUVY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Saira", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira/saira-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/saira/v19/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA72jCosg7lwYmUVY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Saira", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira/saira-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/saira/v19/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA74TFosg7lwYmUVY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Saira", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira/saira-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/saira/v19/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA773Fosg7lwYmUVY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Saira", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira/saira-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/saira/v19/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rFosg7lwYmUVY.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Saira", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira/saira-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/saira/v19/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7_PFosg7lwYmUVY.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Saira", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira/saira-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/saira/v19/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSooxkyQjQVYmxA.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Saira", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira/saira-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/saira/v19/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByosxkyQjQVYmxA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Saira", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira/saira-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/saira/v19/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBFIsxkyQjQVYmxA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Saira", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira/saira-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/saira/v19/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSosxkyQjQVYmxA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Saira", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira/saira-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/saira/v19/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBeIsxkyQjQVYmxA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Saira", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira/saira-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/saira/v19/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBlIwxkyQjQVYmxA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Saira", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira/saira-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/saira/v19/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBrYwxkyQjQVYmxA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Saira", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira/saira-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/saira/v19/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByowxkyQjQVYmxA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Saira", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira/saira-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/saira/v19/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKB44wxkyQjQVYmxA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Saira", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira/saira-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira/saira.svg" - }, - { - "name": "Saira Condensed", - "fontFamily": "Saira Condensed, sans-serif", - "slug": "saira-condensed", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairacondensed/v11/EJRMQgErUN8XuHNEtX81i9TmEkrnwetA2omSrzS8.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Saira Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-condensed/saira-condensed-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnbcpg8Keepi2lHw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Saira Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-condensed/saira-condensed-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnCclg8Keepi2lHw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Saira Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-condensed/saira-condensed-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairacondensed/v11/EJROQgErUN8XuHNEtX81i9TmEkrfpeFE-IyCrw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Saira Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-condensed/saira-condensed-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnUchg8Keepi2lHw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Saira Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-condensed/saira-condensed-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnfc9g8Keepi2lHw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Saira Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-condensed/saira-condensed-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5g8Keepi2lHw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Saira Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-condensed/saira-condensed-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1g8Keepi2lHw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Saira Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-condensed/saira-condensed-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxg8Keepi2lHw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Saira Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-condensed/saira-condensed-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-condensed/saira-condensed.svg" - }, - { - "name": "Saira Extra Condensed", - "fontFamily": "Saira Extra Condensed, sans-serif", - "slug": "saira-extra-condensed", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairaextracondensed/v13/-nFsOHYr-vcC7h8MklGBkrvmUG9rbpkisrTri0jx9i5ss3a3.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-extra-condensed/saira-extra-condensed-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairaextracondensed/v13/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrJ2nR3ABgum-uoQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-extra-condensed/saira-extra-condensed-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairaextracondensed/v13/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrQ2rR3ABgum-uoQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-extra-condensed/saira-extra-condensed-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairaextracondensed/v13/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT70L11Ct8sw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-extra-condensed/saira-extra-condensed-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairaextracondensed/v13/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrG2vR3ABgum-uoQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-extra-condensed/saira-extra-condensed-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairaextracondensed/v13/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrN2zR3ABgum-uoQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-extra-condensed/saira-extra-condensed-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairaextracondensed/v13/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrU23R3ABgum-uoQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-extra-condensed/saira-extra-condensed-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairaextracondensed/v13/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrT27R3ABgum-uoQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-extra-condensed/saira-extra-condensed-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairaextracondensed/v13/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTra2_R3ABgum-uoQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-extra-condensed/saira-extra-condensed-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-extra-condensed/saira-extra-condensed.svg" - }, - { - "name": "Saira Semi Condensed", - "fontFamily": "Saira Semi Condensed, sans-serif", - "slug": "saira-semi-condensed", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairasemicondensed/v13/U9MN6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXdvaOM8rXT-8V8.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-semi-condensed/saira-semi-condensed-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairasemicondensed/v13/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfDScMWg3j36Ebz.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-semi-condensed/saira-semi-condensed-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairasemicondensed/v13/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXenSsMWg3j36Ebz.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-semi-condensed/saira-semi-condensed-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairasemicondensed/v13/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8LYuceqGT-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-semi-condensed/saira-semi-condensed-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairasemicondensed/v13/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXf_S8MWg3j36Ebz.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-semi-condensed/saira-semi-condensed-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairasemicondensed/v13/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfTTMMWg3j36Ebz.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-semi-condensed/saira-semi-condensed-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairasemicondensed/v13/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXe3TcMWg3j36Ebz.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-semi-condensed/saira-semi-condensed-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairasemicondensed/v13/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXerTsMWg3j36Ebz.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-semi-condensed/saira-semi-condensed-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairasemicondensed/v13/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXePT8MWg3j36Ebz.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-semi-condensed/saira-semi-condensed-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-semi-condensed/saira-semi-condensed.svg" - }, - { - "name": "Saira Stencil One", - "fontFamily": "Saira Stencil One, system-ui", - "slug": "saira-stencil-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sairastencilone/v16/SLXSc03I6HkvZGJ1GvvipLoYSTEL9AsMawif2YQ2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Saira Stencil One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-stencil-one/saira-stencil-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/saira-stencil-one/saira-stencil-one.svg" - }, - { - "name": "Salsa", - "fontFamily": "Salsa, system-ui", - "slug": "salsa", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/salsa/v21/gNMKW3FiRpKj-imY8ncKEZez.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Salsa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/salsa/salsa-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/salsa/salsa.svg" - }, - { - "name": "Sanchez", - "fontFamily": "Sanchez, serif", - "slug": "sanchez", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sanchez/v15/Ycm2sZJORluHnXbITm5b_BwE1l0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sanchez", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sanchez/sanchez-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sanchez/v15/Ycm0sZJORluHnXbIfmxR-D4Bxl3gkw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sanchez", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sanchez/sanchez-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sanchez/sanchez.svg" - }, - { - "name": "Sancreek", - "fontFamily": "Sancreek, system-ui", - "slug": "sancreek", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sancreek/v25/pxiHypAnsdxUm159X7D-XV9NEe-K.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sancreek", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sancreek/sancreek-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sancreek/sancreek.svg" - }, - { - "name": "Sansita", - "fontFamily": "Sansita, sans-serif", - "slug": "sansita", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sansita/v11/QldONTRRphEb_-V7HBm7TXFf3qw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sansita", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sansita/sansita-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sansita/v11/QldMNTRRphEb_-V7LBuxSVNazqx2xg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sansita", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sansita/sansita-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JKWUaXl0wqVv3_g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sansita", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sansita/sansita-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJ9Xx-xodqz_joDQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Sansita", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sansita/sansita-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JLmXaXl0wqVv3_g.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sansita", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sansita/sansita-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJ6X9-xodqz_joDQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Sansita", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sansita/sansita-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JJ2WaXl0wqVv3_g.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Sansita", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sansita/sansita-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJzX5-xodqz_joDQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Sansita", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sansita/sansita-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sansita/sansita.svg" - }, - { - "name": "Sansita Swashed", - "fontFamily": "Sansita Swashed, system-ui", - "slug": "sansita-swashed", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW-ppbToVehmEa4Q.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sansita Swashed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sansita-swashed/sansita-swashed-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW7RpbToVehmEa4Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sansita Swashed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sansita-swashed/sansita-swashed-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW4ZpbToVehmEa4Q.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sansita Swashed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sansita-swashed/sansita-swashed-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW2pubToVehmEa4Q.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sansita Swashed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sansita-swashed/sansita-swashed-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW1NubToVehmEa4Q.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sansita Swashed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sansita-swashed/sansita-swashed-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWzRubToVehmEa4Q.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sansita Swashed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sansita-swashed/sansita-swashed-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWx1ubToVehmEa4Q.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Sansita Swashed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sansita-swashed/sansita-swashed-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sansita-swashed/sansita-swashed.svg" - }, - { - "name": "Sarabun", - "fontFamily": "Sarabun, sans-serif", - "slug": "sarabun", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarabun/v15/DtVhJx26TKEr37c9YHZJmnYI5gnOpg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Sarabun", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarabun/sarabun-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarabun/v15/DtVnJx26TKEr37c9aBBx_nwMxAzephhN.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Sarabun", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarabun/sarabun-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarabun/v15/DtVmJx26TKEr37c9YNpoulwm6gDXvwE.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Sarabun", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarabun/sarabun-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarabun/v15/DtVkJx26TKEr37c9aBBxUl0s7iLSrwFUlw.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Sarabun", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarabun/sarabun-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarabun/v15/DtVmJx26TKEr37c9YL5rulwm6gDXvwE.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sarabun", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarabun/sarabun-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarabun/v15/DtVkJx26TKEr37c9aBBxNl4s7iLSrwFUlw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Sarabun", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarabun/sarabun-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarabun/v15/DtVjJx26TKEr37c9WBJDnlQN9gk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sarabun", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarabun/sarabun-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarabun/v15/DtVhJx26TKEr37c9aBBJmnYI5gnOpg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sarabun", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarabun/sarabun-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarabun/v15/DtVmJx26TKEr37c9YOZqulwm6gDXvwE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sarabun", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarabun/sarabun-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarabun/v15/DtVkJx26TKEr37c9aBBxbl8s7iLSrwFUlw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Sarabun", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarabun/sarabun-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarabun/v15/DtVmJx26TKEr37c9YMptulwm6gDXvwE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sarabun", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarabun/sarabun-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarabun/v15/DtVkJx26TKEr37c9aBBxQlgs7iLSrwFUlw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Sarabun", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarabun/sarabun-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarabun/v15/DtVmJx26TKEr37c9YK5sulwm6gDXvwE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sarabun", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarabun/sarabun-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarabun/v15/DtVkJx26TKEr37c9aBBxJlks7iLSrwFUlw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Sarabun", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarabun/sarabun-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarabun/v15/DtVmJx26TKEr37c9YLJvulwm6gDXvwE.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sarabun", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarabun/sarabun-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarabun/v15/DtVkJx26TKEr37c9aBBxOlos7iLSrwFUlw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Sarabun", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarabun/sarabun-800-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarabun/sarabun.svg" - }, - { - "name": "Sarala", - "fontFamily": "Sarala, sans-serif", - "slug": "sarala", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarala/v12/uK_y4riEZv4o1w9RCh0TMv6EXw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sarala", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarala/sarala-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarala/v12/uK_x4riEZv4o1w9ptjI3OtWYVkMpXA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sarala", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarala/sarala-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarala/sarala.svg" - }, - { - "name": "Sarina", - "fontFamily": "Sarina, system-ui", - "slug": "sarina", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarina/v23/-F6wfjF3ITQwasLhLkDUriBQxw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sarina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarina/sarina-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarina/sarina.svg" - }, - { - "name": "Sarpanch", - "fontFamily": "Sarpanch, sans-serif", - "slug": "sarpanch", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarpanch/v13/hESy6Xt4NCpRuk6Pzh2ARIrX_20n.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sarpanch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarpanch/sarpanch-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarpanch/v13/hES16Xt4NCpRuk6PziV0ba7f1HEuRHkM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sarpanch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarpanch/sarpanch-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarpanch/v13/hES16Xt4NCpRuk6PziVYaq7f1HEuRHkM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sarpanch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarpanch/sarpanch-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarpanch/v13/hES16Xt4NCpRuk6PziU8a67f1HEuRHkM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sarpanch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarpanch/sarpanch-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarpanch/v13/hES16Xt4NCpRuk6PziUgaK7f1HEuRHkM.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sarpanch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarpanch/sarpanch-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sarpanch/v13/hES16Xt4NCpRuk6PziUEaa7f1HEuRHkM.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Sarpanch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarpanch/sarpanch-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sarpanch/sarpanch.svg" - }, - { - "name": "Sassy Frass", - "fontFamily": "Sassy Frass, cursive", - "slug": "sassy-frass", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sassyfrass/v7/LhWhMVrGOe0FLb97BjhsE99dGNWQg_am.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sassy Frass", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sassy-frass/sassy-frass-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sassy-frass/sassy-frass.svg" - }, - { - "name": "Satisfy", - "fontFamily": "Satisfy, cursive", - "slug": "satisfy", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/satisfy/v21/rP2Hp2yn6lkG50LoOZSCHBeHFl0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Satisfy", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/satisfy/satisfy-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/satisfy/satisfy.svg" - }, - { - "name": "Sawarabi Gothic", - "fontFamily": "Sawarabi Gothic, sans-serif", - "slug": "sawarabi-gothic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sawarabigothic/v12/x3d4ckfVaqqa-BEj-I9mE65u3k3NBSk3E2YljQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sawarabi Gothic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sawarabi-gothic/sawarabi-gothic-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sawarabi-gothic/sawarabi-gothic.svg" - }, - { - "name": "Sawarabi Mincho", - "fontFamily": "Sawarabi Mincho, serif", - "slug": "sawarabi-mincho", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sawarabimincho/v17/8QIRdiDaitzr7brc8ahpxt6GcIJTLahP46UDUw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sawarabi Mincho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sawarabi-mincho/sawarabi-mincho-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sawarabi-mincho/sawarabi-mincho.svg" - }, - { - "name": "Scada", - "fontFamily": "Scada, sans-serif", - "slug": "scada", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/scada/v15/RLpxK5Pv5qumeWJoxzUobkvv.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Scada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/scada/scada-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/scada/v15/RLp_K5Pv5qumeVJqzTEKa1vvffg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Scada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/scada/scada-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/scada/v15/RLp8K5Pv5qumeVrU6BEgRVfmZOE5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Scada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/scada/scada-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/scada/v15/RLp6K5Pv5qumeVJq9Y0lT1PEYfE5p6g.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Scada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/scada/scada-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/scada/scada.svg" - }, - { - "name": "Scheherazade New", - "fontFamily": "Scheherazade New, serif", - "slug": "scheherazade-new", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/scheherazadenew/v15/4UaZrFhTvxVnHDvUkUiHg8jprP4DCwNsOl4p5Is.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Scheherazade New", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/scheherazade-new/scheherazade-new-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/scheherazadenew/v15/4UaerFhTvxVnHDvUkUiHg8jprP4DM_dFHlYC-IKnoSE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Scheherazade New", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/scheherazade-new/scheherazade-new-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/scheherazadenew/v15/4UaerFhTvxVnHDvUkUiHg8jprP4DM9tCHlYC-IKnoSE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Scheherazade New", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/scheherazade-new/scheherazade-new-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/scheherazadenew/v15/4UaerFhTvxVnHDvUkUiHg8jprP4DM79DHlYC-IKnoSE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Scheherazade New", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/scheherazade-new/scheherazade-new-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/scheherazade-new/scheherazade-new.svg" - }, - { - "name": "Schibsted Grotesk", - "fontFamily": "Schibsted Grotesk, sans-serif", - "slug": "schibsted-grotesk", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNIsEAT8JuXFGVOQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Schibsted Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/schibsted-grotesk/schibsted-grotesk-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNEMEAT8JuXFGVOQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Schibsted Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/schibsted-grotesk/schibsted-grotesk-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMN_MYAT8JuXFGVOQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Schibsted Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/schibsted-grotesk/schibsted-grotesk-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNxcYAT8JuXFGVOQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Schibsted Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/schibsted-grotesk/schibsted-grotesk-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNosYAT8JuXFGVOQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Schibsted Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/schibsted-grotesk/schibsted-grotesk-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNi8YAT8JuXFGVOQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Schibsted Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/schibsted-grotesk/schibsted-grotesk-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oLoDMhqflSFOTXs.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Schibsted Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/schibsted-grotesk/schibsted-grotesk-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oLaDMhqflSFOTXs.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Schibsted Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/schibsted-grotesk/schibsted-grotesk-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oI2C8hqflSFOTXs.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Schibsted Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/schibsted-grotesk/schibsted-grotesk-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oIPC8hqflSFOTXs.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Schibsted Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/schibsted-grotesk/schibsted-grotesk-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oJoC8hqflSFOTXs.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Schibsted Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/schibsted-grotesk/schibsted-grotesk-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oJBC8hqflSFOTXs.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Schibsted Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/schibsted-grotesk/schibsted-grotesk-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/schibsted-grotesk/schibsted-grotesk.svg" - }, - { - "name": "Schoolbell", - "fontFamily": "Schoolbell, cursive", - "slug": "schoolbell", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/schoolbell/v18/92zQtBZWOrcgoe-fgnJIVxIQ6mRqfiQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Schoolbell", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/schoolbell/schoolbell-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/schoolbell/schoolbell.svg" - }, - { - "name": "Scope One", - "fontFamily": "Scope One, serif", - "slug": "scope-one", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/scopeone/v14/WBLnrEXKYFlGHrOKmGD1W0_MJMGxiQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Scope One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/scope-one/scope-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/scope-one/scope-one.svg" - }, - { - "name": "Seaweed Script", - "fontFamily": "Seaweed Script, system-ui", - "slug": "seaweed-script", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/seaweedscript/v15/bx6cNx6Tne2pxOATYE8C_Rsoe0WJ-KcGVbLW.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Seaweed Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/seaweed-script/seaweed-script-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/seaweed-script/seaweed-script.svg" - }, - { - "name": "Secular One", - "fontFamily": "Secular One, sans-serif", - "slug": "secular-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/secularone/v12/8QINdiTajsj_87rMuMdKypDlMul7LJpK.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Secular One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/secular-one/secular-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/secular-one/secular-one.svg" - }, - { - "name": "Sedgwick Ave", - "fontFamily": "Sedgwick Ave, cursive", - "slug": "sedgwick-ave", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sedgwickave/v12/uK_04rKEYuguzAcSYRdWTJq8Xmg1Vcf5JA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sedgwick Ave", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sedgwick-ave/sedgwick-ave-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sedgwick-ave/sedgwick-ave.svg" - }, - { - "name": "Sedgwick Ave Display", - "fontFamily": "Sedgwick Ave Display, cursive", - "slug": "sedgwick-ave-display", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sedgwickavedisplay/v21/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2czd-YnOzUD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sedgwick Ave Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sedgwick-ave-display/sedgwick-ave-display-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sedgwick-ave-display/sedgwick-ave-display.svg" - }, - { - "name": "Sen", - "fontFamily": "Sen, sans-serif", - "slug": "sen", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sen/v9/6xK0dSxYI9_dkN18-vZKK2EISCq5H47KlD9q78A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sen", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sen/sen-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sen/v9/6xK0dSxYI9_dkN18-vZKK2EISBi5H47KlD9q78A.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sen", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sen/sen-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sen/v9/6xK0dSxYI9_dkN18-vZKK2EISPS-H47KlD9q78A.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sen", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sen/sen-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sen/v9/6xK0dSxYI9_dkN18-vZKK2EISM2-H47KlD9q78A.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sen", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sen/sen-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sen/v9/6xK0dSxYI9_dkN18-vZKK2EISKq-H47KlD9q78A.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sen", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sen/sen-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sen/sen.svg" - }, - { - "name": "Send Flowers", - "fontFamily": "Send Flowers, cursive", - "slug": "send-flowers", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sendflowers/v5/If2PXTjtZS-0Xqy13uCQSULvxwjjouU1iw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Send Flowers", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/send-flowers/send-flowers-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/send-flowers/send-flowers.svg" - }, - { - "name": "Sevillana", - "fontFamily": "Sevillana, system-ui", - "slug": "sevillana", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sevillana/v23/KFOlCnWFscmDt1Bfiy1vAx05IsDqlA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sevillana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sevillana/sevillana-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sevillana/sevillana.svg" - }, - { - "name": "Seymour One", - "fontFamily": "Seymour One, sans-serif", - "slug": "seymour-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/seymourone/v22/4iCp6Khla9xbjQpoWGGd0myIPYBvgpUI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Seymour One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/seymour-one/seymour-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/seymour-one/seymour-one.svg" - }, - { - "name": "Shadows Into Light", - "fontFamily": "Shadows Into Light, cursive", - "slug": "shadows-into-light", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shadowsintolight/v19/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDcsr4xzSMYA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shadows Into Light", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shadows-into-light/shadows-into-light-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shadows-into-light/shadows-into-light.svg" - }, - { - "name": "Shadows Into Light Two", - "fontFamily": "Shadows Into Light Two, cursive", - "slug": "shadows-into-light-two", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shadowsintolighttwo/v17/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlAvNGLNnIF0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shadows Into Light Two", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shadows-into-light-two/shadows-into-light-two-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shadows-into-light-two/shadows-into-light-two.svg" - }, - { - "name": "Shalimar", - "fontFamily": "Shalimar, cursive", - "slug": "shalimar", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shalimar/v7/uU9MCBoE6I6iNWFUvTPx8PCOg0uX.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shalimar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shalimar/shalimar-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shalimar/shalimar.svg" - }, - { - "name": "Shantell Sans", - "fontFamily": "Shantell Sans, system-ui", - "slug": "shantell-sans", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shantellsans/v9/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYQiS2i2yPwxjyRN.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Shantell Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shantell-sans/shantell-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shantellsans/v9/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYR8S2i2yPwxjyRN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shantell Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shantell-sans/shantell-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shantellsans/v9/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYROS2i2yPwxjyRN.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Shantell Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shantell-sans/shantell-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shantellsans/v9/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYSiTGi2yPwxjyRN.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Shantell Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shantell-sans/shantell-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shantellsans/v9/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYSbTGi2yPwxjyRN.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Shantell Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shantell-sans/shantell-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shantellsans/v9/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYT8TGi2yPwxjyRN.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Shantell Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shantell-sans/shantell-sans-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shantellsans/v9/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CN71wvgTijRNYgQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Shantell Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shantell-sans/shantell-sans-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shantellsans/v9/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CID1wvgTijRNYgQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Shantell Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shantell-sans/shantell-sans-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shantellsans/v9/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CLL1wvgTijRNYgQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Shantell Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shantell-sans/shantell-sans-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shantellsans/v9/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CF7ywvgTijRNYgQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Shantell Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shantell-sans/shantell-sans-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shantellsans/v9/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CGfywvgTijRNYgQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Shantell Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shantell-sans/shantell-sans-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shantellsans/v9/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CADywvgTijRNYgQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Shantell Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shantell-sans/shantell-sans-800-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shantell-sans/shantell-sans.svg" - }, - { - "name": "Shanti", - "fontFamily": "Shanti, sans-serif", - "slug": "shanti", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shanti/v23/t5thIREMM4uSDgzgU0ezpKfwzA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shanti", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shanti/shanti-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shanti/shanti.svg" - }, - { - "name": "Share", - "fontFamily": "Share, sans-serif", - "slug": "share", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/share/v18/i7dEIFliZjKNF5VNHLq2cV5d.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Share", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/share/share-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/share/v18/i7dKIFliZjKNF6VPFr6UdE5dWFM.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Share", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/share/share-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/share/v18/i7dJIFliZjKNF63xM56-WkJUQUq7.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Share", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/share/share-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/share/v18/i7dPIFliZjKNF6VPLgK7UEZ2RFq7AwU.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Share", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/share/share-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/share/share.svg" - }, - { - "name": "Share Tech", - "fontFamily": "Share Tech, sans-serif", - "slug": "share-tech", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sharetech/v21/7cHtv4Uyi5K0OeZ7bohUwHoDmTcibrA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Share Tech", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/share-tech/share-tech-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/share-tech/share-tech.svg" - }, - { - "name": "Share Tech Mono", - "fontFamily": "Share Tech Mono, monospace", - "slug": "share-tech-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sharetechmono/v15/J7aHnp1uDWRBEqV98dVQztYldFc7pAsEIc3Xew.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Share Tech Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/share-tech-mono/share-tech-mono-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/share-tech-mono/share-tech-mono.svg" - }, - { - "name": "Shippori Antique", - "fontFamily": "Shippori Antique, sans-serif", - "slug": "shippori-antique", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shipporiantique/v8/-F6qfid3KC8pdMyzR0qRyFUht11v8ldPg-IUDNg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shippori Antique", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shippori-antique/shippori-antique-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shippori-antique/shippori-antique.svg" - }, - { - "name": "Shippori Antique B1", - "fontFamily": "Shippori Antique B1, sans-serif", - "slug": "shippori-antique-b1", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shipporiantiqueb1/v8/2Eb7L_JwClR7Zl_UAKZ0mUHw3oMKd40grRFCj9-5Y8Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shippori Antique B1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shippori-antique-b1/shippori-antique-b1-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shippori-antique-b1/shippori-antique-b1.svg" - }, - { - "name": "Shippori Mincho", - "fontFamily": "Shippori Mincho, serif", - "slug": "shippori-mincho", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shipporimincho/v14/VdGGAZweH5EbgHY6YExcZfDoj0BA2_-C7LoS7g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shippori-mincho/shippori-mincho-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4L9am5JEO5--2zg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shippori-mincho/shippori-mincho-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4A9Gm5JEO5--2zg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shippori-mincho/shippori-mincho-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4Z9Cm5JEO5--2zg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shippori-mincho/shippori-mincho-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4e9Om5JEO5--2zg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shippori-mincho/shippori-mincho-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shippori-mincho/shippori-mincho.svg" - }, - { - "name": "Shippori Mincho B1", - "fontFamily": "Shippori Mincho B1, serif", - "slug": "shippori-mincho-b1", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shipporiminchob1/v19/~ChQKElNoaXBwb3JpIE1pbmNobyBCMSAAKgQIARgB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho B1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shippori-mincho-b1/shippori-mincho-b1-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRj0AyAAKgQIARgB.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho B1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shippori-mincho-b1/shippori-mincho-b1-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRjYBCAAKgQIARgB.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho B1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shippori-mincho-b1/shippori-mincho-b1-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRi8BSAAKgQIARgB.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho B1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shippori-mincho-b1/shippori-mincho-b1-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRigBiAAKgQIARgB.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho B1", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shippori-mincho-b1/shippori-mincho-b1-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shippori-mincho-b1/shippori-mincho-b1.svg" - }, - { - "name": "Shizuru", - "fontFamily": "Shizuru, system-ui", - "slug": "shizuru", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shizuru/v10/O4ZSFGfvnxFiCA3i30IJlgUTj2A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shizuru", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shizuru/shizuru-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shizuru/shizuru.svg" - }, - { - "name": "Shojumaru", - "fontFamily": "Shojumaru, system-ui", - "slug": "shojumaru", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shojumaru/v15/rax_HiWfutkLLnaKCtlMBBJek0vA8A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shojumaru", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shojumaru/shojumaru-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shojumaru/shojumaru.svg" - }, - { - "name": "Short Stack", - "fontFamily": "Short Stack, cursive", - "slug": "short-stack", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shortstack/v15/bMrzmS2X6p0jZC6EcmPFX-SScX8D0nq6.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Short Stack", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/short-stack/short-stack-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/short-stack/short-stack.svg" - }, - { - "name": "Shrikhand", - "fontFamily": "Shrikhand, system-ui", - "slug": "shrikhand", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/shrikhand/v15/a8IbNovtLWfR7T7bMJwbBIiQ0zhMtA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shrikhand", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shrikhand/shrikhand-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/shrikhand/shrikhand.svg" - }, - { - "name": "Siemreap", - "fontFamily": "Siemreap, sans-serif", - "slug": "siemreap", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/siemreap/v28/Gg82N5oFbgLvHAfNl2YbnA8DLXpe.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Siemreap", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/siemreap/siemreap-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/siemreap/siemreap.svg" - }, - { - "name": "Sigmar", - "fontFamily": "Sigmar, system-ui", - "slug": "sigmar", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sigmar/v7/hv-XlzJgIE8a85pUbWY3MTFgVg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sigmar", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sigmar/sigmar-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sigmar/sigmar.svg" - }, - { - "name": "Sigmar One", - "fontFamily": "Sigmar One, system-ui", - "slug": "sigmar-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sigmarone/v18/co3DmWZ8kjZuErj9Ta3dk6Pjp3Di8U0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sigmar One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sigmar-one/sigmar-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sigmar-one/sigmar-one.svg" - }, - { - "name": "Signika", - "fontFamily": "Signika, sans-serif", - "slug": "signika", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/signika/v25/vEF72_JTCgwQ5ejvMV0Ox_Kg1UwJ0tKfX4zNpD8E4ASzH1r93zuYzTMngt4xjw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Signika", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/signika/signika-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/signika/v25/vEF72_JTCgwQ5ejvMV0Ox_Kg1UwJ0tKfX4zNpD8E4ASzH1r9gTuYzTMngt4xjw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Signika", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/signika/signika-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/signika/v25/vEF72_JTCgwQ5ejvMV0Ox_Kg1UwJ0tKfX4zNpD8E4ASzH1r9szuYzTMngt4xjw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Signika", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/signika/signika-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/signika/v25/vEF72_JTCgwQ5ejvMV0Ox_Kg1UwJ0tKfX4zNpD8E4ASzH1r9XzyYzTMngt4xjw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Signika", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/signika/signika-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/signika/v25/vEF72_JTCgwQ5ejvMV0Ox_Kg1UwJ0tKfX4zNpD8E4ASzH1r9ZjyYzTMngt4xjw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Signika", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/signika/signika-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/signika/signika.svg" - }, - { - "name": "Signika Negative", - "fontFamily": "Signika Negative, sans-serif", - "slug": "signika-negative", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAr5S73st9hiuEq8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Signika Negative", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/signika-negative/signika-negative-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqnS73st9hiuEq8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Signika Negative", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/signika-negative/signika-negative-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqVS73st9hiuEq8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Signika Negative", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/signika-negative/signika-negative-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAp5TL3st9hiuEq8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Signika Negative", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/signika-negative/signika-negative-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RApATL3st9hiuEq8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Signika Negative", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/signika-negative/signika-negative-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/signika-negative/signika-negative.svg" - }, - { - "name": "Silkscreen", - "fontFamily": "Silkscreen, system-ui", - "slug": "silkscreen", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/silkscreen/v4/m8JXjfVPf62XiF7kO-i9ULRvamODxdI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Silkscreen", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/silkscreen/silkscreen-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/silkscreen/v4/m8JUjfVPf62XiF7kO-i9aAhATmuo2dudFvc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Silkscreen", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/silkscreen/silkscreen-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/silkscreen/silkscreen.svg" - }, - { - "name": "Simonetta", - "fontFamily": "Simonetta, system-ui", - "slug": "simonetta", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/simonetta/v27/x3dickHVYrCU5BU15c4BfPACvy_1BA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Simonetta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/simonetta/simonetta-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/simonetta/v27/x3dkckHVYrCU5BU15c4xfvoGnSrlBBsy.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Simonetta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/simonetta/simonetta-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/simonetta/v27/x3dnckHVYrCU5BU15c45-N0mtwTpDQIrGg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Simonetta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/simonetta/simonetta-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/simonetta/v27/x3d5ckHVYrCU5BU15c4xfsKCsA7tLwc7Gn88.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Simonetta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/simonetta/simonetta-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/simonetta/simonetta.svg" - }, - { - "name": "Single Day", - "fontFamily": "Single Day, system-ui", - "slug": "single-day", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/singleday/v17/LYjHdGDjlEgoAcF95EI5jVoFUNfeQJU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Single Day", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/single-day/single-day-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/single-day/single-day.svg" - }, - { - "name": "Sintony", - "fontFamily": "Sintony, sans-serif", - "slug": "sintony", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sintony/v15/XoHm2YDqR7-98cVUITQnu98ojjs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sintony", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sintony/sintony-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sintony/v15/XoHj2YDqR7-98cVUGYgIn9cDkjLp6C8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sintony", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sintony/sintony-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sintony/sintony.svg" - }, - { - "name": "Sirin Stencil", - "fontFamily": "Sirin Stencil, system-ui", - "slug": "sirin-stencil", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sirinstencil/v25/mem4YaWwznmLx-lzGfN7MdRydchGBq6al6o.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sirin Stencil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sirin-stencil/sirin-stencil-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sirin-stencil/sirin-stencil.svg" - }, - { - "name": "Six Caps", - "fontFamily": "Six Caps, sans-serif", - "slug": "six-caps", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sixcaps/v20/6ae_4KGrU7VR7bNmabcS9XXaPCop.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Six Caps", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/six-caps/six-caps-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/six-caps/six-caps.svg" - }, - { - "name": "Skranji", - "fontFamily": "Skranji, system-ui", - "slug": "skranji", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/skranji/v13/OZpDg_dtriVFNerMYzuuklTm3Ek.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Skranji", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/skranji/skranji-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/skranji/v13/OZpGg_dtriVFNerMW4eBtlzNwED-b4g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Skranji", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/skranji/skranji-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/skranji/skranji.svg" - }, - { - "name": "Slabo 13px", - "fontFamily": "Slabo 13px, serif", - "slug": "slabo-13px", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/slabo13px/v15/11hEGp_azEvXZUdSBzzRcKer2wkYnvI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Slabo 13px", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/slabo-13px/slabo-13px-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/slabo-13px/slabo-13px.svg" - }, - { - "name": "Slabo 27px", - "fontFamily": "Slabo 27px, serif", - "slug": "slabo-27px", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/slabo27px/v14/mFT0WbgBwKPR_Z4hGN2qsxgJ1EJ7i90.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Slabo 27px", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/slabo-27px/slabo-27px-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/slabo-27px/slabo-27px.svg" - }, - { - "name": "Slackey", - "fontFamily": "Slackey, system-ui", - "slug": "slackey", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/slackey/v28/N0bV2SdQO-5yM0-dKlRaJdbWgdY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Slackey", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/slackey/slackey-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/slackey/slackey.svg" - }, - { - "name": "Slackside One", - "fontFamily": "Slackside One, cursive", - "slug": "slackside-one", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/slacksideone/v10/EJRQQgMrXdcGsiBuvnRxodTwVy7VocNB6Iw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Slackside One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/slackside-one/slackside-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/slackside-one/slackside-one.svg" - }, - { - "name": "Smokum", - "fontFamily": "Smokum, system-ui", - "slug": "smokum", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/smokum/v28/TK3iWkUbAhopmrdGHjUHte5fKg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Smokum", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/smokum/smokum-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/smokum/smokum.svg" - }, - { - "name": "Smooch", - "fontFamily": "Smooch, cursive", - "slug": "smooch", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/smooch/v7/o-0LIps4xW8U1xUBjqp_6hVdYg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Smooch", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/smooch/smooch-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/smooch/smooch.svg" - }, - { - "name": "Smooch Sans", - "fontFamily": "Smooch Sans, sans-serif", - "slug": "smooch-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/smoochsans/v13/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUFodqIeNlzayg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Smooch Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/smooch-sans/smooch-sans-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/smoochsans/v13/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUBodqIeNlzayg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Smooch Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/smooch-sans/smooch-sans-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/smoochsans/v13/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oin0BodqIeNlzayg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Smooch Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/smooch-sans/smooch-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/smoochsans/v13/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUBodqIeNlzayg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Smooch Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/smooch-sans/smooch-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/smoochsans/v13/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oi80BodqIeNlzayg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Smooch Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/smooch-sans/smooch-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/smoochsans/v13/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiH0dodqIeNlzayg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Smooch Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/smooch-sans/smooch-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/smoochsans/v13/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiJkdodqIeNlzayg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Smooch Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/smooch-sans/smooch-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/smoochsans/v13/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUdodqIeNlzayg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Smooch Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/smooch-sans/smooch-sans-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/smoochsans/v13/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiaEdodqIeNlzayg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Smooch Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/smooch-sans/smooch-sans-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/smooch-sans/smooch-sans.svg" - }, - { - "name": "Smythe", - "fontFamily": "Smythe, system-ui", - "slug": "smythe", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/smythe/v23/MwQ3bhT01--coT1BOLh_uGInjA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Smythe", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/smythe/smythe-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/smythe/smythe.svg" - }, - { - "name": "Sniglet", - "fontFamily": "Sniglet, system-ui", - "slug": "sniglet", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sniglet/v17/cIf9MaFLtkE3UjaJxCmrYGkHgIs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sniglet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sniglet/sniglet-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sniglet/v17/cIf4MaFLtkE3UjaJ_ImHRGEsnIJkWL4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sniglet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sniglet/sniglet-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sniglet/sniglet.svg" - }, - { - "name": "Snippet", - "fontFamily": "Snippet, sans-serif", - "slug": "snippet", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/snippet/v21/bWt47f7XfQH9Gupu2v_Afcp9QWc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Snippet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/snippet/snippet-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/snippet/snippet.svg" - }, - { - "name": "Snowburst One", - "fontFamily": "Snowburst One, system-ui", - "slug": "snowburst-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/snowburstone/v20/MQpS-WezKdujBsXY3B7I-UT7eZ-UPyacPbo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Snowburst One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/snowburst-one/snowburst-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/snowburst-one/snowburst-one.svg" - }, - { - "name": "Sofadi One", - "fontFamily": "Sofadi One, system-ui", - "slug": "sofadi-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofadione/v21/JIA2UVBxdnVBuElZaMFGcDOIETkmYDU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sofadi One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofadi-one/sofadi-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofadi-one/sofadi-one.svg" - }, - { - "name": "Sofia", - "fontFamily": "Sofia, cursive", - "slug": "sofia", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofia/v14/8QIHdirahM3j_vu-sowsrqjk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sofia", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia/sofia-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia/sofia.svg" - }, - { - "name": "Sofia Sans", - "fontFamily": "Sofia Sans, sans-serif", - "slug": "sofia-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sa3trvKCXl8k.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Sofia Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans/sofia-sans-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69D6sK3trvKCXl8k.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Sofia Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans/sofia-sans-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69AksK3trvKCXl8k.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sofia Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans/sofia-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sK3trvKCXl8k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sofia Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans/sofia-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69BIsK3trvKCXl8k.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sofia Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans/sofia-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69Ckt63trvKCXl8k.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sofia Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans/sofia-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69Cdt63trvKCXl8k.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sofia Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans/sofia-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69D6t63trvKCXl8k.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sofia Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans/sofia-sans-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69DTt63trvKCXl8k.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Sofia Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans/sofia-sans-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy80WvpPagW08kdLY.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Sofia Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans/sofia-sans-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy88WupPagW08kdLY.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Sofia Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans/sofia-sans-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy8xuupPagW08kdLY.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Sofia Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans/sofia-sans-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy80WupPagW08kdLY.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sofia Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans/sofia-sans-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy83eupPagW08kdLY.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Sofia Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans/sofia-sans-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy85uppPagW08kdLY.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Sofia Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans/sofia-sans-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy86KppPagW08kdLY.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Sofia Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans/sofia-sans-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy88WppPagW08kdLY.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Sofia Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans/sofia-sans-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy8-yppPagW08kdLY.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Sofia Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans/sofia-sans-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans/sofia-sans.svg" - }, - { - "name": "Sofia Sans Condensed", - "fontFamily": "Sofia Sans Condensed, sans-serif", - "slug": "sofia-sans-condensed", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqh-Csl8QO3OfwQQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-condensed/sofia-sans-condensed-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqB-Gsl8QO3OfwQQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-condensed/sofia-sans-condensed-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUq2eGsl8QO3OfwQQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-condensed/sofia-sans-condensed-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqh-Gsl8QO3OfwQQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-condensed/sofia-sans-condensed-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqteGsl8QO3OfwQQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-condensed/sofia-sans-condensed-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqWeasl8QO3OfwQQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-condensed/sofia-sans-condensed-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqYOasl8QO3OfwQQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-condensed/sofia-sans-condensed-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqB-asl8QO3OfwQQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-condensed/sofia-sans-condensed-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqLuasl8QO3OfwQQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-condensed/sofia-sans-condensed-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6JE1c4K_uLgQZ_3.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-condensed/sofia-sans-condensed-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6LE1M4K_uLgQZ_3.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-condensed/sofia-sans-condensed-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Ia1M4K_uLgQZ_3.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-condensed/sofia-sans-condensed-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6JE1M4K_uLgQZ_3.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-condensed/sofia-sans-condensed-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6J21M4K_uLgQZ_3.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-condensed/sofia-sans-condensed-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Ka084K_uLgQZ_3.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-condensed/sofia-sans-condensed-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Kj084K_uLgQZ_3.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-condensed/sofia-sans-condensed-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6LE084K_uLgQZ_3.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-condensed/sofia-sans-condensed-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Lt084K_uLgQZ_3.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-condensed/sofia-sans-condensed-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-condensed/sofia-sans-condensed.svg" - }, - { - "name": "Sofia Sans Extra Condensed", - "fontFamily": "Sofia Sans Extra Condensed, sans-serif", - "slug": "sofia-sans-extra-condensed", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLmmmEfzmM356GxA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLGmiEfzmM356GxA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLxGiEfzmM356GxA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLmmiEfzmM356GxA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLqGiEfzmM356GxA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLRG-EfzmM356GxA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLfW-EfzmM356GxA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLGm-EfzmM356GxA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLM2-EfzmM356GxA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitsPTOI_ZuWxFXe.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivsPDOI_ZuWxFXe.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUisyPDOI_ZuWxFXe.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitsPDOI_ZuWxFXe.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitePDOI_ZuWxFXe.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUiuyOzOI_ZuWxFXe.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUiuLOzOI_ZuWxFXe.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivsOzOI_ZuWxFXe.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivFOzOI_ZuWxFXe.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-extra-condensed/sofia-sans-extra-condensed.svg" - }, - { - "name": "Sofia Sans Semi Condensed", - "fontFamily": "Sofia Sans Semi Condensed, sans-serif", - "slug": "sofia-sans-semi-condensed", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoobEO9TGahllIhN.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqbEe9TGahllIhN.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvopFEe9TGahllIhN.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoobEe9TGahllIhN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoopEe9TGahllIhN.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvorFFu9TGahllIhN.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvor8Fu9TGahllIhN.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqbFu9TGahllIhN.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqyFu9TGahllIhN.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUgcRE6xHkZhNeas.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUocQE6xHkZhNeas.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUlkQE6xHkZhNeas.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUgcQE6xHkZhNeas.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUjUQE6xHkZhNeas.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUtkXE6xHkZhNeas.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUuAXE6xHkZhNeas.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUocXE6xHkZhNeas.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUq4XE6xHkZhNeas.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sofia-sans-semi-condensed/sofia-sans-semi-condensed.svg" - }, - { - "name": "Solitreo", - "fontFamily": "Solitreo, cursive", - "slug": "solitreo", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/solitreo/v2/r05YGLlS5a9KYsyNO8upyDYtStiJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Solitreo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/solitreo/solitreo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/solitreo/solitreo.svg" - }, - { - "name": "Solway", - "fontFamily": "Solway, serif", - "slug": "solway", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuLlgZms0QW3mqyg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Solway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/solway/solway-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/solway/v18/AMOQz46Cs2uTAOCWgnA9kuYMUg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Solway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/solway/solway-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCudlkZms0QW3mqyg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Solway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/solway/solway-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuPl8Zms0QW3mqyg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Solway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/solway/solway-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuIlwZms0QW3mqyg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Solway", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/solway/solway-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/solway/solway.svg" - }, - { - "name": "Song Myung", - "fontFamily": "Song Myung, serif", - "slug": "song-myung", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/songmyung/v20/1cX2aUDWAJH5-EIC7DIhr1GqhcitzeM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Song Myung", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/song-myung/song-myung-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/song-myung/song-myung.svg" - }, - { - "name": "Sono", - "fontFamily": "Sono, sans-serif", - "slug": "sono", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sono/v6/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVNkWdEnR4qYeB4Q.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Sono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sono/sono-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sono/v6/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxV6EWdEnR4qYeB4Q.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sono/sono-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sono/v6/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVtkWdEnR4qYeB4Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sono/sono-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sono/v6/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVhEWdEnR4qYeB4Q.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sono/sono-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sono/v6/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVaEKdEnR4qYeB4Q.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sono/sono-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sono/v6/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVUUKdEnR4qYeB4Q.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sono/sono-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sono/v6/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVNkKdEnR4qYeB4Q.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sono/sono-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sono/sono.svg" - }, - { - "name": "Sonsie One", - "fontFamily": "Sonsie One, system-ui", - "slug": "sonsie-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sonsieone/v21/PbymFmP_EAnPqbKaoc18YVu80lbp8JM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sonsie One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sonsie-one/sonsie-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sonsie-one/sonsie-one.svg" - }, - { - "name": "Sora", - "fontFamily": "Sora, sans-serif", - "slug": "sora", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSn3-KIwNhBti0.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Sora", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sora/sora-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSfSnn-KIwNhBti0.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Sora", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sora/sora-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmScMnn-KIwNhBti0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sora", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sora/sora-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSnn-KIwNhBti0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sora", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sora/sora-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdgnn-KIwNhBti0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sora", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sora/sora-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSeMmX-KIwNhBti0.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sora", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sora/sora-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSe1mX-KIwNhBti0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sora", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sora/sora-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSfSmX-KIwNhBti0.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sora", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sora/sora-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sora/sora.svg" - }, - { - "name": "Sorts Mill Goudy", - "fontFamily": "Sorts Mill Goudy, serif", - "slug": "sorts-mill-goudy", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3GZR9MED_6PSuS_50nEaVrfzgEXH0OjpM75PE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sorts Mill Goudy", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sorts-mill-goudy/sorts-mill-goudy-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3AZR9MED_6PSuS_50nEaVrfzgEbH8EirE-9PGLfQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sorts Mill Goudy", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sorts-mill-goudy/sorts-mill-goudy-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sorts-mill-goudy/sorts-mill-goudy.svg" - }, - { - "name": "Source Code Pro", - "fontFamily": "Source Code Pro, monospace", - "slug": "source-code-pro", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyQhM5hTXUcdJg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Source Code Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-code-pro/source-code-pro-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DJKQhM5hTXUcdJg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Source Code Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-code-pro/source-code-pro-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhM5hTXUcdJg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Source Code Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-code-pro/source-code-pro-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DP6QhM5hTXUcdJg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Source Code Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-code-pro/source-code-pro-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DBKXhM5hTXUcdJg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Source Code Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-code-pro/source-code-pro-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DCuXhM5hTXUcdJg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Source Code Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-code-pro/source-code-pro-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyXhM5hTXUcdJg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Source Code Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-code-pro/source-code-pro-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DGWXhM5hTXUcdJg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Source Code Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-code-pro/source-code-pro-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7I1rSVcZZJiGpw.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Source Code Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-code-pro/source-code-pro-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTMo1rSVcZZJiGpw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Source Code Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-code-pro/source-code-pro-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1rSVcZZJiGpw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Source Code Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-code-pro/source-code-pro-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTXo1rSVcZZJiGpw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Source Code Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-code-pro/source-code-pro-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTsoprSVcZZJiGpw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Source Code Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-code-pro/source-code-pro-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTi4prSVcZZJiGpw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Source Code Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-code-pro/source-code-pro-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7IprSVcZZJiGpw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Source Code Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-code-pro/source-code-pro-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTxYprSVcZZJiGpw.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Source Code Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-code-pro/source-code-pro-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-code-pro/source-code-pro.svg" - }, - { - "name": "Source Sans 3", - "fontFamily": "Source Sans 3, sans-serif", - "slug": "source-sans-3", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw461EN_io6npfB.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Source Sans 3", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-sans-3/source-sans-3-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Source Sans 3", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-sans-3/source-sans-3-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Ky461EN_io6npfB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Source Sans 3", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-sans-3/source-sans-3-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KyK61EN_io6npfB.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Source Sans 3", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-sans-3/source-sans-3-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Source Sans 3", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-sans-3/source-sans-3-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Source Sans 3", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-sans-3/source-sans-3-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Source Sans 3", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-sans-3/source-sans-3-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Source Sans 3", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-sans-3/source-sans-3-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlO9C4Ym4fB3Ts.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Source Sans 3", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-sans-3/source-sans-3-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqOdO9C4Ym4fB3Ts.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Source Sans 3", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-sans-3/source-sans-3-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqLlO9C4Ym4fB3Ts.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Source Sans 3", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-sans-3/source-sans-3-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqItO9C4Ym4fB3Ts.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Source Sans 3", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-sans-3/source-sans-3-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqGdJ9C4Ym4fB3Ts.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Source Sans 3", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-sans-3/source-sans-3-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqF5J9C4Ym4fB3Ts.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Source Sans 3", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-sans-3/source-sans-3-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlJ9C4Ym4fB3Ts.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Source Sans 3", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-sans-3/source-sans-3-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqBBJ9C4Ym4fB3Ts.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Source Sans 3", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-sans-3/source-sans-3-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-sans-3/source-sans-3.svg" - }, - { - "name": "Source Serif 4", - "fontFamily": "Source Serif 4, serif", - "slug": "source-serif-4", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdqrhxXD-wGvjU.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Source Serif 4", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-serif-4/source-serif-4-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiklqrhxXD-wGvjU.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Source Serif 4", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-serif-4/source-serif-4-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjihdqrhxXD-wGvjU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Source Serif 4", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-serif-4/source-serif-4-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiiVqrhxXD-wGvjU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Source Serif 4", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-serif-4/source-serif-4-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjisltrhxXD-wGvjU.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Source Serif 4", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-serif-4/source-serif-4-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjivBtrhxXD-wGvjU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Source Serif 4", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-serif-4/source-serif-4-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdtrhxXD-wGvjU.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Source Serif 4", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-serif-4/source-serif-4-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjir5trhxXD-wGvjU.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Source Serif 4", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-serif-4/source-serif-4-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxl9dC84DrjXEXw.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Source Serif 4", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-serif-4/source-serif-4-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pGF9dC84DrjXEXw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Source Serif 4", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-serif-4/source-serif-4-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pRl9dC84DrjXEXw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Source Serif 4", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-serif-4/source-serif-4-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pdF9dC84DrjXEXw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Source Serif 4", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-serif-4/source-serif-4-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pmFhdC84DrjXEXw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Source Serif 4", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-serif-4/source-serif-4-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98poVhdC84DrjXEXw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Source Serif 4", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-serif-4/source-serif-4-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxlhdC84DrjXEXw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Source Serif 4", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-serif-4/source-serif-4-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98p71hdC84DrjXEXw.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Source Serif 4", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-serif-4/source-serif-4-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/source-serif-4/source-serif-4.svg" - }, - { - "name": "Space Grotesk", - "fontFamily": "Space Grotesk, sans-serif", - "slug": "space-grotesk", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj62UUsjNsFjTDJK.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Space Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/space-grotesk/space-grotesk-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUUsjNsFjTDJK.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Space Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/space-grotesk/space-grotesk-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7aUUsjNsFjTDJK.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Space Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/space-grotesk/space-grotesk-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj42VksjNsFjTDJK.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Space Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/space-grotesk/space-grotesk-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksjNsFjTDJK.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Space Grotesk", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/space-grotesk/space-grotesk-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/space-grotesk/space-grotesk.svg" - }, - { - "name": "Space Mono", - "fontFamily": "Space Mono, monospace", - "slug": "space-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spacemono/v13/i7dPIFZifjKcF5UAWdDRUEZ2RFq7AwU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Space Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/space-mono/space-mono-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spacemono/v13/i7dNIFZifjKcF5UAWdDRYER8QHi-EwWMbg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Space Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/space-mono/space-mono-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spacemono/v13/i7dMIFZifjKcF5UAWdDRaPpZYFKQHwyVd3U.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Space Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/space-mono/space-mono-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spacemono/v13/i7dSIFZifjKcF5UAWdDRYERE_FeaGy6QZ3WfYg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Space Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/space-mono/space-mono-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/space-mono/space-mono.svg" - }, - { - "name": "Special Elite", - "fontFamily": "Special Elite, system-ui", - "slug": "special-elite", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/specialelite/v18/XLYgIZbkc4JPUL5CVArUVL0nhncESXFtUsM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Special Elite", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/special-elite/special-elite-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/special-elite/special-elite.svg" - }, - { - "name": "Spectral", - "fontFamily": "Spectral, serif", - "slug": "spectral", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9v2s13GY_etWWIJ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Spectral", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral/spectral-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qrXHafOPXHIJErY.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Spectral", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral/spectral-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uSsF3GY_etWWIJ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Spectral", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral/spectral-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qtHEafOPXHIJErY.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Spectral", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral/spectral-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectral/v13/rnCr-xNNww_2s0amA-M-mHnOSOuk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Spectral", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral/spectral-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectral/v13/rnCt-xNNww_2s0amA9M8kn3sTfukQHs.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Spectral", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral/spectral-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vKsV3GY_etWWIJ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Spectral", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral/spectral-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qonFafOPXHIJErY.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Spectral", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral/spectral-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vmtl3GY_etWWIJ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Spectral", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral/spectral-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qqXCafOPXHIJErY.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Spectral", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral/spectral-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uCt13GY_etWWIJ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Spectral", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral/spectral-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qsHDafOPXHIJErY.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Spectral", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral/spectral-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uetF3GY_etWWIJ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Spectral", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral/spectral-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qt3AafOPXHIJErY.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Spectral", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral/spectral-800-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral/spectral.svg" - }, - { - "name": "Spectral SC", - "fontFamily": "Spectral SC, serif", - "slug": "spectral-sc", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs1qwkTXPYeVXJZB.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Spectral SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral-sc/spectral-sc-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg26zWN4O3WYZB_sU.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Spectral SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral-sc/spectral-sc-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0OwUTXPYeVXJZB.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Spectral SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral-sc/spectral-sc-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg28jVN4O3WYZB_sU.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Spectral SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral-sc/spectral-sc-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectralsc/v12/KtkpALCRZonmalTgyPmRfvWi6WDfFpuc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Spectral SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral-sc/spectral-sc-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectralsc/v12/KtkrALCRZonmalTgyPmRfsWg42T9E4ucRY8.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Spectral SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral-sc/spectral-sc-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs1WwETXPYeVXJZB.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Spectral SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral-sc/spectral-sc-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg25DUN4O3WYZB_sU.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Spectral SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral-sc/spectral-sc-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs16x0TXPYeVXJZB.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Spectral SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral-sc/spectral-sc-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg27zTN4O3WYZB_sU.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Spectral SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral-sc/spectral-sc-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0exkTXPYeVXJZB.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Spectral SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral-sc/spectral-sc-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg29jSN4O3WYZB_sU.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Spectral SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral-sc/spectral-sc-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0CxUTXPYeVXJZB.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Spectral SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral-sc/spectral-sc-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg28TRN4O3WYZB_sU.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Spectral SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral-sc/spectral-sc-800-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spectral-sc/spectral-sc.svg" - }, - { - "name": "Spicy Rice", - "fontFamily": "Spicy Rice, system-ui", - "slug": "spicy-rice", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spicyrice/v25/uK_24rSEd-Uqwk4jY1RyGv-2WkowRcc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Spicy Rice", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spicy-rice/spicy-rice-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spicy-rice/spicy-rice.svg" - }, - { - "name": "Spinnaker", - "fontFamily": "Spinnaker, sans-serif", - "slug": "spinnaker", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spinnaker/v19/w8gYH2oyX-I0_rvR6Hmn3HwLqOqSBg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Spinnaker", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spinnaker/spinnaker-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spinnaker/spinnaker.svg" - }, - { - "name": "Spirax", - "fontFamily": "Spirax, system-ui", - "slug": "spirax", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/spirax/v21/buE3poKgYNLy0F3cXktt-Csn-Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Spirax", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spirax/spirax-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spirax/spirax.svg" - }, - { - "name": "Splash", - "fontFamily": "Splash, cursive", - "slug": "splash", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/splash/v6/KtksAL2RZoDkbU6hpPPGNdS6wg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Splash", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/splash/splash-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/splash/splash.svg" - }, - { - "name": "Spline Sans", - "fontFamily": "Spline Sans, sans-serif", - "slug": "spline-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpZlnYEtvlUfE2kw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Spline Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spline-sans/spline-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpOFnYEtvlUfE2kw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Spline Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spline-sans/spline-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpClnYEtvlUfE2kw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Spline Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spline-sans/spline-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp5l7YEtvlUfE2kw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Spline Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spline-sans/spline-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp317YEtvlUfE2kw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Spline Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spline-sans/spline-sans-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spline-sans/spline-sans.svg" - }, - { - "name": "Spline Sans Mono", - "fontFamily": "Spline Sans Mono, monospace", - "slug": "spline-sans-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/splinesansmono/v10/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGA8MrtVy4d4dGb1.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Spline Sans Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spline-sans-mono/spline-sans-mono-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/splinesansmono/v10/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBiMrtVy4d4dGb1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Spline Sans Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spline-sans-mono/spline-sans-mono-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/splinesansmono/v10/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBQMrtVy4d4dGb1.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Spline Sans Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spline-sans-mono/spline-sans-mono-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/splinesansmono/v10/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGC8NbtVy4d4dGb1.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Spline Sans Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spline-sans-mono/spline-sans-mono-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/splinesansmono/v10/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGCFNbtVy4d4dGb1.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Spline Sans Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spline-sans-mono/spline-sans-mono-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/splinesansmono/v10/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcQ0WwYNacXb12MM.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Spline Sans Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spline-sans-mono/spline-sans-mono-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/splinesansmono/v10/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcVMWwYNacXb12MM.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Spline Sans Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spline-sans-mono/spline-sans-mono-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/splinesansmono/v10/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcWEWwYNacXb12MM.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Spline Sans Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spline-sans-mono/spline-sans-mono-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/splinesansmono/v10/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcY0RwYNacXb12MM.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Spline Sans Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spline-sans-mono/spline-sans-mono-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/splinesansmono/v10/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcbQRwYNacXb12MM.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Spline Sans Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spline-sans-mono/spline-sans-mono-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/spline-sans-mono/spline-sans-mono.svg" - }, - { - "name": "Squada One", - "fontFamily": "Squada One, system-ui", - "slug": "squada-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/squadaone/v18/BCasqZ8XsOrx4mcOk6MtWaA8WDBkHgs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Squada One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/squada-one/squada-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/squada-one/squada-one.svg" - }, - { - "name": "Square Peg", - "fontFamily": "Square Peg, cursive", - "slug": "square-peg", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/squarepeg/v5/y83eW48Nzw6ZlUHc-phrBDHrHHfrFPE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Square Peg", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/square-peg/square-peg-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/square-peg/square-peg.svg" - }, - { - "name": "Sree Krushnadevaraya", - "fontFamily": "Sree Krushnadevaraya, serif", - "slug": "sree-krushnadevaraya", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sreekrushnadevaraya/v21/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWb2FhQuXir.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sree Krushnadevaraya", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sree-krushnadevaraya/sree-krushnadevaraya-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sree-krushnadevaraya/sree-krushnadevaraya.svg" - }, - { - "name": "Sriracha", - "fontFamily": "Sriracha, cursive", - "slug": "sriracha", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sriracha/v14/0nkrC9D4IuYBgWcI9ObYRQDioeb0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sriracha", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sriracha/sriracha-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sriracha/sriracha.svg" - }, - { - "name": "Srisakdi", - "fontFamily": "Srisakdi, system-ui", - "slug": "srisakdi", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/srisakdi/v16/yMJRMIlvdpDbkB0A-jq8fSx5i814.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Srisakdi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/srisakdi/srisakdi-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/srisakdi/v16/yMJWMIlvdpDbkB0A-gIAUghxoNFxW0Hz.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Srisakdi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/srisakdi/srisakdi-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/srisakdi/srisakdi.svg" - }, - { - "name": "Staatliches", - "fontFamily": "Staatliches, system-ui", - "slug": "staatliches", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/staatliches/v13/HI_OiY8KO6hCsQSoAPmtMbectJG9O9PS.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Staatliches", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/staatliches/staatliches-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/staatliches/staatliches.svg" - }, - { - "name": "Stalemate", - "fontFamily": "Stalemate, cursive", - "slug": "stalemate", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/stalemate/v22/taiIGmZ_EJq97-UfkZRpuqSs8ZQpaQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stalemate", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stalemate/stalemate-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stalemate/stalemate.svg" - }, - { - "name": "Stalinist One", - "fontFamily": "Stalinist One, system-ui", - "slug": "stalinist-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/stalinistone/v56/MQpS-WezM9W4Dd7D3B7I-UT7eZ-UPyacPbo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stalinist One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stalinist-one/stalinist-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stalinist-one/stalinist-one.svg" - }, - { - "name": "Stardos Stencil", - "fontFamily": "Stardos Stencil, system-ui", - "slug": "stardos-stencil", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/stardosstencil/v15/X7n94bcuGPC8hrvEOHXOgaKCc2TR71R3tiSx0g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stardos Stencil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stardos-stencil/stardos-stencil-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/stardosstencil/v15/X7n44bcuGPC8hrvEOHXOgaKCc2TpU3tTvg-t29HSHw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Stardos Stencil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stardos-stencil/stardos-stencil-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stardos-stencil/stardos-stencil.svg" - }, - { - "name": "Stick", - "fontFamily": "Stick, sans-serif", - "slug": "stick", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/stick/v17/Qw3TZQpMCyTtJSvfvPVDMPoF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stick", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stick/stick-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stick/stick.svg" - }, - { - "name": "Stick No Bills", - "fontFamily": "Stick No Bills, sans-serif", - "slug": "stick-no-bills", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sticknobills/v15/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8Q7KriwKhcTKA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Stick No Bills", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stick-no-bills/stick-no-bills-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sticknobills/v15/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcV4cQ7KriwKhcTKA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Stick No Bills", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stick-no-bills/stick-no-bills-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sticknobills/v15/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVv8Q7KriwKhcTKA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stick No Bills", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stick-no-bills/stick-no-bills-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sticknobills/v15/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVjcQ7KriwKhcTKA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Stick No Bills", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stick-no-bills/stick-no-bills-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sticknobills/v15/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVYcM7KriwKhcTKA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Stick No Bills", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stick-no-bills/stick-no-bills-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sticknobills/v15/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVWMM7KriwKhcTKA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Stick No Bills", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stick-no-bills/stick-no-bills-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sticknobills/v15/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8M7KriwKhcTKA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Stick No Bills", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stick-no-bills/stick-no-bills-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stick-no-bills/stick-no-bills.svg" - }, - { - "name": "Stint Ultra Condensed", - "fontFamily": "Stint Ultra Condensed, serif", - "slug": "stint-ultra-condensed", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/stintultracondensed/v23/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-qhUO2cNvdg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stint Ultra Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stint-ultra-condensed/stint-ultra-condensed-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stint-ultra-condensed/stint-ultra-condensed.svg" - }, - { - "name": "Stint Ultra Expanded", - "fontFamily": "Stint Ultra Expanded, serif", - "slug": "stint-ultra-expanded", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/stintultraexpanded/v22/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qoATQkWwam.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stint Ultra Expanded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stint-ultra-expanded/stint-ultra-expanded-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stint-ultra-expanded/stint-ultra-expanded.svg" - }, - { - "name": "Stoke", - "fontFamily": "Stoke, serif", - "slug": "stoke", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/stoke/v24/z7NXdRb7aTMfKNvFVgxC_pjcTeWU.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Stoke", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stoke/stoke-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/stoke/v24/z7NadRb7aTMfKONpfihK1YTV.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stoke", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stoke/stoke-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stoke/stoke.svg" - }, - { - "name": "Strait", - "fontFamily": "Strait, sans-serif", - "slug": "strait", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/strait/v17/DtViJxy6WaEr1LZzeDhtkl0U7w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Strait", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/strait/strait-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/strait/strait.svg" - }, - { - "name": "Style Script", - "fontFamily": "Style Script, cursive", - "slug": "style-script", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/stylescript/v11/vm8xdRX3SV7Z0aPa88xzW5npeFT76NZnMw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Style Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/style-script/style-script-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/style-script/style-script.svg" - }, - { - "name": "Stylish", - "fontFamily": "Stylish, sans-serif", - "slug": "stylish", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/stylish/v22/m8JSjfhPYriQkk7-fo35dLxEdmo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stylish", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stylish/stylish-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/stylish/stylish.svg" - }, - { - "name": "Sue Ellen Francisco", - "fontFamily": "Sue Ellen Francisco, cursive", - "slug": "sue-ellen-francisco", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sueellenfrancisco/v20/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9ropF2lqk9H4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sue Ellen Francisco", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sue-ellen-francisco/sue-ellen-francisco-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sue-ellen-francisco/sue-ellen-francisco.svg" - }, - { - "name": "Suez One", - "fontFamily": "Suez One, serif", - "slug": "suez-one", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/suezone/v13/taiJGmd_EZ6rqscQgNFJkIqg-I0w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Suez One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/suez-one/suez-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/suez-one/suez-one.svg" - }, - { - "name": "Sulphur Point", - "fontFamily": "Sulphur Point, sans-serif", - "slug": "sulphur-point", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sulphurpoint/v15/RLpkK5vv8KaycDcazWFPBj2afVU6n6kFUHPIFaU.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sulphur Point", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sulphur-point/sulphur-point-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sulphurpoint/v15/RLp5K5vv8KaycDcazWFPBj2aRfkSu6EuTHo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sulphur Point", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sulphur-point/sulphur-point-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sulphurpoint/v15/RLpkK5vv8KaycDcazWFPBj2afUU9n6kFUHPIFaU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sulphur Point", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sulphur-point/sulphur-point-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sulphur-point/sulphur-point.svg" - }, - { - "name": "Sumana", - "fontFamily": "Sumana, serif", - "slug": "sumana", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sumana/v10/4UaDrE5TqRBjGj-G8Bji76zR4w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sumana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sumana/sumana-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sumana/v10/4UaArE5TqRBjGj--TDfG54fN6ppsKg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sumana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sumana/sumana-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sumana/sumana.svg" - }, - { - "name": "Sunflower", - "fontFamily": "Sunflower, sans-serif", - "slug": "sunflower", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sunflower/v16/RWmPoKeF8fUjqIj7Vc-06MfiqYsGBGBzCw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sunflower", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sunflower/sunflower-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sunflower/v16/RWmPoKeF8fUjqIj7Vc-0sMbiqYsGBGBzCw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sunflower", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sunflower/sunflower-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sunflower/v16/RWmPoKeF8fUjqIj7Vc-0-MDiqYsGBGBzCw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sunflower", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sunflower/sunflower-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sunflower/sunflower.svg" - }, - { - "name": "Sunshiney", - "fontFamily": "Sunshiney, cursive", - "slug": "sunshiney", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sunshiney/v24/LDIwapGTLBwsS-wT4vcgE8moUePWkg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sunshiney", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sunshiney/sunshiney-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sunshiney/sunshiney.svg" - }, - { - "name": "Supermercado One", - "fontFamily": "Supermercado One, system-ui", - "slug": "supermercado-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/supermercadoone/v26/OpNXnpQWg8jc_xps_Gi14kVVEXOn60b3MClBRTs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Supermercado One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/supermercado-one/supermercado-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/supermercado-one/supermercado-one.svg" - }, - { - "name": "Sura", - "fontFamily": "Sura, serif", - "slug": "sura", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sura/v19/SZc23FL5PbyzFf5UWzXtjUM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sura", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sura/sura-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/sura/v19/SZc53FL5PbyzLUJ7fz3GkUrS8DI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sura", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sura/sura-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/sura/sura.svg" - }, - { - "name": "Suranna", - "fontFamily": "Suranna, serif", - "slug": "suranna", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/suranna/v13/gokuH6ztGkFjWe58tBRZT2KmgP0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Suranna", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/suranna/suranna-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/suranna/suranna.svg" - }, - { - "name": "Suravaram", - "fontFamily": "Suravaram, serif", - "slug": "suravaram", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/suravaram/v21/_gP61R_usiY7SCym4xIAi261Qv9roQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Suravaram", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/suravaram/suravaram-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/suravaram/suravaram.svg" - }, - { - "name": "Suwannaphum", - "fontFamily": "Suwannaphum, serif", - "slug": "suwannaphum", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/suwannaphum/v31/jAnAgHV7GtDvc8jbe8hXXL3B9cSWXx2VZmk.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Suwannaphum", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/suwannaphum/suwannaphum-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/suwannaphum/v31/jAnfgHV7GtDvc8jbe8hXXL0J1-S8cRGcf3Ai.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Suwannaphum", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/suwannaphum/suwannaphum-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/suwannaphum/v31/jAnCgHV7GtDvc8jbe8hXXIWl_8C0Wg2V.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Suwannaphum", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/suwannaphum/suwannaphum-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/suwannaphum/v31/jAnfgHV7GtDvc8jbe8hXXL0Z0OS8cRGcf3Ai.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Suwannaphum", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/suwannaphum/suwannaphum-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/suwannaphum/v31/jAnfgHV7GtDvc8jbe8hXXL0h0uS8cRGcf3Ai.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Suwannaphum", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/suwannaphum/suwannaphum-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/suwannaphum/suwannaphum.svg" - }, - { - "name": "Swanky and Moo Moo", - "fontFamily": "Swanky and Moo Moo, cursive", - "slug": "swanky-and-moo-moo", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/swankyandmoomoo/v22/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUtbPkR64SYQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Swanky and Moo Moo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/swanky-and-moo-moo/swanky-and-moo-moo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/swanky-and-moo-moo/swanky-and-moo-moo.svg" - }, - { - "name": "Syncopate", - "fontFamily": "Syncopate, sans-serif", - "slug": "syncopate", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/syncopate/v21/pe0sMIuPIYBCpEV5eFdyAv2-C99ycg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Syncopate", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/syncopate/syncopate-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/syncopate/v21/pe0pMIuPIYBCpEV5eFdKvtKaA_Rue1UwVg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Syncopate", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/syncopate/syncopate-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/syncopate/syncopate.svg" - }, - { - "name": "Syne", - "fontFamily": "Syne, sans-serif", - "slug": "syne", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_04uT6kR47NCV5Z.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Syne", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/syne/syne-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_0KuT6kR47NCV5Z.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Syne", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/syne/syne-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6kR47NCV5Z.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Syne", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/syne/syne-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6kR47NCV5Z.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Syne", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/syne/syne-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_24vj6kR47NCV5Z.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Syne", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/syne/syne-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/syne/syne.svg" - }, - { - "name": "Syne Mono", - "fontFamily": "Syne Mono, monospace", - "slug": "syne-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/synemono/v15/K2FzfZNHj_FHBmRbFvHzIqCkDyvqZA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Syne Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/syne-mono/syne-mono-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/syne-mono/syne-mono.svg" - }, - { - "name": "Syne Tactile", - "fontFamily": "Syne Tactile, system-ui", - "slug": "syne-tactile", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/synetactile/v15/11hGGpna2UTQKjMCVzjAPMKh3ysdjvKU8Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Syne Tactile", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/syne-tactile/syne-tactile-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/syne-tactile/syne-tactile.svg" - }, - { - "name": "Tai Heritage Pro", - "fontFamily": "Tai Heritage Pro, serif", - "slug": "tai-heritage-pro", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/taiheritagepro/v6/sZlfdQid-zgaNiNIYcUzJMU3IYyNoHxSENxuLuE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tai Heritage Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tai-heritage-pro/tai-heritage-pro-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/taiheritagepro/v6/sZlYdQid-zgaNiNIYcUzJMU3IYyNmMB9NNRFMuhjCXY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tai Heritage Pro", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tai-heritage-pro/tai-heritage-pro-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tai-heritage-pro/tai-heritage-pro.svg" - }, - { - "name": "Tajawal", - "fontFamily": "Tajawal, sans-serif", - "slug": "tajawal", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l_6gLrZjiLlJ-G0.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Tajawal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tajawal/tajawal-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5qjLrZjiLlJ-G0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Tajawal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tajawal/tajawal-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tajawal/v9/Iura6YBj_oCad4k1rzaLCr5IlLA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tajawal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tajawal/tajawal-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l8KiLrZjiLlJ-G0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Tajawal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tajawal/tajawal-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l4qkLrZjiLlJ-G0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tajawal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tajawal/tajawal-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5anLrZjiLlJ-G0.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Tajawal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tajawal/tajawal-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l7KmLrZjiLlJ-G0.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Tajawal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tajawal/tajawal-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tajawal/tajawal.svg" - }, - { - "name": "Tangerine", - "fontFamily": "Tangerine, cursive", - "slug": "tangerine", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tangerine/v17/IurY6Y5j_oScZZow4VOBDpxNhLBQ4Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tangerine", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tangerine/tangerine-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tangerine/v17/Iurd6Y5j_oScZZow4VO5srNpjJtM6G0t9w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tangerine", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tangerine/tangerine-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tangerine/tangerine.svg" - }, - { - "name": "Tapestry", - "fontFamily": "Tapestry, cursive", - "slug": "tapestry", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tapestry/v4/SlGTmQecrosEYXhaGBIkqnB6aSQU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tapestry", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tapestry/tapestry-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tapestry/tapestry.svg" - }, - { - "name": "Taprom", - "fontFamily": "Taprom, system-ui", - "slug": "taprom", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/taprom/v27/UcCn3F82JHycULbFQyk3-0kvHg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Taprom", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/taprom/taprom-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/taprom/taprom.svg" - }, - { - "name": "Tauri", - "fontFamily": "Tauri, sans-serif", - "slug": "tauri", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tauri/v18/TwMA-IISS0AM3IpVWHU_TBqO.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tauri", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tauri/tauri-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tauri/tauri.svg" - }, - { - "name": "Taviraj", - "fontFamily": "Taviraj, serif", - "slug": "taviraj", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/taviraj/v13/ahcbv8Cj3ylylTXzRIorV8N1jU2gog.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Taviraj", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/taviraj/taviraj-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/taviraj/v13/ahcdv8Cj3ylylTXzTOwTM8lxr0iwolLl.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Taviraj", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/taviraj/taviraj-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/taviraj/v13/ahccv8Cj3ylylTXzRCYKd-lbgUS5u0s.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Taviraj", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/taviraj/taviraj-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/taviraj/v13/ahcev8Cj3ylylTXzTOwTn-hRhWa8q0v8ag.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Taviraj", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/taviraj/taviraj-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/taviraj/v13/ahccv8Cj3ylylTXzREIJd-lbgUS5u0s.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Taviraj", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/taviraj/taviraj-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/taviraj/v13/ahcev8Cj3ylylTXzTOwT--tRhWa8q0v8ag.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Taviraj", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/taviraj/taviraj-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/taviraj/v13/ahcZv8Cj3ylylTXzfO4hU-FwnU0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Taviraj", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/taviraj/taviraj-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/taviraj/v13/ahcbv8Cj3ylylTXzTOwrV8N1jU2gog.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Taviraj", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/taviraj/taviraj-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/taviraj/v13/ahccv8Cj3ylylTXzRBoId-lbgUS5u0s.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Taviraj", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/taviraj/taviraj-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/taviraj/v13/ahcev8Cj3ylylTXzTOwTo-pRhWa8q0v8ag.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Taviraj", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/taviraj/taviraj-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/taviraj/v13/ahccv8Cj3ylylTXzRDYPd-lbgUS5u0s.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Taviraj", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/taviraj/taviraj-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/taviraj/v13/ahcev8Cj3ylylTXzTOwTj-1RhWa8q0v8ag.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Taviraj", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/taviraj/taviraj-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/taviraj/v13/ahccv8Cj3ylylTXzRFIOd-lbgUS5u0s.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Taviraj", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/taviraj/taviraj-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/taviraj/v13/ahcev8Cj3ylylTXzTOwT6-xRhWa8q0v8ag.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Taviraj", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/taviraj/taviraj-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/taviraj/v13/ahccv8Cj3ylylTXzRE4Nd-lbgUS5u0s.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Taviraj", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/taviraj/taviraj-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/taviraj/v13/ahcev8Cj3ylylTXzTOwT9-9RhWa8q0v8ag.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Taviraj", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/taviraj/taviraj-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/taviraj/v13/ahccv8Cj3ylylTXzRGoMd-lbgUS5u0s.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Taviraj", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/taviraj/taviraj-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/taviraj/v13/ahcev8Cj3ylylTXzTOwT0-5RhWa8q0v8ag.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Taviraj", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/taviraj/taviraj-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/taviraj/taviraj.svg" - }, - { - "name": "Teko", - "fontFamily": "Teko, sans-serif", - "slug": "teko", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/teko/v20/LYjYdG7kmE0gV69VVPPdFl06VN9JG7Sy3TKEvkCF.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Teko", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/teko/teko-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/teko/v20/LYjYdG7kmE0gV69VVPPdFl06VN8XG7Sy3TKEvkCF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Teko", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/teko/teko-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/teko/v20/LYjYdG7kmE0gV69VVPPdFl06VN8lG7Sy3TKEvkCF.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Teko", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/teko/teko-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/teko/v20/LYjYdG7kmE0gV69VVPPdFl06VN_JHLSy3TKEvkCF.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Teko", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/teko/teko-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/teko/v20/LYjYdG7kmE0gV69VVPPdFl06VN_wHLSy3TKEvkCF.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Teko", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/teko/teko-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/teko/teko.svg" - }, - { - "name": "Tektur", - "fontFamily": "Tektur, system-ui", - "slug": "tektur", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tektur/v3/XoHN2YHtS7q969kXCjzlV0aSkS_o8OacmTe0TYlYFot8TrwuVYtOY8P7TWd0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tektur", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tektur/tektur-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tektur/v3/XoHN2YHtS7q969kXCjzlV0aSkS_o8OacmTe0TYlYFot8TrwcVYtOY8P7TWd0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Tektur", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tektur/tektur-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tektur/v3/XoHN2YHtS7q969kXCjzlV0aSkS_o8OacmTe0TYlYFot8TrzwUotOY8P7TWd0.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Tektur", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tektur/tektur-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tektur/v3/XoHN2YHtS7q969kXCjzlV0aSkS_o8OacmTe0TYlYFot8TrzJUotOY8P7TWd0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tektur", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tektur/tektur-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tektur/v3/XoHN2YHtS7q969kXCjzlV0aSkS_o8OacmTe0TYlYFot8TryuUotOY8P7TWd0.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Tektur", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tektur/tektur-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tektur/v3/XoHN2YHtS7q969kXCjzlV0aSkS_o8OacmTe0TYlYFot8TryHUotOY8P7TWd0.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Tektur", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tektur/tektur-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tektur/tektur.svg" - }, - { - "name": "Telex", - "fontFamily": "Telex, sans-serif", - "slug": "telex", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/telex/v17/ieVw2Y1fKWmIO9fTB1piKFIf.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Telex", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/telex/telex-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/telex/telex.svg" - }, - { - "name": "Tenali Ramakrishna", - "fontFamily": "Tenali Ramakrishna, sans-serif", - "slug": "tenali-ramakrishna", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tenaliramakrishna/v12/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8KJXqUFFvtA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tenali Ramakrishna", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tenali-ramakrishna/tenali-ramakrishna-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tenali-ramakrishna/tenali-ramakrishna.svg" - }, - { - "name": "Tenor Sans", - "fontFamily": "Tenor Sans, sans-serif", - "slug": "tenor-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tenorsans/v19/bx6ANxqUneKx06UkIXISr3JyC22IyqI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tenor Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tenor-sans/tenor-sans-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tenor-sans/tenor-sans.svg" - }, - { - "name": "Text Me One", - "fontFamily": "Text Me One, sans-serif", - "slug": "text-me-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/textmeone/v24/i7dOIFdlayuLUvgoFvHQFWZcalayGhyV.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Text Me One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/text-me-one/text-me-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/text-me-one/text-me-one.svg" - }, - { - "name": "Texturina", - "fontFamily": "Texturina, serif", - "slug": "texturina", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/texturina/v28/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYG_Ug25riW1OD.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Texturina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/texturina/texturina-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/texturina/v28/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYGvUg25riW1OD.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Texturina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/texturina/texturina-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/texturina/v28/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2fGGvUg25riW1OD.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Texturina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/texturina/texturina-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/texturina/v28/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYGvUg25riW1OD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Texturina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/texturina/texturina-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/texturina/v28/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eqGvUg25riW1OD.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Texturina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/texturina/texturina-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/texturina/v28/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2dGHfUg25riW1OD.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Texturina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/texturina/texturina-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/texturina/v28/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2d_HfUg25riW1OD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Texturina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/texturina/texturina-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/texturina/v28/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYHfUg25riW1OD.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Texturina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/texturina/texturina-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/texturina/v28/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cxHfUg25riW1OD.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Texturina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/texturina/texturina-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/texturina/v28/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1i0Z7AXkODN94.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Texturina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/texturina/texturina-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/texturina/v28/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1j0Z7AXkODN94.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Texturina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/texturina/texturina-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/texturina/v28/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWUNj0Z7AXkODN94.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Texturina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/texturina/texturina-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/texturina/v28/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1j0Z7AXkODN94.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Texturina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/texturina/texturina-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/texturina/v28/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWS9j0Z7AXkODN94.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Texturina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/texturina/texturina-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/texturina/v28/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWcNk0Z7AXkODN94.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Texturina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/texturina/texturina-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/texturina/v28/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWfpk0Z7AXkODN94.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Texturina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/texturina/texturina-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/texturina/v28/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1k0Z7AXkODN94.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Texturina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/texturina/texturina-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/texturina/v28/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWbRk0Z7AXkODN94.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Texturina", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/texturina/texturina-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/texturina/texturina.svg" - }, - { - "name": "Thasadith", - "fontFamily": "Thasadith, sans-serif", - "slug": "thasadith", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/thasadith/v11/mtG44_1TIqPYrd_f5R1YsEkU0CWuFw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Thasadith", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/thasadith/thasadith-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/thasadith/v11/mtG-4_1TIqPYrd_f5R1oskMQ8iC-F1ZE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Thasadith", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/thasadith/thasadith-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/thasadith/v11/mtG94_1TIqPYrd_f5R1gDGYw2A6yHk9d8w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Thasadith", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/thasadith/thasadith-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/thasadith/v11/mtGj4_1TIqPYrd_f5R1osnus3QS2PEpN8zxA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Thasadith", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/thasadith/thasadith-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/thasadith/thasadith.svg" - }, - { - "name": "The Girl Next Door", - "fontFamily": "The Girl Next Door, cursive", - "slug": "the-girl-next-door", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/thegirlnextdoor/v22/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIV7t7w6bE2A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "The Girl Next Door", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/the-girl-next-door/the-girl-next-door-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/the-girl-next-door/the-girl-next-door.svg" - }, - { - "name": "The Nautigal", - "fontFamily": "The Nautigal, cursive", - "slug": "the-nautigal", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/thenautigal/v6/VdGZAZ8ZH51Lvng9fQV2bfKr5wVk09Se5Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "The Nautigal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/the-nautigal/the-nautigal-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/thenautigal/v6/VdGGAZ8ZH51Lvng9fQV2bfKTWypA2_-C7LoS7g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "The Nautigal", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/the-nautigal/the-nautigal-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/the-nautigal/the-nautigal.svg" - }, - { - "name": "Tienne", - "fontFamily": "Tienne, serif", - "slug": "tienne", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tienne/v20/AYCKpX7pe9YCRP0LkEPHSFNyxw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tienne", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tienne/tienne-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zLGzjQHhuzvef5Q.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tienne", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tienne/tienne-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zFG7jQHhuzvef5Q.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Tienne", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tienne/tienne-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tienne/tienne.svg" - }, - { - "name": "Tillana", - "fontFamily": "Tillana, system-ui", - "slug": "tillana", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tillana/v13/VuJxdNvf35P4qJ1OeKbXOIFneRo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tillana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tillana/tillana-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tillana/v13/VuJ0dNvf35P4qJ1OQFL-HIlMZRNcp0o.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Tillana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tillana/tillana-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tillana/v13/VuJ0dNvf35P4qJ1OQH75HIlMZRNcp0o.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Tillana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tillana/tillana-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tillana/v13/VuJ0dNvf35P4qJ1OQBr4HIlMZRNcp0o.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tillana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tillana/tillana-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tillana/v13/VuJ0dNvf35P4qJ1OQAb7HIlMZRNcp0o.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Tillana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tillana/tillana-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tillana/tillana.svg" - }, - { - "name": "Tilt Neon", - "fontFamily": "Tilt Neon, system-ui", - "slug": "tilt-neon", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tiltneon/v10/E21L_d7gguXdwD9LEFY2WCeElCNtd-eBqpHp1TzrkJSmwpj5ndxquXK9WualJ9DS.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tilt Neon", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tilt-neon/tilt-neon-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tilt-neon/tilt-neon.svg" - }, - { - "name": "Tilt Prism", - "fontFamily": "Tilt Prism, system-ui", - "slug": "tilt-prism", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tiltprism/v11/5h11iZgyPHoZ3YikNzWGfWey2dCAZXT-bH9V4VGn-FJ7tLI25oc_rIbwoTSrn86NKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tilt Prism", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tilt-prism/tilt-prism-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tilt-prism/tilt-prism.svg" - }, - { - "name": "Tilt Warp", - "fontFamily": "Tilt Warp, system-ui", - "slug": "tilt-warp", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tiltwarp/v12/AlZc_zVDs5XpmO7yn3w7flUoytXJp3z29uEwmEMLEJljLXvT8UJSZTBxAVfMGOPb.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tilt Warp", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tilt-warp/tilt-warp-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tilt-warp/tilt-warp.svg" - }, - { - "name": "Timmana", - "fontFamily": "Timmana, sans-serif", - "slug": "timmana", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/timmana/v12/6xKvdShfL9yK-rvpCmvbKHwJUOM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Timmana", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/timmana/timmana-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/timmana/timmana.svg" - }, - { - "name": "Tinos", - "fontFamily": "Tinos, serif", - "slug": "tinos", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tinos/v24/buE4poGnedXvwgX8dGVh8TI-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tinos", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tinos/tinos-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tinos/v24/buE2poGnedXvwjX-fmFD9CI-4NU.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tinos", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tinos/tinos-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tinos/v24/buE1poGnedXvwj1AW0Fp2i43-cxL.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tinos", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tinos/tinos-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tinos/v24/buEzpoGnedXvwjX-Rt1s0CoV_NxLeiw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Tinos", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tinos/tinos-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tinos/tinos.svg" - }, - { - "name": "Tiro Bangla", - "fontFamily": "Tiro Bangla, serif", - "slug": "tiro-bangla", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tirobangla/v6/IFSgHe1Tm95E3O8b5i2V8MG9-UPeuz4i.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Bangla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-bangla/tiro-bangla-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tirobangla/v6/IFSiHe1Tm95E3O8b5i2V8PG_80f8vi4imBM.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Bangla", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-bangla/tiro-bangla-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-bangla/tiro-bangla.svg" - }, - { - "name": "Tiro Devanagari Hindi", - "fontFamily": "Tiro Devanagari Hindi, serif", - "slug": "tiro-devanagari-hindi", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tirodevanagarihindi/v5/55xyezN7P8T4e0_CfIJrwdodg9HoYw0i-M9fSOkOfG0Y3A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Devanagari Hindi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-devanagari-hindi/tiro-devanagari-hindi-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tirodevanagarihindi/v5/55x8ezN7P8T4e0_CfIJrwdodg9HoYw0i-M9vSuMKXmgI3F_o.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Devanagari Hindi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-devanagari-hindi/tiro-devanagari-hindi-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-devanagari-hindi/tiro-devanagari-hindi.svg" - }, - { - "name": "Tiro Devanagari Marathi", - "fontFamily": "Tiro Devanagari Marathi, serif", - "slug": "tiro-devanagari-marathi", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1xPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkotDrDJYM2lAZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Devanagari Marathi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-devanagari-marathi/tiro-devanagari-marathi-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1zPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkouDpBpIu30AZbUY.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Devanagari Marathi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-devanagari-marathi/tiro-devanagari-marathi-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-devanagari-marathi/tiro-devanagari-marathi.svg" - }, - { - "name": "Tiro Devanagari Sanskrit", - "fontFamily": "Tiro Devanagari Sanskrit, serif", - "slug": "tiro-devanagari-sanskrit", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoAzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59pEoEqgtOh0w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Devanagari Sanskrit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-devanagari-sanskrit/tiro-devanagari-sanskrit-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoGzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59ZEIsuoNax06MM.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Devanagari Sanskrit", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-devanagari-sanskrit/tiro-devanagari-sanskrit-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-devanagari-sanskrit/tiro-devanagari-sanskrit.svg" - }, - { - "name": "Tiro Gurmukhi", - "fontFamily": "Tiro Gurmukhi, serif", - "slug": "tiro-gurmukhi", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tirogurmukhi/v6/x3dmckXSYq-Uqjc048JUF7Jvly7HAQsyA2Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-gurmukhi/tiro-gurmukhi-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tirogurmukhi/v6/x3d4ckXSYq-Uqjc048JUF7JvpyzNBSk3E2YljQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Gurmukhi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-gurmukhi/tiro-gurmukhi-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-gurmukhi/tiro-gurmukhi.svg" - }, - { - "name": "Tiro Kannada", - "fontFamily": "Tiro Kannada, serif", - "slug": "tiro-kannada", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tirokannada/v6/CSR44ztKmvqaDxEDJFY7CIYKSPl6tOU9Eg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-kannada/tiro-kannada-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tirokannada/v6/CSRm4ztKmvqaDxEDJFY7CIY6SvN-luAtEnKp.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Kannada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-kannada/tiro-kannada-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-kannada/tiro-kannada.svg" - }, - { - "name": "Tiro Tamil", - "fontFamily": "Tiro Tamil, serif", - "slug": "tiro-tamil", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tirotamil/v10/m8JXjfVIf7OT22n3M-S_ULRvamODxdI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-tamil/tiro-tamil-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tirotamil/v10/m8JVjfVIf7OT22n3M-S_YLZlbkGG1dKEDw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Tamil", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-tamil/tiro-tamil-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-tamil/tiro-tamil.svg" - }, - { - "name": "Tiro Telugu", - "fontFamily": "Tiro Telugu, serif", - "slug": "tiro-telugu", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tirotelugu/v7/aFTQ7PxlZWk2EPiSymjXdKSNQqn0X0BO.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-telugu/tiro-telugu-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tirotelugu/v7/aFTS7PxlZWk2EPiSymjXdJSPSK3WWlBOoas.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Telugu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-telugu/tiro-telugu-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tiro-telugu/tiro-telugu.svg" - }, - { - "name": "Titan One", - "fontFamily": "Titan One, system-ui", - "slug": "titan-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/titanone/v15/mFTzWbsGxbbS_J5cQcjykzIn2Etikg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Titan One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/titan-one/titan-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/titan-one/titan-one.svg" - }, - { - "name": "Titillium Web", - "fontFamily": "Titillium Web, sans-serif", - "slug": "titillium-web", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/titilliumweb/v17/NaPDcZTIAOhVxoMyOr9n_E7ffAzHKIx5YrSYqWM.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Titillium Web", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/titillium-web/titillium-web-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/titilliumweb/v17/NaPFcZTIAOhVxoMyOr9n_E7fdMbewI1zZpaduWMmxA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Titillium Web", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/titillium-web/titillium-web-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/titilliumweb/v17/NaPDcZTIAOhVxoMyOr9n_E7ffGjEKIx5YrSYqWM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Titillium Web", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/titillium-web/titillium-web-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/titilliumweb/v17/NaPFcZTIAOhVxoMyOr9n_E7fdMbepI5zZpaduWMmxA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Titillium Web", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/titillium-web/titillium-web-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/titilliumweb/v17/NaPecZTIAOhVxoMyOr9n_E7fRMTsDIRSfr0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Titillium Web", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/titillium-web/titillium-web-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/titilliumweb/v17/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCKZXbr2BsA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Titillium Web", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/titillium-web/titillium-web-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/titilliumweb/v17/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIx5YrSYqWM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Titillium Web", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/titillium-web/titillium-web-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/titilliumweb/v17/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzZpaduWMmxA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Titillium Web", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/titillium-web/titillium-web-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/titilliumweb/v17/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIx5YrSYqWM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Titillium Web", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/titillium-web/titillium-web-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/titilliumweb/v17/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZpaduWMmxA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Titillium Web", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/titillium-web/titillium-web-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/titilliumweb/v17/NaPDcZTIAOhVxoMyOr9n_E7ffEDBKIx5YrSYqWM.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Titillium Web", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/titillium-web/titillium-web-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/titillium-web/titillium-web.svg" - }, - { - "name": "Tomorrow", - "fontFamily": "Tomorrow, sans-serif", - "slug": "tomorrow", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tomorrow/v17/WBLgrETNbFtZCeGqgR2xe2XiKMiokE4.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Tomorrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tomorrow/tomorrow-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tomorrow/v17/WBLirETNbFtZCeGqgRXXQwHoLOqtgE5h0A.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Tomorrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tomorrow/tomorrow-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tomorrow/v17/WBLhrETNbFtZCeGqgR0dWkXIBsShiVd4.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Tomorrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tomorrow/tomorrow-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tomorrow/v17/WBLjrETNbFtZCeGqgRXXQ63JDMCDjEd4yVY.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Tomorrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tomorrow/tomorrow-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tomorrow/v17/WBLhrETNbFtZCeGqgR15WUXIBsShiVd4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Tomorrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tomorrow/tomorrow-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tomorrow/v17/WBLjrETNbFtZCeGqgRXXQ8nKDMCDjEd4yVY.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Tomorrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tomorrow/tomorrow-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tomorrow/v17/WBLmrETNbFtZCeGqgSXVcWHALdio.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tomorrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tomorrow/tomorrow-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tomorrow/v17/WBLgrETNbFtZCeGqgRXXe2XiKMiokE4.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tomorrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tomorrow/tomorrow-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tomorrow/v17/WBLhrETNbFtZCeGqgR0hWEXIBsShiVd4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Tomorrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tomorrow/tomorrow-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tomorrow/v17/WBLjrETNbFtZCeGqgRXXQ5HLDMCDjEd4yVY.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Tomorrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tomorrow/tomorrow-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tomorrow/v17/WBLhrETNbFtZCeGqgR0NX0XIBsShiVd4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Tomorrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tomorrow/tomorrow-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tomorrow/v17/WBLjrETNbFtZCeGqgRXXQ73MDMCDjEd4yVY.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Tomorrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tomorrow/tomorrow-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tomorrow/v17/WBLhrETNbFtZCeGqgR1pXkXIBsShiVd4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tomorrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tomorrow/tomorrow-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tomorrow/v17/WBLjrETNbFtZCeGqgRXXQ9nNDMCDjEd4yVY.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Tomorrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tomorrow/tomorrow-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tomorrow/v17/WBLhrETNbFtZCeGqgR11XUXIBsShiVd4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Tomorrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tomorrow/tomorrow-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tomorrow/v17/WBLjrETNbFtZCeGqgRXXQ8XODMCDjEd4yVY.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Tomorrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tomorrow/tomorrow-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tomorrow/v17/WBLhrETNbFtZCeGqgR1RXEXIBsShiVd4.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Tomorrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tomorrow/tomorrow-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tomorrow/v17/WBLjrETNbFtZCeGqgRXXQ-HPDMCDjEd4yVY.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Tomorrow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tomorrow/tomorrow-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tomorrow/tomorrow.svg" - }, - { - "name": "Tourney", - "fontFamily": "Tourney, system-ui", - "slug": "tourney", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tourney/v13/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQByZTp1I1LcGA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Tourney", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tourney/tourney-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tourney/v13/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQFyZTp1I1LcGA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Tourney", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tourney/tourney-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tourney/v13/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GZwFyZTp1I1LcGA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Tourney", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tourney/tourney-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tourney/v13/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQFyZTp1I1LcGA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tourney", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tourney/tourney-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tourney/v13/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GCwFyZTp1I1LcGA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Tourney", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tourney/tourney-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tourney/v13/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G5wZyZTp1I1LcGA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Tourney", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tourney/tourney-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tourney/v13/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G3gZyZTp1I1LcGA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tourney", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tourney/tourney-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tourney/v13/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQZyZTp1I1LcGA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Tourney", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tourney/tourney-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tourney/v13/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GkAZyZTp1I1LcGA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Tourney", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tourney/tourney-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tourney/v13/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJzBxAVfMGOPb.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Tourney", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tourney/tourney-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tourney/v13/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaJjBxAVfMGOPb.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Tourney", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tourney/tourney-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tourney/v13/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8ULEJjBxAVfMGOPb.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Tourney", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tourney/tourney-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tourney/v13/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJjBxAVfMGOPb.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tourney", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tourney/tourney-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tourney/v13/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKoJjBxAVfMGOPb.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Tourney", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tourney/tourney-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tourney/v13/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJEITBxAVfMGOPb.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Tourney", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tourney/tourney-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tourney/v13/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJ9ITBxAVfMGOPb.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Tourney", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tourney/tourney-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tourney/v13/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaITBxAVfMGOPb.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Tourney", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tourney/tourney-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tourney/v13/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIzITBxAVfMGOPb.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Tourney", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tourney/tourney-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tourney/tourney.svg" - }, - { - "name": "Trade Winds", - "fontFamily": "Trade Winds, system-ui", - "slug": "trade-winds", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tradewinds/v17/AYCPpXPpYNIIT7h8-QenM3Jq7PKP5Z_G.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Trade Winds", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trade-winds/trade-winds-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trade-winds/trade-winds.svg" - }, - { - "name": "Train One", - "fontFamily": "Train One, system-ui", - "slug": "train-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trainone/v13/gyB-hwkiNtc6KnxUVjWHOqbZRY7JVQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Train One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/train-one/train-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/train-one/train-one.svg" - }, - { - "name": "Trirong", - "fontFamily": "Trirong, serif", - "slug": "trirong", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trirong/v15/7r3EqXNgp8wxdOdOl-go3YRl6ujngw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Trirong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trirong/trirong-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trirong/v15/7r3CqXNgp8wxdOdOn44QuY5hyO33g8IY.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Trirong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trirong/trirong-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trirong/v15/7r3DqXNgp8wxdOdOl0QJ_a5L5uH-mts.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Trirong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trirong/trirong-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trirong/v15/7r3BqXNgp8wxdOdOn44QFa9B4sP7itsB5g.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Trirong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trirong/trirong-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trirong/v15/7r3DqXNgp8wxdOdOlyAK_a5L5uH-mts.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Trirong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trirong/trirong-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trirong/v15/7r3BqXNgp8wxdOdOn44QcaxB4sP7itsB5g.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Trirong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trirong/trirong-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trirong/v15/7r3GqXNgp8wxdOdOr4wi2aZg-ug.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Trirong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trirong/trirong-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trirong/v15/7r3EqXNgp8wxdOdOn44o3YRl6ujngw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Trirong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trirong/trirong-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trirong/v15/7r3DqXNgp8wxdOdOl3gL_a5L5uH-mts.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Trirong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trirong/trirong-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trirong/v15/7r3BqXNgp8wxdOdOn44QKa1B4sP7itsB5g.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Trirong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trirong/trirong-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trirong/v15/7r3DqXNgp8wxdOdOl1QM_a5L5uH-mts.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Trirong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trirong/trirong-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trirong/v15/7r3BqXNgp8wxdOdOn44QBapB4sP7itsB5g.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Trirong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trirong/trirong-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trirong/v15/7r3DqXNgp8wxdOdOlzAN_a5L5uH-mts.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Trirong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trirong/trirong-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trirong/v15/7r3BqXNgp8wxdOdOn44QYatB4sP7itsB5g.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Trirong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trirong/trirong-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trirong/v15/7r3DqXNgp8wxdOdOlywO_a5L5uH-mts.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Trirong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trirong/trirong-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trirong/v15/7r3BqXNgp8wxdOdOn44QfahB4sP7itsB5g.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Trirong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trirong/trirong-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trirong/v15/7r3DqXNgp8wxdOdOlwgP_a5L5uH-mts.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Trirong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trirong/trirong-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trirong/v15/7r3BqXNgp8wxdOdOn44QWalB4sP7itsB5g.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Trirong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trirong/trirong-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trirong/trirong.svg" - }, - { - "name": "Trispace", - "fontFamily": "Trispace, sans-serif", - "slug": "trispace", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trispace/v24/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9qoQl0zHugpt0.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Trispace", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trispace/trispace-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trispace/v24/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9roQl0zHugpt0.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Trispace", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trispace/trispace-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trispace/v24/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbCFroQl0zHugpt0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Trispace", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trispace/trispace-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trispace/v24/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9roQl0zHugpt0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Trispace", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trispace/trispace-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trispace/v24/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbE1roQl0zHugpt0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Trispace", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trispace/trispace-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trispace/v24/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbKFsoQl0zHugpt0.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Trispace", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trispace/trispace-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trispace/v24/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbJhsoQl0zHugpt0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Trispace", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trispace/trispace-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trispace/v24/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9soQl0zHugpt0.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Trispace", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trispace/trispace-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trispace/trispace.svg" - }, - { - "name": "Trocchi", - "fontFamily": "Trocchi, serif", - "slug": "trocchi", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trocchi/v17/qWcqB6WkuIDxDZLcDrtUvMeTYD0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Trocchi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trocchi/trocchi-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trocchi/trocchi.svg" - }, - { - "name": "Trochut", - "fontFamily": "Trochut, system-ui", - "slug": "trochut", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trochut/v22/CHyjV-fDDlP9bDIw5nSIfVIPLns.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Trochut", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trochut/trochut-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trochut/v22/CHyhV-fDDlP9bDIw1naCeXAKPns8jw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Trochut", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trochut/trochut-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trochut/v22/CHymV-fDDlP9bDIw3sinWVokMnIllmA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Trochut", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trochut/trochut-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trochut/trochut.svg" - }, - { - "name": "Truculenta", - "fontFamily": "Truculenta, sans-serif", - "slug": "truculenta", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAjswcFHnJMMhg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Truculenta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/truculenta/truculenta-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAiswcFHnJMMhg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Truculenta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/truculenta/truculenta-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMg4iswcFHnJMMhg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Truculenta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/truculenta/truculenta-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAiswcFHnJMMhg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Truculenta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/truculenta/truculenta-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMmIiswcFHnJMMhg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Truculenta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/truculenta/truculenta-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMo4lswcFHnJMMhg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Truculenta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/truculenta/truculenta-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMrclswcFHnJMMhg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Truculenta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/truculenta/truculenta-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAlswcFHnJMMhg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Truculenta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/truculenta/truculenta-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMvklswcFHnJMMhg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Truculenta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/truculenta/truculenta-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/truculenta/truculenta.svg" - }, - { - "name": "Trykker", - "fontFamily": "Trykker, serif", - "slug": "trykker", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/trykker/v21/KtktALyWZJXudUPzhNnoOd2j22U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Trykker", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trykker/trykker-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/trykker/trykker.svg" - }, - { - "name": "Tsukimi Rounded", - "fontFamily": "Tsukimi Rounded, sans-serif", - "slug": "tsukimi-rounded", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tsukimirounded/v10/sJoZ3LJNksWZO0LvnZwkF3HtoB7VkVsqN7MT3T9X8g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Tsukimi Rounded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tsukimi-rounded/tsukimi-rounded-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tsukimirounded/v10/sJoc3LJNksWZO0LvnZwkF3HtoB7tPXMOP5gP1A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tsukimi Rounded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tsukimi-rounded/tsukimi-rounded-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tsukimirounded/v10/sJoZ3LJNksWZO0LvnZwkF3HtoB7VyVoqN7MT3T9X8g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Tsukimi Rounded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tsukimi-rounded/tsukimi-rounded-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tsukimirounded/v10/sJoZ3LJNksWZO0LvnZwkF3HtoB7V5V0qN7MT3T9X8g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Tsukimi Rounded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tsukimi-rounded/tsukimi-rounded-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tsukimirounded/v10/sJoZ3LJNksWZO0LvnZwkF3HtoB7VgVwqN7MT3T9X8g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tsukimi Rounded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tsukimi-rounded/tsukimi-rounded-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tsukimi-rounded/tsukimi-rounded.svg" - }, - { - "name": "Tulpen One", - "fontFamily": "Tulpen One, system-ui", - "slug": "tulpen-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/tulpenone/v25/dFa6ZfeC474skLgesc0CWj0w_HyIRlE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tulpen One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tulpen-one/tulpen-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/tulpen-one/tulpen-one.svg" - }, - { - "name": "Turret Road", - "fontFamily": "Turret Road, system-ui", - "slug": "turret-road", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/turretroad/v9/pxidypMgpcBFjE84Zv-fE0ONEdeLYk1Mq3ap.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Turret Road", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/turret-road/turret-road-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/turretroad/v9/pxidypMgpcBFjE84Zv-fE0PpEteLYk1Mq3ap.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Turret Road", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/turret-road/turret-road-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/turretroad/v9/pxiAypMgpcBFjE84Zv-fE3tFOvODSVFF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Turret Road", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/turret-road/turret-road-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/turretroad/v9/pxidypMgpcBFjE84Zv-fE0OxE9eLYk1Mq3ap.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Turret Road", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/turret-road/turret-road-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/turretroad/v9/pxidypMgpcBFjE84Zv-fE0P5FdeLYk1Mq3ap.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Turret Road", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/turret-road/turret-road-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/turretroad/v9/pxidypMgpcBFjE84Zv-fE0PlFteLYk1Mq3ap.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Turret Road", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/turret-road/turret-road-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/turret-road/turret-road.svg" - }, - { - "name": "Twinkle Star", - "fontFamily": "Twinkle Star, cursive", - "slug": "twinkle-star", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/twinklestar/v6/pe0pMI6IL4dPoFl9LGEmY6WaA_Rue1UwVg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Twinkle Star", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/twinkle-star/twinkle-star-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/twinkle-star/twinkle-star.svg" - }, - { - "name": "Ubuntu", - "fontFamily": "Ubuntu, sans-serif", - "slug": "ubuntu", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoC1CzTt2aMH4V_gg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Ubuntu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ubuntu/ubuntu-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZftWyIPYBvgpUI.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Ubuntu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ubuntu/ubuntu-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgo6eAT3v02QFg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ubuntu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ubuntu/ubuntu-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ubuntu/v20/4iCu6KVjbNBYlgoKeg7znUiAFpxm.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Ubuntu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ubuntu/ubuntu-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3Tt2aMH4V_gg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Ubuntu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ubuntu/ubuntu-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejYHtGyIPYBvgpUI.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Ubuntu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ubuntu/ubuntu-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvTt2aMH4V_gg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Ubuntu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ubuntu/ubuntu-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZPsmyIPYBvgpUI.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Ubuntu", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ubuntu/ubuntu-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ubuntu/ubuntu.svg" - }, - { - "name": "Ubuntu Condensed", - "fontFamily": "Ubuntu Condensed, sans-serif", - "slug": "ubuntu-condensed", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ubuntucondensed/v16/u-4k0rCzjgs5J7oXnJcM_0kACGMtf-fVqvHoJXw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ubuntu Condensed", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ubuntu-condensed/ubuntu-condensed-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ubuntu-condensed/ubuntu-condensed.svg" - }, - { - "name": "Ubuntu Mono", - "fontFamily": "Ubuntu Mono, monospace", - "slug": "ubuntu-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ubuntumono/v17/KFOjCneDtsqEr0keqCMhbBc9AMX6lJBP.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ubuntu Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ubuntu-mono/ubuntu-mono-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ubuntumono/v17/KFOhCneDtsqEr0keqCMhbCc_CsHYkYBPY3o.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Ubuntu Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ubuntu-mono/ubuntu-mono-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ubuntumono/v17/KFO-CneDtsqEr0keqCMhbC-BL-Hyv4xGemO1.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Ubuntu Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ubuntu-mono/ubuntu-mono-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ubuntumono/v17/KFO8CneDtsqEr0keqCMhbCc_Mn33tYhkf3O1GVg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Ubuntu Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ubuntu-mono/ubuntu-mono-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ubuntu-mono/ubuntu-mono.svg" - }, - { - "name": "Uchen", - "fontFamily": "Uchen, serif", - "slug": "uchen", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/uchen/v9/nKKZ-GokGZ1baIaSEQGodLxA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Uchen", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/uchen/uchen-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/uchen/uchen.svg" - }, - { - "name": "Ultra", - "fontFamily": "Ultra, serif", - "slug": "ultra", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ultra/v23/zOLy4prXmrtY-tT6yLOD6NxF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ultra", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ultra/ultra-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ultra/ultra.svg" - }, - { - "name": "Unbounded", - "fontFamily": "Unbounded, sans-serif", - "slug": "unbounded", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG65jx043HgP6LR0Y.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Unbounded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unbounded/unbounded-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG60bx043HgP6LR0Y.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Unbounded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unbounded/unbounded-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6xjx043HgP6LR0Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Unbounded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unbounded/unbounded-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6yrx043HgP6LR0Y.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Unbounded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unbounded/unbounded-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG68b2043HgP6LR0Y.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Unbounded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unbounded/unbounded-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6__2043HgP6LR0Y.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Unbounded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unbounded/unbounded-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG65j2043HgP6LR0Y.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Unbounded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unbounded/unbounded-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG67H2043HgP6LR0Y.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Unbounded", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unbounded/unbounded-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unbounded/unbounded.svg" - }, - { - "name": "Uncial Antiqua", - "fontFamily": "Uncial Antiqua, system-ui", - "slug": "uncial-antiqua", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/uncialantiqua/v20/N0bM2S5WOex4OUbESzoESK-i-PfRS5VBBSSF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Uncial Antiqua", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/uncial-antiqua/uncial-antiqua-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/uncial-antiqua/uncial-antiqua.svg" - }, - { - "name": "Underdog", - "fontFamily": "Underdog, system-ui", - "slug": "underdog", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/underdog/v23/CHygV-jCElj7diMroVSiU14GN2Il.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Underdog", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/underdog/underdog-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/underdog/underdog.svg" - }, - { - "name": "Unica One", - "fontFamily": "Unica One, system-ui", - "slug": "unica-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/unicaone/v18/DPEuYwWHyAYGVTSmalshdtffuEY7FA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Unica One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unica-one/unica-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unica-one/unica-one.svg" - }, - { - "name": "UnifrakturCook", - "fontFamily": "UnifrakturCook, system-ui", - "slug": "unifrakturcook", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/unifrakturcook/v23/IurA6Yli8YOdcoky-0PTTdkm56n05Uw13ILXs-h6.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "UnifrakturCook", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unifrakturcook/unifrakturcook-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unifrakturcook/unifrakturcook.svg" - }, - { - "name": "UnifrakturMaguntia", - "fontFamily": "UnifrakturMaguntia, system-ui", - "slug": "unifrakturmaguntia", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/unifrakturmaguntia/v20/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVun2xNNgNa1A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "UnifrakturMaguntia", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unifrakturmaguntia/unifrakturmaguntia-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unifrakturmaguntia/unifrakturmaguntia.svg" - }, - { - "name": "Unkempt", - "fontFamily": "Unkempt, system-ui", - "slug": "unkempt", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/unkempt/v21/2EbnL-Z2DFZue0DSSYYf8z2Yt_c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Unkempt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unkempt/unkempt-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/unkempt/v21/2EbiL-Z2DFZue0DScTow1zWzq_5uT84.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Unkempt", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unkempt/unkempt-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unkempt/unkempt.svg" - }, - { - "name": "Unlock", - "fontFamily": "Unlock, system-ui", - "slug": "unlock", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/unlock/v26/7Au-p_8ykD-cDl7GKAjSwkUVOQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Unlock", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unlock/unlock-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unlock/unlock.svg" - }, - { - "name": "Unna", - "fontFamily": "Unna, serif", - "slug": "unna", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/unna/v23/AYCEpXzofN0NCpgBlGHCWFM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Unna", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unna/unna-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/unna/v23/AYCKpXzofN0NOpoLkEPHSFNyxw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Unna", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unna/unna-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/unna/v23/AYCLpXzofN0NMiQusGnpRFpr3vc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Unna", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unna/unna-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/unna/v23/AYCJpXzofN0NOpozLGzjQHhuzvef5Q.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Unna", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unna/unna-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/unna/unna.svg" - }, - { - "name": "Updock", - "fontFamily": "Updock, cursive", - "slug": "updock", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/updock/v5/nuF4D_3dVZ70UI9SjLK3602XBw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Updock", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/updock/updock-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/updock/updock.svg" - }, - { - "name": "Urbanist", - "fontFamily": "Urbanist, sans-serif", - "slug": "urbanist", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx8fFpOrS8SlKw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Urbanist", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/urbanist/urbanist-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSx4fFpOrS8SlKw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Urbanist", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/urbanist/urbanist-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDlR4fFpOrS8SlKw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Urbanist", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/urbanist/urbanist-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx4fFpOrS8SlKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Urbanist", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/urbanist/urbanist-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqD-R4fFpOrS8SlKw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Urbanist", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/urbanist/urbanist-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDFRkfFpOrS8SlKw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Urbanist", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/urbanist/urbanist-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDLBkfFpOrS8SlKw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Urbanist", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/urbanist/urbanist-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSxkfFpOrS8SlKw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Urbanist", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/urbanist/urbanist-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDYhkfFpOrS8SlKw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Urbanist", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/urbanist/urbanist-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/urbanist/v15/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VJmvacG1K4S1.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Urbanist", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/urbanist/urbanist-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/urbanist/v15/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113VZmvacG1K4S1.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Urbanist", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/urbanist/urbanist-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/urbanist/v15/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA12pVZmvacG1K4S1.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Urbanist", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/urbanist/urbanist-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/urbanist/v15/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VZmvacG1K4S1.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Urbanist", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/urbanist/urbanist-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/urbanist/v15/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA13FVZmvacG1K4S1.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Urbanist", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/urbanist/urbanist-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/urbanist/v15/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10pUpmvacG1K4S1.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Urbanist", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/urbanist/urbanist-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/urbanist/v15/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10QUpmvacG1K4S1.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Urbanist", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/urbanist/urbanist-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/urbanist/v15/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113UpmvacG1K4S1.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Urbanist", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/urbanist/urbanist-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/urbanist/v15/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA11eUpmvacG1K4S1.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Urbanist", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/urbanist/urbanist-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/urbanist/urbanist.svg" - }, - { - "name": "VT323", - "fontFamily": "VT323, monospace", - "slug": "vt323", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vt323/v17/pxiKyp0ihIEF2hsYHpT2dkNE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "VT323", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vt323/vt323-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vt323/vt323.svg" - }, - { - "name": "Vampiro One", - "fontFamily": "Vampiro One, system-ui", - "slug": "vampiro-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vampiroone/v18/gokqH6DoDl5yXvJytFsdLkqnsvhIor3K.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vampiro One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vampiro-one/vampiro-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vampiro-one/vampiro-one.svg" - }, - { - "name": "Varela", - "fontFamily": "Varela, sans-serif", - "slug": "varela", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/varela/v16/DPEtYwqExx0AWHXJBBQFfvzDsQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Varela", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/varela/varela-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/varela/varela.svg" - }, - { - "name": "Varela Round", - "fontFamily": "Varela Round, sans-serif", - "slug": "varela-round", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/varelaround/v20/w8gdH283Tvk__Lua32TysjIvoMGOD9gxZw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Varela Round", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/varela-round/varela-round-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/varela-round/varela-round.svg" - }, - { - "name": "Varta", - "fontFamily": "Varta, sans-serif", - "slug": "varta", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x96j4EirE-9PGLfQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Varta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/varta/varta-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9tD4EirE-9PGLfQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Varta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/varta/varta-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9hj4EirE-9PGLfQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Varta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/varta/varta-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9ajkEirE-9PGLfQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Varta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/varta/varta-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9UzkEirE-9PGLfQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Varta", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/varta/varta-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/varta/varta.svg" - }, - { - "name": "Vast Shadow", - "fontFamily": "Vast Shadow, serif", - "slug": "vast-shadow", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vastshadow/v19/pe0qMImKOZ1V62ZwbVY9dfe6Kdpickwp.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vast Shadow", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vast-shadow/vast-shadow-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vast-shadow/vast-shadow.svg" - }, - { - "name": "Vazirmatn", - "fontFamily": "Vazirmatn, sans-serif", - "slug": "vazirmatn", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgyOReZ72DF_QY.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Vazirmatn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vazirmatn/vazirmatn-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklegzOReZ72DF_QY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Vazirmatn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vazirmatn/vazirmatn-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklTYzOReZ72DF_QY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Vazirmatn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vazirmatn/vazirmatn-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgzOReZ72DF_QY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vazirmatn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vazirmatn/vazirmatn-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklVozOReZ72DF_QY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Vazirmatn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vazirmatn/vazirmatn-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklbY0OReZ72DF_QY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Vazirmatn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vazirmatn/vazirmatn-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklY80OReZ72DF_QY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Vazirmatn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vazirmatn/vazirmatn-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRkleg0OReZ72DF_QY.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Vazirmatn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vazirmatn/vazirmatn-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklcE0OReZ72DF_QY.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Vazirmatn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vazirmatn/vazirmatn-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vazirmatn/vazirmatn.svg" - }, - { - "name": "Vesper Libre", - "fontFamily": "Vesper Libre, serif", - "slug": "vesper-libre", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vesperlibre/v19/bx6CNxyWnf-uxPdXDHUD_Rd4D0-N2qIWVQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vesper Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vesper-libre/vesper-libre-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdA-2ap0okKXKvPlw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Vesper Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vesper-libre/vesper-libre-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAs2Cp0okKXKvPlw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Vesper Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vesper-libre/vesper-libre-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAi2Kp0okKXKvPlw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Vesper Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vesper-libre/vesper-libre-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vesper-libre/vesper-libre.svg" - }, - { - "name": "Viaoda Libre", - "fontFamily": "Viaoda Libre, system-ui", - "slug": "viaoda-libre", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/viaodalibre/v18/vEFW2_lWCgoR6OKuRz9kcRVJb2IY2tOHXg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Viaoda Libre", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/viaoda-libre/viaoda-libre-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/viaoda-libre/viaoda-libre.svg" - }, - { - "name": "Vibes", - "fontFamily": "Vibes, system-ui", - "slug": "vibes", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vibes/v14/QdVYSTsmIB6tmbd3HpbsuBlh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vibes", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vibes/vibes-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vibes/vibes.svg" - }, - { - "name": "Vibur", - "fontFamily": "Vibur, cursive", - "slug": "vibur", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vibur/v23/DPEiYwmEzw0QRjTpLjoJd-Xa.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vibur", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vibur/vibur-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vibur/vibur.svg" - }, - { - "name": "Victor Mono", - "fontFamily": "Victor Mono, monospace", - "slug": "victor-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/victormono/v3/Yq6H-LGQWyfv-LGy7lEO09xRn-T81AVB_tCyO8_NhNyOV0Y9bQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Victor Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/victor-mono/victor-mono-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/victormono/v3/Yq6H-LGQWyfv-LGy7lEO09xRn-T81AVB_tCyu87NhNyOV0Y9bQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Victor Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/victor-mono/victor-mono-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/victormono/v3/Yq6H-LGQWyfv-LGy7lEO09xRn-T81AVB_tCyZc7NhNyOV0Y9bQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Victor Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/victor-mono/victor-mono-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/victormono/v3/Yq6H-LGQWyfv-LGy7lEO09xRn-T81AVB_tCyO87NhNyOV0Y9bQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Victor Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/victor-mono/victor-mono-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/victormono/v3/Yq6H-LGQWyfv-LGy7lEO09xRn-T81AVB_tCyCc7NhNyOV0Y9bQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Victor Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/victor-mono/victor-mono-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/victormono/v3/Yq6H-LGQWyfv-LGy7lEO09xRn-T81AVB_tCy5cnNhNyOV0Y9bQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Victor Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/victor-mono/victor-mono-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/victormono/v3/Yq6H-LGQWyfv-LGy7lEO09xRn-T81AVB_tCy3MnNhNyOV0Y9bQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Victor Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/victor-mono/victor-mono-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/victormono/v3/Yq6B-LGQWyfv-LGy7lEO0_ZYrRskvW7bUNen840lxtaKdUMtba8p.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Victor Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/victor-mono/victor-mono-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/victormono/v3/Yq6B-LGQWyfv-LGy7lEO0_ZYrRskvW7bUNen842lx9aKdUMtba8p.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Victor Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/victor-mono/victor-mono-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/victormono/v3/Yq6B-LGQWyfv-LGy7lEO0_ZYrRskvW7bUNen8417x9aKdUMtba8p.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Victor Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/victor-mono/victor-mono-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/victormono/v3/Yq6B-LGQWyfv-LGy7lEO0_ZYrRskvW7bUNen840lx9aKdUMtba8p.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Victor Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/victor-mono/victor-mono-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/victormono/v3/Yq6B-LGQWyfv-LGy7lEO0_ZYrRskvW7bUNen840Xx9aKdUMtba8p.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Victor Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/victor-mono/victor-mono-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/victormono/v3/Yq6B-LGQWyfv-LGy7lEO0_ZYrRskvW7bUNen8437wNaKdUMtba8p.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Victor Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/victor-mono/victor-mono-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/victormono/v3/Yq6B-LGQWyfv-LGy7lEO0_ZYrRskvW7bUNen843CwNaKdUMtba8p.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Victor Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/victor-mono/victor-mono-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/victor-mono/victor-mono.svg" - }, - { - "name": "Vidaloka", - "fontFamily": "Vidaloka, serif", - "slug": "vidaloka", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vidaloka/v18/7cHrv4c3ipenMKlEass8yn4hnCci.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vidaloka", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vidaloka/vidaloka-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vidaloka/vidaloka.svg" - }, - { - "name": "Viga", - "fontFamily": "Viga, sans-serif", - "slug": "viga", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/viga/v14/xMQbuFFdSaiX_QIjD4e2OX8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Viga", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/viga/viga-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/viga/viga.svg" - }, - { - "name": "Vina Sans", - "fontFamily": "Vina Sans, system-ui", - "slug": "vina-sans", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vinasans/v6/m8JQjfZKf6-d2273MP7zcJ5BZmqa3A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vina Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vina-sans/vina-sans-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vina-sans/vina-sans.svg" - }, - { - "name": "Voces", - "fontFamily": "Voces, sans-serif", - "slug": "voces", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/voces/v22/-F6_fjJyLyU8d4PBBG7YpzlJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Voces", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/voces/voces-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/voces/voces.svg" - }, - { - "name": "Volkhov", - "fontFamily": "Volkhov, serif", - "slug": "volkhov", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/volkhov/v17/SlGQmQieoJcKemNeQTIOhHxzcD0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Volkhov", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/volkhov/volkhov-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/volkhov/v17/SlGSmQieoJcKemNecTAEgF52YD0NYw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Volkhov", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/volkhov/volkhov-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/volkhov/v17/SlGVmQieoJcKemNeeY4hoHRYbDQUego.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Volkhov", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/volkhov/volkhov-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/volkhov/v17/SlGXmQieoJcKemNecTA8PHFSaBYRagrQrA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Volkhov", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/volkhov/volkhov-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/volkhov/volkhov.svg" - }, - { - "name": "Vollkorn", - "fontFamily": "Vollkorn, serif", - "slug": "vollkorn", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2MHGuGWOdEbD63w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vollkorn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vollkorn/vollkorn-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2AnGuGWOdEbD63w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Vollkorn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vollkorn/vollkorn-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df27nauGWOdEbD63w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Vollkorn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vollkorn/vollkorn-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df213auGWOdEbD63w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Vollkorn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vollkorn/vollkorn-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2sHauGWOdEbD63w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Vollkorn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vollkorn/vollkorn-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2mXauGWOdEbD63w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Vollkorn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vollkorn/vollkorn-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJGWmmZM7Xq34g9.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Vollkorn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vollkorn/vollkorn-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJ0WmmZM7Xq34g9.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Vollkorn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vollkorn/vollkorn-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKYXWmZM7Xq34g9.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Vollkorn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vollkorn/vollkorn-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKhXWmZM7Xq34g9.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Vollkorn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vollkorn/vollkorn-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLGXWmZM7Xq34g9.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Vollkorn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vollkorn/vollkorn-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLvXWmZM7Xq34g9.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Vollkorn", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vollkorn/vollkorn-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vollkorn/vollkorn.svg" - }, - { - "name": "Vollkorn SC", - "fontFamily": "Vollkorn SC, serif", - "slug": "vollkorn-sc", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vollkornsc/v11/j8_v6-zQ3rXpceZj9cqnVhF5NH-iSq_E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vollkorn SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vollkorn-sc/vollkorn-sc-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVimhGluqYbPN5Yjn.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Vollkorn SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vollkorn-sc/vollkorn-sc-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVinFG1uqYbPN5Yjn.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Vollkorn SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vollkorn-sc/vollkorn-sc-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVin9GVuqYbPN5Yjn.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Vollkorn SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vollkorn-sc/vollkorn-sc-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vollkorn-sc/vollkorn-sc.svg" - }, - { - "name": "Voltaire", - "fontFamily": "Voltaire, sans-serif", - "slug": "voltaire", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/voltaire/v20/1Pttg8PcRfSblAvGvQooYKVnBOif.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Voltaire", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/voltaire/voltaire-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/voltaire/voltaire.svg" - }, - { - "name": "Vujahday Script", - "fontFamily": "Vujahday Script, cursive", - "slug": "vujahday-script", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/vujahdayscript/v8/RWmQoKGA8fEkrIPtSZ3_J7er2dUiDEtvAlaMKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vujahday Script", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vujahday-script/vujahday-script-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/vujahday-script/vujahday-script.svg" - }, - { - "name": "Waiting for the Sunrise", - "fontFamily": "Waiting for the Sunrise, cursive", - "slug": "waiting-for-the-sunrise", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/waitingforthesunrise/v20/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZQ9h_ZYk5J.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Waiting for the Sunrise", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/waiting-for-the-sunrise/waiting-for-the-sunrise-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/waiting-for-the-sunrise/waiting-for-the-sunrise.svg" - }, - { - "name": "Wallpoet", - "fontFamily": "Wallpoet, system-ui", - "slug": "wallpoet", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wallpoet/v20/f0X10em2_8RnXVVdUNbu7cXP8L8G.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Wallpoet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wallpoet/wallpoet-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wallpoet/wallpoet.svg" - }, - { - "name": "Walter Turncoat", - "fontFamily": "Walter Turncoat, cursive", - "slug": "walter-turncoat", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/walterturncoat/v23/snfys0Gs98ln43n0d-14ULoToe67YB2dQ5ZPqQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Walter Turncoat", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/walter-turncoat/walter-turncoat-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/walter-turncoat/walter-turncoat.svg" - }, - { - "name": "Warnes", - "fontFamily": "Warnes, system-ui", - "slug": "warnes", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/warnes/v27/pONn1hc0GsW6sW5OpiC2o6Lkqg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Warnes", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/warnes/warnes-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/warnes/warnes.svg" - }, - { - "name": "Water Brush", - "fontFamily": "Water Brush, cursive", - "slug": "water-brush", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/waterbrush/v4/AYCPpXPqc8cJWLhp4hywKHJq7PKP5Z_G.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Water Brush", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/water-brush/water-brush-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/water-brush/water-brush.svg" - }, - { - "name": "Waterfall", - "fontFamily": "Waterfall, cursive", - "slug": "waterfall", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/waterfall/v6/MCoRzAfo293fACdFKcwY2rH8D_EZwA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Waterfall", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/waterfall/waterfall-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/waterfall/waterfall.svg" - }, - { - "name": "Wavefont", - "fontFamily": "Wavefont, system-ui", - "slug": "wavefont", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wavefont/v2/L0xFDF00m0cP6hefyOCpRezQNuizSrqDyx8FHbFu21B3L4m0SEzuQYwq-f_JJ8I1WI3V0rDHXKtOXOg4.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Wavefont", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wavefont/wavefont-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wavefont/v2/L0xFDF00m0cP6hefyOCpRezQNuizSrqDyx8FHbFu21B3L4m0SEzuQYwq-f_JJ8I1WI1V07DHXKtOXOg4.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Wavefont", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wavefont/wavefont-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wavefont/v2/L0xFDF00m0cP6hefyOCpRezQNuizSrqDyx8FHbFu21B3L4m0SEzuQYwq-f_JJ8I1WI2L07DHXKtOXOg4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Wavefont", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wavefont/wavefont-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wavefont/v2/L0xFDF00m0cP6hefyOCpRezQNuizSrqDyx8FHbFu21B3L4m0SEzuQYwq-f_JJ8I1WI3V07DHXKtOXOg4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Wavefont", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wavefont/wavefont-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wavefont/v2/L0xFDF00m0cP6hefyOCpRezQNuizSrqDyx8FHbFu21B3L4m0SEzuQYwq-f_JJ8I1WI3n07DHXKtOXOg4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Wavefont", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wavefont/wavefont-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wavefont/v2/L0xFDF00m0cP6hefyOCpRezQNuizSrqDyx8FHbFu21B3L4m0SEzuQYwq-f_JJ8I1WI0L1LDHXKtOXOg4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Wavefont", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wavefont/wavefont-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wavefont/v2/L0xFDF00m0cP6hefyOCpRezQNuizSrqDyx8FHbFu21B3L4m0SEzuQYwq-f_JJ8I1WI0y1LDHXKtOXOg4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Wavefont", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wavefont/wavefont-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wavefont/v2/L0xFDF00m0cP6hefyOCpRezQNuizSrqDyx8FHbFu21B3L4m0SEzuQYwq-f_JJ8I1WI1V1LDHXKtOXOg4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Wavefont", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wavefont/wavefont-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wavefont/v2/L0xFDF00m0cP6hefyOCpRezQNuizSrqDyx8FHbFu21B3L4m0SEzuQYwq-f_JJ8I1WI181LDHXKtOXOg4.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Wavefont", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wavefont/wavefont-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wavefont/wavefont.svg" - }, - { - "name": "Wellfleet", - "fontFamily": "Wellfleet, serif", - "slug": "wellfleet", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wellfleet/v22/nuF7D_LfQJb3VYgX6eyT42aLDhO2HA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Wellfleet", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wellfleet/wellfleet-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wellfleet/wellfleet.svg" - }, - { - "name": "Wendy One", - "fontFamily": "Wendy One, sans-serif", - "slug": "wendy-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wendyone/v18/2sDcZGJOipXfgfXV5wgDb2-4C7wFZQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Wendy One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wendy-one/wendy-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wendy-one/wendy-one.svg" - }, - { - "name": "Whisper", - "fontFamily": "Whisper, cursive", - "slug": "whisper", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/whisper/v5/q5uHsoqtKftx74K9milCBxxdmYU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Whisper", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/whisper/whisper-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/whisper/whisper.svg" - }, - { - "name": "WindSong", - "fontFamily": "WindSong, cursive", - "slug": "windsong", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/windsong/v11/KR1WBsyu-P-GFEW57r95HdG6vjH3.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "WindSong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/windsong/windsong-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/windsong/v11/KR1RBsyu-P-GFEW57oeNNPWylS3-jVXm.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "WindSong", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/windsong/windsong-500-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/windsong/windsong.svg" - }, - { - "name": "Wire One", - "fontFamily": "Wire One, sans-serif", - "slug": "wire-one", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wireone/v28/qFdH35Wah5htUhV75WGiWdrCwwcJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Wire One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wire-one/wire-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wire-one/wire-one.svg" - }, - { - "name": "Wix Madefor Display", - "fontFamily": "Wix Madefor Display, sans-serif", - "slug": "wix-madefor-display", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYFhYltkv_3HQKgh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wix-madefor-display/wix-madefor-display-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYFTYltkv_3HQKgh.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wix-madefor-display/wix-madefor-display-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYG_ZVtkv_3HQKgh.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wix-madefor-display/wix-madefor-display-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYGGZVtkv_3HQKgh.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wix-madefor-display/wix-madefor-display-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYHhZVtkv_3HQKgh.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Display", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wix-madefor-display/wix-madefor-display-800-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wix-madefor-display/wix-madefor-display.svg" - }, - { - "name": "Wix Madefor Text", - "fontFamily": "Wix Madefor Text, sans-serif", - "slug": "wix-madefor-text", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cK_NOeFgpRt9rN5.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wix-madefor-text/wix-madefor-text-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3dw_GiJBP86N53IY.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Wix Madefor Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wix-madefor-text/wix-madefor-text-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cKNNOeFgpRt9rN5.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wix-madefor-text/wix-madefor-text-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3dz3GiJBP86N53IY.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Wix Madefor Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wix-madefor-text/wix-madefor-text-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cJhM-eFgpRt9rN5.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wix-madefor-text/wix-madefor-text-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3d9HBiJBP86N53IY.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Wix Madefor Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wix-madefor-text/wix-madefor-text-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cJYM-eFgpRt9rN5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wix-madefor-text/wix-madefor-text-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3d-jBiJBP86N53IY.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Wix Madefor Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wix-madefor-text/wix-madefor-text-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cI_M-eFgpRt9rN5.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wix-madefor-text/wix-madefor-text-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3d4_BiJBP86N53IY.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Wix Madefor Text", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wix-madefor-text/wix-madefor-text-800-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/wix-madefor-text/wix-madefor-text.svg" - }, - { - "name": "Work Sans", - "fontFamily": "Work Sans, sans-serif", - "slug": "work-sans", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nWNigDp6_cOyA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Work Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/work-sans/work-sans-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nXNigDp6_cOyA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Work Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/work-sans/work-sans-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32KxfXNigDp6_cOyA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Work Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/work-sans/work-sans-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNigDp6_cOyA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Work Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/work-sans/work-sans-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K3vXNigDp6_cOyA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Work Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/work-sans/work-sans-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQNigDp6_cOyA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Work Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/work-sans/work-sans-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K67QNigDp6_cOyA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Work Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/work-sans/work-sans-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nQNigDp6_cOyA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Work Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/work-sans/work-sans-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K-DQNigDp6_cOyA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Work Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/work-sans/work-sans-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3moJo43ZKyDSQQ.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Work Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/work-sans/work-sans-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmsJo43ZKyDSQQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Work Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/work-sans/work-sans-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUgGsJo43ZKyDSQQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Work Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/work-sans/work-sans-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3msJo43ZKyDSQQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Work Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/work-sans/work-sans-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU7GsJo43ZKyDSQQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Work Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/work-sans/work-sans-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUAGwJo43ZKyDSQQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Work Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/work-sans/work-sans-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUOWwJo43ZKyDSQQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Work Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/work-sans/work-sans-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmwJo43ZKyDSQQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Work Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/work-sans/work-sans-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUd2wJo43ZKyDSQQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Work Sans", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/work-sans/work-sans-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/work-sans/work-sans.svg" - }, - { - "name": "Xanh Mono", - "fontFamily": "Xanh Mono, monospace", - "slug": "xanh-mono", - "category": "monospace", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/xanhmono/v18/R70YjykVmvKCep-vWhSYmACQXzLhTg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Xanh Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/xanh-mono/xanh-mono-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/xanhmono/v18/R70ejykVmvKCep-vWhSomgqUfTfxTo24.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Xanh Mono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/xanh-mono/xanh-mono-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/xanh-mono/xanh-mono.svg" - }, - { - "name": "Yaldevi", - "fontFamily": "Yaldevi, sans-serif", - "slug": "yaldevi", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpfxJzvobxLCBJkS.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Yaldevi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yaldevi/yaldevi-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpcvJzvobxLCBJkS.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Yaldevi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yaldevi/yaldevi-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdxJzvobxLCBJkS.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yaldevi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yaldevi/yaldevi-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdDJzvobxLCBJkS.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Yaldevi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yaldevi/yaldevi-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpevIDvobxLCBJkS.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Yaldevi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yaldevi/yaldevi-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpeWIDvobxLCBJkS.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Yaldevi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yaldevi/yaldevi-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yaldevi/yaldevi.svg" - }, - { - "name": "Yanone Kaffeesatz", - "fontFamily": "Yanone Kaffeesatz, sans-serif", - "slug": "yanone-kaffeesatz", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yanonekaffeesatz/v29/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftodtWpcGuLCnXkVA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Yanone Kaffeesatz", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yanone-kaffeesatz/yanone-kaffeesatz-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yanonekaffeesatz/v29/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoqNWpcGuLCnXkVA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Yanone Kaffeesatz", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yanone-kaffeesatz/yanone-kaffeesatz-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yanonekaffeesatz/v29/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIfto9tWpcGuLCnXkVA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yanone Kaffeesatz", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yanone-kaffeesatz/yanone-kaffeesatz-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yanonekaffeesatz/v29/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoxNWpcGuLCnXkVA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Yanone Kaffeesatz", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yanone-kaffeesatz/yanone-kaffeesatz-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yanonekaffeesatz/v29/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoKNKpcGuLCnXkVA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Yanone Kaffeesatz", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yanone-kaffeesatz/yanone-kaffeesatz-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yanonekaffeesatz/v29/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoEdKpcGuLCnXkVA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Yanone Kaffeesatz", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yanone-kaffeesatz/yanone-kaffeesatz-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yanone-kaffeesatz/yanone-kaffeesatz.svg" - }, - { - "name": "Yantramanav", - "fontFamily": "Yantramanav, sans-serif", - "slug": "yantramanav", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yantramanav/v13/flU-Rqu5zY00QEpyWJYWN5-QXeNzDB41rZg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Yantramanav", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yantramanav/yantramanav-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yantramanav/v13/flUhRqu5zY00QEpyWJYWN59Yf8NZIhI8tIHh.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Yantramanav", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yantramanav/yantramanav-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yantramanav/v13/flU8Rqu5zY00QEpyWJYWN6f0V-dRCQ41.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yantramanav", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yantramanav/yantramanav-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yantramanav/v13/flUhRqu5zY00QEpyWJYWN58AfsNZIhI8tIHh.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Yantramanav", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yantramanav/yantramanav-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yantramanav/v13/flUhRqu5zY00QEpyWJYWN59IeMNZIhI8tIHh.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Yantramanav", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yantramanav/yantramanav-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yantramanav/v13/flUhRqu5zY00QEpyWJYWN59wesNZIhI8tIHh.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Yantramanav", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yantramanav/yantramanav-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yantramanav/yantramanav.svg" - }, - { - "name": "Yatra One", - "fontFamily": "Yatra One, system-ui", - "slug": "yatra-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yatraone/v14/C8ch4copsHzj8p7NaF0xw1OBbRDvXw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yatra One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yatra-one/yatra-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yatra-one/yatra-one.svg" - }, - { - "name": "Yellowtail", - "fontFamily": "Yellowtail, cursive", - "slug": "yellowtail", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yellowtail/v22/OZpGg_pnoDtINPfRIlLotlzNwED-b4g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yellowtail", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yellowtail/yellowtail-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yellowtail/yellowtail.svg" - }, - { - "name": "Yeon Sung", - "fontFamily": "Yeon Sung, system-ui", - "slug": "yeon-sung", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yeonsung/v20/QldMNTpbohAGtsJvUn6xSVNazqx2xg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yeon Sung", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yeon-sung/yeon-sung-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yeon-sung/yeon-sung.svg" - }, - { - "name": "Yeseva One", - "fontFamily": "Yeseva One, system-ui", - "slug": "yeseva-one", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yesevaone/v22/OpNJno4ck8vc-xYpwWWxpipfWhXD00c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yeseva One", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yeseva-one/yeseva-one-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yeseva-one/yeseva-one.svg" - }, - { - "name": "Yesteryear", - "fontFamily": "Yesteryear, cursive", - "slug": "yesteryear", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yesteryear/v18/dg4g_p78rroaKl8kRKo1r7wHTwonmyw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yesteryear", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yesteryear/yesteryear-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yesteryear/yesteryear.svg" - }, - { - "name": "Yomogi", - "fontFamily": "Yomogi, cursive", - "slug": "yomogi", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yomogi/v10/VuJwdNrS2ZL7rpoPWIz5NIh-YA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yomogi", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yomogi/yomogi-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yomogi/yomogi.svg" - }, - { - "name": "Yrsa", - "fontFamily": "Yrsa, serif", - "slug": "yrsa", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCjASNNV9rRPfrKu.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Yrsa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yrsa/yrsa-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCieSNNV9rRPfrKu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yrsa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yrsa/yrsa-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCisSNNV9rRPfrKu.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Yrsa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yrsa/yrsa-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaChAT9NV9rRPfrKu.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Yrsa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yrsa/yrsa-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCh5T9NV9rRPfrKu.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Yrsa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yrsa/yrsa-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC2UW_LBte6KuGEo.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Yrsa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yrsa/yrsa-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WCzsW_LBte6KuGEo.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Yrsa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yrsa/yrsa-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WCwkW_LBte6KuGEo.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Yrsa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yrsa/yrsa-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC-UR_LBte6KuGEo.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Yrsa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yrsa/yrsa-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC9wR_LBte6KuGEo.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Yrsa", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yrsa/yrsa-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yrsa/yrsa.svg" - }, - { - "name": "Ysabeau", - "fontFamily": "Ysabeau, sans-serif", - "slug": "ysabeau", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OWCTYwI8Gcw6Oi.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Ysabeau", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau/ysabeau-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7MWCDYwI8Gcw6Oi.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Ysabeau", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau/ysabeau-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7PICDYwI8Gcw6Oi.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Ysabeau", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau/ysabeau-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OWCDYwI8Gcw6Oi.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ysabeau", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau/ysabeau-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OkCDYwI8Gcw6Oi.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Ysabeau", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau/ysabeau-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7NIDzYwI8Gcw6Oi.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Ysabeau", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau/ysabeau-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7NxDzYwI8Gcw6Oi.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Ysabeau", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau/ysabeau-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7MWDzYwI8Gcw6Oi.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Ysabeau", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau/ysabeau-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7M_DzYwI8Gcw6Oi.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Ysabeau", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau/ysabeau-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS95yKcW-xrOiIUw.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Ysabeau", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau/ysabeau-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS15zKcW-xrOiIUw.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Ysabeau", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau/ysabeau-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS4BzKcW-xrOiIUw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Ysabeau", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau/ysabeau-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS95zKcW-xrOiIUw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Ysabeau", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau/ysabeau-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS-xzKcW-xrOiIUw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Ysabeau", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau/ysabeau-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeSwB0KcW-xrOiIUw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Ysabeau", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau/ysabeau-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeSzl0KcW-xrOiIUw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Ysabeau", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau/ysabeau-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS150KcW-xrOiIUw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Ysabeau", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau/ysabeau-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS3d0KcW-xrOiIUw.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Ysabeau", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau/ysabeau-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau/ysabeau.svg" - }, - { - "name": "Ysabeau Infant", - "fontFamily": "Ysabeau Infant, sans-serif", - "slug": "ysabeau-infant", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-ClzpqOkkV94kBTQVdX1EWI9B0V-HEmd9JmTQYFo4HK5ChLwKH6A.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Ysabeau Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-infant/ysabeau-infant-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-ClzpqOkkV94kBTQVdX1EWI9B0V-HEmd9JmTQYlo8HK5ChLwKH6A.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Ysabeau Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-infant/ysabeau-infant-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-ClzpqOkkV94kBTQVdX1EWI9B0V-HEmd9JmTQYSI8HK5ChLwKH6A.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Ysabeau Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-infant/ysabeau-infant-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-ClzpqOkkV94kBTQVdX1EWI9B0V-HEmd9JmTQYFo8HK5ChLwKH6A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ysabeau Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-infant/ysabeau-infant-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-ClzpqOkkV94kBTQVdX1EWI9B0V-HEmd9JmTQYJI8HK5ChLwKH6A.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Ysabeau Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-infant/ysabeau-infant-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-ClzpqOkkV94kBTQVdX1EWI9B0V-HEmd9JmTQYyIgHK5ChLwKH6A.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Ysabeau Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-infant/ysabeau-infant-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-ClzpqOkkV94kBTQVdX1EWI9B0V-HEmd9JmTQY8YgHK5ChLwKH6A.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Ysabeau Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-infant/ysabeau-infant-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-ClzpqOkkV94kBTQVdX1EWI9B0V-HEmd9JmTQYlogHK5ChLwKH6A.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Ysabeau Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-infant/ysabeau-infant-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-ClzpqOkkV94kBTQVdX1EWI9B0V-HEmd9JmTQYv4gHK5ChLwKH6A.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Ysabeau Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-infant/ysabeau-infant-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-AlzpqOkkV94kBTQVdX1EWI_p9ZR4c8LTTNzMN3szvaZqlDQeX6Dc5.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Ysabeau Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-infant/ysabeau-infant-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-AlzpqOkkV94kBTQVdX1EWI_p9ZR4c8LTTNzMN3sxvaJqlDQeX6Dc5.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Ysabeau Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-infant/ysabeau-infant-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-AlzpqOkkV94kBTQVdX1EWI_p9ZR4c8LTTNzMN3syxaJqlDQeX6Dc5.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Ysabeau Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-infant/ysabeau-infant-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-AlzpqOkkV94kBTQVdX1EWI_p9ZR4c8LTTNzMN3szvaJqlDQeX6Dc5.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Ysabeau Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-infant/ysabeau-infant-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-AlzpqOkkV94kBTQVdX1EWI_p9ZR4c8LTTNzMN3szdaJqlDQeX6Dc5.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Ysabeau Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-infant/ysabeau-infant-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-AlzpqOkkV94kBTQVdX1EWI_p9ZR4c8LTTNzMN3swxb5qlDQeX6Dc5.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Ysabeau Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-infant/ysabeau-infant-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-AlzpqOkkV94kBTQVdX1EWI_p9ZR4c8LTTNzMN3swIb5qlDQeX6Dc5.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Ysabeau Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-infant/ysabeau-infant-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-AlzpqOkkV94kBTQVdX1EWI_p9ZR4c8LTTNzMN3sxvb5qlDQeX6Dc5.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Ysabeau Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-infant/ysabeau-infant-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauinfant/v1/hv-AlzpqOkkV94kBTQVdX1EWI_p9ZR4c8LTTNzMN3sxGb5qlDQeX6Dc5.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Ysabeau Infant", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-infant/ysabeau-infant-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-infant/ysabeau-infant.svg" - }, - { - "name": "Ysabeau Office", - "fontFamily": "Ysabeau Office, sans-serif", - "slug": "ysabeau-office", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauoffice/v1/LDImapaZKhM9RuQIp8FmdYrPPNjFm07hbpKNlPPbh6IfYSfpQj7IGQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Ysabeau Office", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-office/ysabeau-office-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauoffice/v1/LDImapaZKhM9RuQIp8FmdYrPPNjFm07hbpKNlPPbB6MfYSfpQj7IGQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Ysabeau Office", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-office/ysabeau-office-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauoffice/v1/LDImapaZKhM9RuQIp8FmdYrPPNjFm07hbpKNlPPb2aMfYSfpQj7IGQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Ysabeau Office", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-office/ysabeau-office-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauoffice/v1/LDImapaZKhM9RuQIp8FmdYrPPNjFm07hbpKNlPPbh6MfYSfpQj7IGQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ysabeau Office", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-office/ysabeau-office-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauoffice/v1/LDImapaZKhM9RuQIp8FmdYrPPNjFm07hbpKNlPPbtaMfYSfpQj7IGQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Ysabeau Office", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-office/ysabeau-office-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauoffice/v1/LDImapaZKhM9RuQIp8FmdYrPPNjFm07hbpKNlPPbWaQfYSfpQj7IGQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Ysabeau Office", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-office/ysabeau-office-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauoffice/v1/LDImapaZKhM9RuQIp8FmdYrPPNjFm07hbpKNlPPbYKQfYSfpQj7IGQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Ysabeau Office", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-office/ysabeau-office-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauoffice/v1/LDImapaZKhM9RuQIp8FmdYrPPNjFm07hbpKNlPPbB6QfYSfpQj7IGQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Ysabeau Office", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-office/ysabeau-office-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauoffice/v1/LDImapaZKhM9RuQIp8FmdYrPPNjFm07hbpKNlPPbLqQfYSfpQj7IGQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Ysabeau Office", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-office/ysabeau-office-900-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauoffice/v1/LDIkapaZKhM9RuQIp8FmdYrPPPLMqbE5B_kXOvTOT-D3Iy3tYDvYGbGh.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Ysabeau Office", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-office/ysabeau-office-100-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauoffice/v1/LDIkapaZKhM9RuQIp8FmdYrPPPLMqbE5B_kXOvTOT-B3Ii3tYDvYGbGh.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Ysabeau Office", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-office/ysabeau-office-200-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauoffice/v1/LDIkapaZKhM9RuQIp8FmdYrPPPLMqbE5B_kXOvTOT-CpIi3tYDvYGbGh.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Ysabeau Office", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-office/ysabeau-office-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauoffice/v1/LDIkapaZKhM9RuQIp8FmdYrPPPLMqbE5B_kXOvTOT-D3Ii3tYDvYGbGh.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Ysabeau Office", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-office/ysabeau-office-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauoffice/v1/LDIkapaZKhM9RuQIp8FmdYrPPPLMqbE5B_kXOvTOT-DFIi3tYDvYGbGh.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Ysabeau Office", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-office/ysabeau-office-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauoffice/v1/LDIkapaZKhM9RuQIp8FmdYrPPPLMqbE5B_kXOvTOT-ApJS3tYDvYGbGh.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Ysabeau Office", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-office/ysabeau-office-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauoffice/v1/LDIkapaZKhM9RuQIp8FmdYrPPPLMqbE5B_kXOvTOT-AQJS3tYDvYGbGh.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Ysabeau Office", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-office/ysabeau-office-700-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauoffice/v1/LDIkapaZKhM9RuQIp8FmdYrPPPLMqbE5B_kXOvTOT-B3JS3tYDvYGbGh.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Ysabeau Office", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-office/ysabeau-office-800-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeauoffice/v1/LDIkapaZKhM9RuQIp8FmdYrPPPLMqbE5B_kXOvTOT-BeJS3tYDvYGbGh.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Ysabeau Office", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-office/ysabeau-office-900-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-office/ysabeau-office.svg" - }, - { - "name": "Ysabeau SC", - "fontFamily": "Ysabeau SC, sans-serif", - "slug": "ysabeau-sc", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeausc/v1/Noai6Uro3JCIKAbW46nMorJZyP7kKRflbw98U1qEZ4EOmsT5.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Ysabeau SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-sc/ysabeau-sc-100-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeausc/v1/Noai6Uro3JCIKAbW46nMorJZyP7kKRflbw_8UlqEZ4EOmsT5.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Ysabeau SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-sc/ysabeau-sc-200-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeausc/v1/Noai6Uro3JCIKAbW46nMorJZyP7kKRflbw8iUlqEZ4EOmsT5.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Ysabeau SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-sc/ysabeau-sc-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeausc/v1/Noai6Uro3JCIKAbW46nMorJZyP7kKRflbw98UlqEZ4EOmsT5.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ysabeau SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-sc/ysabeau-sc-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeausc/v1/Noai6Uro3JCIKAbW46nMorJZyP7kKRflbw9OUlqEZ4EOmsT5.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Ysabeau SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-sc/ysabeau-sc-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeausc/v1/Noai6Uro3JCIKAbW46nMorJZyP7kKRflbw-iVVqEZ4EOmsT5.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Ysabeau SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-sc/ysabeau-sc-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeausc/v1/Noai6Uro3JCIKAbW46nMorJZyP7kKRflbw-bVVqEZ4EOmsT5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Ysabeau SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-sc/ysabeau-sc-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeausc/v1/Noai6Uro3JCIKAbW46nMorJZyP7kKRflbw_8VVqEZ4EOmsT5.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Ysabeau SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-sc/ysabeau-sc-800-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/ysabeausc/v1/Noai6Uro3JCIKAbW46nMorJZyP7kKRflbw_VVVqEZ4EOmsT5.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Ysabeau SC", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-sc/ysabeau-sc-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/ysabeau-sc/ysabeau-sc.svg" - }, - { - "name": "Yuji Boku", - "fontFamily": "Yuji Boku, serif", - "slug": "yuji-boku", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yujiboku/v5/P5sAzZybeNzXsA9xj1Fkjb2r2dgvJA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yuji Boku", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yuji-boku/yuji-boku-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yuji-boku/yuji-boku.svg" - }, - { - "name": "Yuji Hentaigana Akari", - "fontFamily": "Yuji Hentaigana Akari, cursive", - "slug": "yuji-hentaigana-akari", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yujihentaiganaakari/v11/cY9bfiyVT0VB6QuhWKOrpr6z58lnb_zYFnLIRTzODYALaA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yuji Hentaigana Akari", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yuji-hentaigana-akari/yuji-hentaigana-akari-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yuji-hentaigana-akari/yuji-hentaigana-akari.svg" - }, - { - "name": "Yuji Hentaigana Akebono", - "fontFamily": "Yuji Hentaigana Akebono, cursive", - "slug": "yuji-hentaigana-akebono", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yujihentaiganaakebono/v12/EJRGQhkhRNwM-RtitGUwh930GU_f5KAlkuL0wQy9NKXRzrrF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yuji Hentaigana Akebono", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yuji-hentaigana-akebono/yuji-hentaigana-akebono-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yuji-hentaigana-akebono/yuji-hentaigana-akebono.svg" - }, - { - "name": "Yuji Mai", - "fontFamily": "Yuji Mai, serif", - "slug": "yuji-mai", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yujimai/v5/ZgNQjPxdJ7DEHrS0gC38hmHmNpCO.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yuji Mai", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yuji-mai/yuji-mai-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yuji-mai/yuji-mai.svg" - }, - { - "name": "Yuji Syuku", - "fontFamily": "Yuji Syuku, serif", - "slug": "yuji-syuku", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yujisyuku/v5/BngNUXdTV3vO6Lw5ApOPqPfgwqiA-Rk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yuji Syuku", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yuji-syuku/yuji-syuku-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yuji-syuku/yuji-syuku.svg" - }, - { - "name": "Yusei Magic", - "fontFamily": "Yusei Magic, sans-serif", - "slug": "yusei-magic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/yuseimagic/v12/yYLt0hbAyuCmoo5wlhPkpjHR-tdfcIT_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yusei Magic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yusei-magic/yusei-magic-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/yusei-magic/yusei-magic.svg" - }, - { - "name": "ZCOOL KuaiLe", - "fontFamily": "ZCOOL KuaiLe, sans-serif", - "slug": "zcool-kuaile", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zcoolkuaile/v19/tssqApdaRQokwFjFJjvM6h2WpozzoXhC2g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "ZCOOL KuaiLe", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zcool-kuaile/zcool-kuaile-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zcool-kuaile/zcool-kuaile.svg" - }, - { - "name": "ZCOOL QingKe HuangYou", - "fontFamily": "ZCOOL QingKe HuangYou, sans-serif", - "slug": "zcool-qingke-huangyou", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zcoolqingkehuangyou/v15/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mRIi_28c8bHWA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "ZCOOL QingKe HuangYou", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zcool-qingke-huangyou/zcool-qingke-huangyou-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zcool-qingke-huangyou/zcool-qingke-huangyou.svg" - }, - { - "name": "ZCOOL XiaoWei", - "fontFamily": "ZCOOL XiaoWei, sans-serif", - "slug": "zcool-xiaowei", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zcoolxiaowei/v14/i7dMIFFrTRywPpUVX9_RJyM1YFKQHwyVd3U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "ZCOOL XiaoWei", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zcool-xiaowei/zcool-xiaowei-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zcool-xiaowei/zcool-xiaowei.svg" - }, - { - "name": "Zen Antique", - "fontFamily": "Zen Antique, serif", - "slug": "zen-antique", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenantique/v12/AYCPpXPnd91Ma_Zf-Ri2JXJq7PKP5Z_G.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Antique", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-antique/zen-antique-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-antique/zen-antique.svg" - }, - { - "name": "Zen Antique Soft", - "fontFamily": "Zen Antique Soft, serif", - "slug": "zen-antique-soft", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenantiquesoft/v12/DtV4JwqzSL1q_KwnEWMc_3xfgW6ihwBmkui5HNg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Antique Soft", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-antique-soft/zen-antique-soft-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-antique-soft/zen-antique-soft.svg" - }, - { - "name": "Zen Dots", - "fontFamily": "Zen Dots, system-ui", - "slug": "zen-dots", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zendots/v12/XRXX3ICfm00IGoesQeaETM_FcCIG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Dots", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-dots/zen-dots-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-dots/zen-dots.svg" - }, - { - "name": "Zen Kaku Gothic Antique", - "fontFamily": "Zen Kaku Gothic Antique, sans-serif", - "slug": "zen-kaku-gothic-antique", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenkakugothicantique/v15/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cM9TarWJtyZyGU.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic Antique", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-kaku-gothic-antique/zen-kaku-gothic-antique-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenkakugothicantique/v15/6qLQKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB21-g3RKjc4d7.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic Antique", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-kaku-gothic-antique/zen-kaku-gothic-antique-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenkakugothicantique/v15/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22dU9DarWJtyZyGU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic Antique", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-kaku-gothic-antique/zen-kaku-gothic-antique-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenkakugothicantique/v15/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cc8jarWJtyZyGU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic Antique", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-kaku-gothic-antique/zen-kaku-gothic-antique-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenkakugothicantique/v15/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22ck8DarWJtyZyGU.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic Antique", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-kaku-gothic-antique/zen-kaku-gothic-antique-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-kaku-gothic-antique/zen-kaku-gothic-antique.svg" - }, - { - "name": "Zen Kaku Gothic New", - "fontFamily": "Zen Kaku Gothic New, sans-serif", - "slug": "zen-kaku-gothic-new", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenkakugothicnew/v15/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqpdKaWTSTGlMyd8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic New", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-kaku-gothic-new/zen-kaku-gothic-new-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenkakugothicnew/v15/gNMYW2drQpDw0GjzrVNFf_valaDBcznOkjtiTWz5UGA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic New", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-kaku-gothic-new/zen-kaku-gothic-new-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenkakugothicnew/v15/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqs9LaWTSTGlMyd8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic New", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-kaku-gothic-new/zen-kaku-gothic-new-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenkakugothicnew/v15/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqodNaWTSTGlMyd8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic New", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-kaku-gothic-new/zen-kaku-gothic-new-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenkakugothicnew/v15/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqr9PaWTSTGlMyd8.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic New", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-kaku-gothic-new/zen-kaku-gothic-new-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-kaku-gothic-new/zen-kaku-gothic-new.svg" - }, - { - "name": "Zen Kurenaido", - "fontFamily": "Zen Kurenaido, sans-serif", - "slug": "zen-kurenaido", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenkurenaido/v16/3XFsEr0515BK2u6UUptu_gWJZfz22PRLd0U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Kurenaido", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-kurenaido/zen-kurenaido-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-kurenaido/zen-kurenaido.svg" - }, - { - "name": "Zen Loop", - "fontFamily": "Zen Loop, system-ui", - "slug": "zen-loop", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenloop/v9/h0GrssK16UsnJwHsEK9zqwzX5vOG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Loop", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-loop/zen-loop-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenloop/v9/h0GtssK16UsnJwHsEJ9xoQj14-OGJ0w.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Zen Loop", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-loop/zen-loop-400-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-loop/zen-loop.svg" - }, - { - "name": "Zen Maru Gothic", - "fontFamily": "Zen Maru Gothic, sans-serif", - "slug": "zen-maru-gothic", - "category": "sans-serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenmarugothic/v16/o-0XIpIxzW5b-RxT-6A8jWAtCp-cQWpCPJqa_ajlvw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Zen Maru Gothic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-maru-gothic/zen-maru-gothic-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenmarugothic/v16/o-0SIpIxzW5b-RxT-6A8jWAtCp-k7UJmNLGG9A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Maru Gothic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-maru-gothic/zen-maru-gothic-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenmarugothic/v16/o-0XIpIxzW5b-RxT-6A8jWAtCp-cGWtCPJqa_ajlvw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Zen Maru Gothic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-maru-gothic/zen-maru-gothic-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenmarugothic/v16/o-0XIpIxzW5b-RxT-6A8jWAtCp-cUW1CPJqa_ajlvw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Zen Maru Gothic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-maru-gothic/zen-maru-gothic-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenmarugothic/v16/o-0XIpIxzW5b-RxT-6A8jWAtCp-caW9CPJqa_ajlvw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Zen Maru Gothic", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-maru-gothic/zen-maru-gothic-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-maru-gothic/zen-maru-gothic.svg" - }, - { - "name": "Zen Old Mincho", - "fontFamily": "Zen Old Mincho, serif", - "slug": "zen-old-mincho", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenoldmincho/v11/tss0ApVaYytLwxTqcxfMyBveyYb3g31S2s8p.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Old Mincho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-old-mincho/zen-old-mincho-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb4Dqlla8dMgPgBu.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Zen Old Mincho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-old-mincho/zen-old-mincho-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb4vrVla8dMgPgBu.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Zen Old Mincho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-old-mincho/zen-old-mincho-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb5LrFla8dMgPgBu.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Zen Old Mincho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-old-mincho/zen-old-mincho-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb5zrlla8dMgPgBu.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Zen Old Mincho", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-old-mincho/zen-old-mincho-900-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-old-mincho/zen-old-mincho.svg" - }, - { - "name": "Zen Tokyo Zoo", - "fontFamily": "Zen Tokyo Zoo, system-ui", - "slug": "zen-tokyo-zoo", - "category": "display", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zentokyozoo/v7/NGSyv5ffC0J_BK6aFNtr6sRv8a1uRWe9amg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Tokyo Zoo", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-tokyo-zoo/zen-tokyo-zoo-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zen-tokyo-zoo/zen-tokyo-zoo.svg" - }, - { - "name": "Zeyada", - "fontFamily": "Zeyada, cursive", - "slug": "zeyada", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zeyada/v19/11hAGpPTxVPUbgZDNGatWKaZ3g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zeyada", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zeyada/zeyada-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zeyada/zeyada.svg" - }, - { - "name": "Zhi Mang Xing", - "fontFamily": "Zhi Mang Xing, cursive", - "slug": "zhi-mang-xing", - "category": "handwriting", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zhimangxing/v17/f0Xw0ey79sErYFtWQ9a2rq-g0actfektIJ0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zhi Mang Xing", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zhi-mang-xing/zhi-mang-xing-400-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zhi-mang-xing/zhi-mang-xing.svg" - }, - { - "name": "Zilla Slab", - "fontFamily": "Zilla Slab, serif", - "slug": "zilla-slab", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYpEY2HSjWlhzbaw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Zilla Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zilla-slab/zilla-slab-300-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CVHapXnp2fazkfg.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Zilla Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zilla-slab/zilla-slab-300-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zillaslab/v11/dFa6ZfeM_74wlPZtksIFWj0w_HyIRlE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zilla Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zilla-slab/zilla-slab-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zillaslab/v11/dFa4ZfeM_74wlPZtksIFaj86-F6NVlFqdA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Zilla Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zilla-slab/zilla-slab-400-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYskZ2HSjWlhzbaw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Zilla Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zilla-slab/zilla-slab-500-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CDHepXnp2fazkfg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Zilla Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zilla-slab/zilla-slab-500-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYuUe2HSjWlhzbaw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Zilla Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zilla-slab/zilla-slab-600-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CIHCpXnp2fazkfg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Zilla Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zilla-slab/zilla-slab-600-italic.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYoEf2HSjWlhzbaw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Zilla Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zilla-slab/zilla-slab-700-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CRHGpXnp2fazkfg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Zilla Slab", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zilla-slab/zilla-slab-700-italic.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zilla-slab/zilla-slab.svg" - }, - { - "name": "Zilla Slab Highlight", - "fontFamily": "Zilla Slab Highlight, serif", - "slug": "zilla-slab-highlight", - "category": "serif", - "fontFace": [ - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zillaslabhighlight/v19/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtIY2DwSXlM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zilla Slab Highlight", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zilla-slab-highlight/zilla-slab-highlight-400-normal.svg" - }, - { - "downloadFromUrl": "https://fonts.gstatic.com/s/zillaslabhighlight/v19/gNMUW2BrTpK8-inLtBJgMMfbm6uNVDvRxiP0TET4YmVF0Mb6.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Zilla Slab Highlight", - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zilla-slab-highlight/zilla-slab-highlight-700-normal.svg" - } - ], - "preview": "https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/previews/zilla-slab-highlight/zilla-slab-highlight.svg" - } - ], - "categories": [ - { "id": "sans-serif", "name": "Sans Serif" }, - { "id": "serif", "name": "Serif" }, - { "id": "display", "name": "Display" }, - { "id": "handwriting", "name": "Handwriting" }, - { "id": "monospace", "name": "Monospace" } - ] -} diff --git a/lib/experimental/fonts/font-library/font-library.php b/lib/experimental/fonts/font-library/font-library.php index 6ceb1a34becbe2..701694155c48b1 100644 --- a/lib/experimental/fonts/font-library/font-library.php +++ b/lib/experimental/fonts/font-library/font-library.php @@ -47,7 +47,7 @@ function gutenberg_init_font_library_routes() { * Font collection associative array of configuration options. * * @type string $id The font collection's unique ID. - * @type string $data_json_file The font collection's data JSON file. + * @type string $src The font collection's data JSON file. * } * @return WP_Font_Collection|WP_Error A font collection is it was registered * successfully, else WP_Error. @@ -65,10 +65,10 @@ function () { ); $default_font_collection = array( - 'id' => 'default-font-collection', - 'name' => 'Google Fonts', - 'description' => __( 'Add from Google Fonts. Fonts are copied to and served from your site.', 'gutenberg' ), - 'data_json_file' => path_join( __DIR__, 'default-font-collection.json' ), + 'id' => 'default-font-collection', + 'name' => 'Google Fonts', + 'description' => __( 'Add from Google Fonts. Fonts are copied to and served from your site.', 'gutenberg' ), + 'src' => 'https://raw.githubusercontent.com/WordPress/google-fonts-to-wordpress-collection/main/output/google-fonts-with-previews.json', ); wp_register_font_collection( $default_font_collection ); diff --git a/phpunit/tests/fonts/font-library/wpFontCollection/__construct.php b/phpunit/tests/fonts/font-library/wpFontCollection/__construct.php index 0682425dd6282a..5c2b7b5c02793a 100644 --- a/phpunit/tests/fonts/font-library/wpFontCollection/__construct.php +++ b/phpunit/tests/fonts/font-library/wpFontCollection/__construct.php @@ -17,10 +17,10 @@ public function test_should_initialize_data() { $property->setAccessible( true ); $config = array( - 'id' => 'my-collection', - 'name' => 'My Collection', - 'description' => 'My collection description', - 'data_json_file' => 'my-collection-data.json', + 'id' => 'my-collection', + 'name' => 'My Collection', + 'description' => 'My collection description', + 'src' => 'my-collection-data.json', ); $font_collection = new WP_Font_Collection( $config ); @@ -51,9 +51,9 @@ public function data_should_throw_exception() { return array( 'no id' => array( array( - 'name' => 'My Collection', - 'description' => 'My collection description', - 'data_json_file' => 'my-collection-data.json', + 'name' => 'My Collection', + 'description' => 'My collection description', + 'src' => 'my-collection-data.json', ), 'Font Collection config ID is required as a non-empty string.', ), @@ -78,13 +78,13 @@ public function data_should_throw_exception() { 'Font Collection config options is required as a non-empty array.', ), - 'missing data_json_file' => array( + 'missing src' => array( array( 'id' => 'my-collection', 'name' => 'My Collection', 'description' => 'My collection description', ), - 'Font Collection config "data_json_file" option is required as a non-empty string.', + 'Font Collection config "src" option is required as a non-empty string.', ), ); diff --git a/phpunit/tests/fonts/font-library/wpFontCollection/getData.php b/phpunit/tests/fonts/font-library/wpFontCollection/getData.php index 37b76b687d6df0..4d0b2eb92b595e 100644 --- a/phpunit/tests/fonts/font-library/wpFontCollection/getData.php +++ b/phpunit/tests/fonts/font-library/wpFontCollection/getData.php @@ -12,6 +12,40 @@ */ class Tests_Fonts_WpFontCollection_GetData extends WP_UnitTestCase { + public function set_up() { + parent::set_up(); + + // Mock the wp_remote_request() function. + add_filter( 'pre_http_request', array( $this, 'mock_request' ), 10, 3 ); + } + + public function tear_down() { + // Remove the mock to not affect other tests. + remove_filter( 'pre_http_request', array( $this, 'mock_request' ) ); + + parent::tear_down(); + } + + public function mock_request( $preempt, $args, $url ) { + // if the URL is not the URL you want to mock, return false. + if ( 'https://localhost/fonts/mock-font-collection.json' !== $url ) { + return false; + } + + // Mock the response body. + $mock_collection_data = array( + 'fontFamilies' => 'mock', + 'categories' => 'mock', + ); + + return array( + 'body' => json_encode( $mock_collection_data ), + 'response' => array( + 'code' => 200, + ), + ); + } + /** * @dataProvider data_should_get_data * @@ -33,12 +67,12 @@ public function data_should_get_data() { file_put_contents( $mock_file, '{"this is mock data":true}' ); return array( - 'with a data_json_file' => array( + 'with a file' => array( 'config' => array( - 'id' => 'my-collection', - 'name' => 'My Collection', - 'description' => 'My collection description', - 'data_json_file' => $mock_file, + 'id' => 'my-collection', + 'name' => 'My Collection', + 'description' => 'My collection description', + 'src' => $mock_file, ), 'expected_data' => array( 'id' => 'my-collection', @@ -47,6 +81,23 @@ public function data_should_get_data() { 'data' => array( 'this is mock data' => true ), ), ), + 'with a url' => array( + 'config' => array( + 'id' => 'my-collection-with-url', + 'name' => 'My Collection with URL', + 'description' => 'My collection description', + 'src' => 'https://localhost/fonts/mock-font-collection.json', + ), + 'expected_data' => array( + 'id' => 'my-collection-with-url', + 'name' => 'My Collection with URL', + 'description' => 'My collection description', + 'data' => array( + 'fontFamilies' => 'mock', + 'categories' => 'mock', + ), + ), + ), ); } } diff --git a/phpunit/tests/fonts/font-library/wpFontLibrary/getFontCollection.php b/phpunit/tests/fonts/font-library/wpFontLibrary/getFontCollection.php index b3d8d1f10a1efc..bfdb7258fa11aa 100644 --- a/phpunit/tests/fonts/font-library/wpFontLibrary/getFontCollection.php +++ b/phpunit/tests/fonts/font-library/wpFontLibrary/getFontCollection.php @@ -14,10 +14,10 @@ class Tests_Fonts_WpFontLibrary_GetFontCollection extends WP_UnitTestCase { public static function set_up_before_class() { $my_font_collection_config = array( - 'id' => 'my-font-collection', - 'name' => 'My Font Collection', - 'description' => 'Demo about how to a font collection to your WordPress Font Library.', - 'data_json_file' => path_join( __DIR__, 'my-font-collection-data.json' ), + 'id' => 'my-font-collection', + 'name' => 'My Font Collection', + 'description' => 'Demo about how to a font collection to your WordPress Font Library.', + 'src' => path_join( __DIR__, 'my-font-collection-data.json' ), ); wp_register_font_collection( $my_font_collection_config ); diff --git a/phpunit/tests/fonts/font-library/wpFontLibrary/getFontCollections.php b/phpunit/tests/fonts/font-library/wpFontLibrary/getFontCollections.php index 92078898c462cb..97e66e64e87161 100644 --- a/phpunit/tests/fonts/font-library/wpFontLibrary/getFontCollections.php +++ b/phpunit/tests/fonts/font-library/wpFontLibrary/getFontCollections.php @@ -16,10 +16,10 @@ public static function set_up_before_class() { $font_library = new WP_Font_Library(); $my_font_collection_config = array( - 'id' => 'my-font-collection', - 'name' => 'My Font Collection', - 'description' => 'Demo about how to a font collection to your WordPress Font Library.', - 'data_json_file' => path_join( __DIR__, 'my-font-collection-data.json' ), + 'id' => 'my-font-collection', + 'name' => 'My Font Collection', + 'description' => 'Demo about how to a font collection to your WordPress Font Library.', + 'src' => path_join( __DIR__, 'my-font-collection-data.json' ), ); $font_library::register_font_collection( $my_font_collection_config ); diff --git a/phpunit/tests/fonts/font-library/wpFontLibrary/registerFontCollection.php b/phpunit/tests/fonts/font-library/wpFontLibrary/registerFontCollection.php index 61b5eab873d6c5..6bc5fbb8161cee 100644 --- a/phpunit/tests/fonts/font-library/wpFontLibrary/registerFontCollection.php +++ b/phpunit/tests/fonts/font-library/wpFontLibrary/registerFontCollection.php @@ -14,10 +14,10 @@ class Tests_Fonts_WpFontLibrary_RegisterFontCollection extends WP_UnitTestCase { public function test_should_register_font_collection() { $config = array( - 'id' => 'my-collection', - 'name' => 'My Collection', - 'description' => 'My Collection Description', - 'data_json_file' => 'my-collection-data.json', + 'id' => 'my-collection', + 'name' => 'My Collection', + 'description' => 'My Collection Description', + 'src' => 'my-collection-data.json', ); $collection = WP_Font_Library::register_font_collection( $config ); $this->assertInstanceOf( 'WP_Font_Collection', $collection ); @@ -25,9 +25,9 @@ public function test_should_register_font_collection() { public function test_should_return_error_if_id_is_missing() { $config = array( - 'name' => 'My Collection', - 'description' => 'My Collection Description', - 'data_json_file' => 'my-collection-data.json', + 'name' => 'My Collection', + 'description' => 'My Collection Description', + 'src' => 'my-collection-data.json', ); $this->expectException( 'Exception' ); $this->expectExceptionMessage( 'Font Collection config ID is required as a non-empty string.' ); @@ -36,9 +36,9 @@ public function test_should_return_error_if_id_is_missing() { public function test_should_return_error_if_name_is_missing() { $config = array( - 'id' => 'my-collection', - 'description' => 'My Collection Description', - 'data_json_file' => 'my-collection-data.json', + 'id' => 'my-collection', + 'description' => 'My Collection Description', + 'src' => 'my-collection-data.json', ); $this->expectException( 'Exception' ); $this->expectExceptionMessage( 'Font Collection config name is required as a non-empty string.' ); @@ -54,16 +54,16 @@ public function test_should_return_error_if_config_is_empty() { public function test_should_return_error_if_id_is_repeated() { $config1 = array( - 'id' => 'my-collection-1', - 'name' => 'My Collection 1', - 'description' => 'My Collection 1 Description', - 'data_json_file' => 'my-collection-1-data.json', + 'id' => 'my-collection-1', + 'name' => 'My Collection 1', + 'description' => 'My Collection 1 Description', + 'src' => 'my-collection-1-data.json', ); $config2 = array( - 'id' => 'my-collection-1', - 'name' => 'My Collection 2', - 'description' => 'My Collection 2 Description', - 'data_json_file' => 'my-collection-2-data.json', + 'id' => 'my-collection-1', + 'name' => 'My Collection 2', + 'description' => 'My Collection 2 Description', + 'src' => 'my-collection-2-data.json', ); // Register first collection. diff --git a/phpunit/tests/fonts/font-library/wpRestFontLibraryController/getFontCollection.php b/phpunit/tests/fonts/font-library/wpRestFontLibraryController/getFontCollection.php index ca661a1aac6268..dc8d640f863301 100644 --- a/phpunit/tests/fonts/font-library/wpRestFontLibraryController/getFontCollection.php +++ b/phpunit/tests/fonts/font-library/wpRestFontLibraryController/getFontCollection.php @@ -14,29 +14,96 @@ class Tests_Fonts_WPRESTFontLibraryController_GetFontCollection extends WP_REST_Font_Library_Controller_UnitTestCase { /** - * Register a mock collection. + * Register mock collections. */ - public static function wpSetupBeforeClass() { + public function set_up() { + parent::set_up(); // Mock font collection data file. $mock_file = wp_tempnam( 'one-collection-' ); file_put_contents( $mock_file, '{"this is mock data":true}' ); + // Mock the wp_remote_request() function. + add_filter( 'pre_http_request', array( $this, 'mock_request' ), 10, 3 ); - // Add a font collection. - $config = array( - 'id' => 'one-collection', - 'name' => 'One Font Collection', - 'description' => 'Demo about how to a font collection to your WordPress Font Library.', - 'data_json_file' => $mock_file, + $config_with_file = array( + 'id' => 'one-collection', + 'name' => 'One Font Collection', + 'description' => 'Demo about how to a font collection to your WordPress Font Library.', + 'src' => $mock_file, ); - wp_register_font_collection( $config ); + wp_register_font_collection( $config_with_file ); + + $config_with_url = array( + 'id' => 'collection-with-url', + 'name' => 'Another Font Collection', + 'description' => 'Demo about how to a font collection to your WordPress Font Library.', + 'src' => 'https://localhost/fonts/mock-font-collection.json', + ); + + wp_register_font_collection( $config_with_url ); + + $config_with_non_existing_file = array( + 'id' => 'collection-with-non-existing-file', + 'name' => 'Another Font Collection', + 'description' => 'Demo about how to a font collection to your WordPress Font Library.', + 'src' => '/home/non-existing-file.json', + ); + + wp_register_font_collection( $config_with_non_existing_file ); + + $config_with_non_existing_url = array( + 'id' => 'collection-with-non-existing-url', + 'name' => 'Another Font Collection', + 'description' => 'Demo about how to a font collection to your WordPress Font Library.', + 'src' => 'https://non-existing-url-1234x.com.ar/fake-path/missing-file.json', + ); + + wp_register_font_collection( $config_with_non_existing_url ); } - public function test_get_font_collection() { + public function mock_request( $preempt, $args, $url ) { + // Check if it's the URL you want to mock. + if ( 'https://localhost/fonts/mock-font-collection.json' === $url ) { + + // Mock the response body. + $mock_collection_data = array( + 'fontFamilies' => 'mock', + 'categories' => 'mock', + ); + + return array( + 'body' => json_encode( $mock_collection_data ), + 'response' => array( + 'code' => 200, + ), + ); + } + + // For any other URL, return false which ensures the request is made as usual (or you can return other mock data). + return false; + } + + public function tear_down() { + // Remove the mock to not affect other tests. + remove_filter( 'pre_http_request', array( $this, 'mock_request' ) ); + + parent::tear_down(); + } + + public function test_get_font_collection_from_file() { $request = new WP_REST_Request( 'GET', '/wp/v2/fonts/collections/one-collection' ); $response = rest_get_server()->dispatch( $request ); $data = $response->get_data(); $this->assertSame( 200, $response->get_status(), 'The response status is not 200.' ); $this->assertArrayHasKey( 'data', $data, 'The response data does not have the key with the file data.' ); + $this->assertSame( array( 'this is mock data' => true ), $data['data'], 'The response data does not have the expected file data.' ); + } + + public function test_get_font_collection_from_url() { + $request = new WP_REST_Request( 'GET', '/wp/v2/fonts/collections/collection-with-url' ); + $response = rest_get_server()->dispatch( $request ); + $data = $response->get_data(); + $this->assertSame( 200, $response->get_status(), 'The response status is not 200.' ); + $this->assertArrayHasKey( 'data', $data, 'The response data does not have the key with the file data.' ); } public function test_get_non_existing_collection_should_return_404() { @@ -44,4 +111,16 @@ public function test_get_non_existing_collection_should_return_404() { $response = rest_get_server()->dispatch( $request ); $this->assertSame( 404, $response->get_status() ); } + + public function test_get_non_existing_file_should_return_500() { + $request = new WP_REST_Request( 'GET', '/wp/v2/fonts/collections/collection-with-non-existing-file' ); + $response = rest_get_server()->dispatch( $request ); + $this->assertSame( 500, $response->get_status() ); + } + + public function test_get_non_existing_url_should_return_500() { + $request = new WP_REST_Request( 'GET', '/wp/v2/fonts/collections/collection-with-non-existing-url' ); + $response = rest_get_server()->dispatch( $request ); + $this->assertSame( 500, $response->get_status() ); + } } diff --git a/phpunit/tests/fonts/font-library/wpRestFontLibraryController/getFontCollections.php b/phpunit/tests/fonts/font-library/wpRestFontLibraryController/getFontCollections.php index 52678aa4cb94ae..ad120ee36fce4d 100644 --- a/phpunit/tests/fonts/font-library/wpRestFontLibraryController/getFontCollections.php +++ b/phpunit/tests/fonts/font-library/wpRestFontLibraryController/getFontCollections.php @@ -27,10 +27,10 @@ public function test_get_font_collections() { // Add a font collection. $config = array( - 'id' => 'my-font-collection', - 'name' => 'My Font Collection', - 'description' => 'Demo about how to a font collection to your WordPress Font Library.', - 'data_json_file' => $mock_file, + 'id' => 'my-font-collection', + 'name' => 'My Font Collection', + 'description' => 'Demo about how to a font collection to your WordPress Font Library.', + 'src' => $mock_file, ); wp_register_font_collection( $config );