From 3d82594e433c4d60dcae292d532cc1bc4106523f Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Mon, 17 Jul 2023 13:54:19 -0300 Subject: [PATCH 001/169] Adding fonts library backend --- .../fonts-library/class-wp-fonts-library.php | 456 + ...class-wp-rest-fonts-library-controller.php | 224 + .../fonts-library/google-fonts.json | 46719 ++++++++++++++++ 3 files changed, 47399 insertions(+) create mode 100644 lib/experimental/fonts-library/class-wp-fonts-library.php create mode 100644 lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php create mode 100644 lib/experimental/fonts-library/google-fonts.json diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php new file mode 100644 index 00000000000000..273116f2925e12 --- /dev/null +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -0,0 +1,456 @@ + 'font/otf', + 'ttf' => 'font/ttf', + 'woff' => 'font/woff', + 'woff2' => 'font/woff2', + ); + + private $data; + private $relative_fonts_path; + + public function __construct( $font_family = array() ) { + $this->data = $font_family; + $this->relative_fonts_path = content_url('/fonts/'); + } + + /** + * Returns the font family data + * + * @return array An array in fontFamily theme.json format. + */ + public function get_data() { + return $this->data; + } + + /** + * Returns the font family data + * + * @return string fontFamily in theme.json format as stringified JSON. + */ + public function get_data_as_json () { + return wp_json_encode( $this->get_data() ); + } + + /** + * Returns if the font family has font faces defined + * + * @return bool true if the font family has font faces defined, false otherwise. + */ + public function has_font_faces () { + return ( + isset( $this->data['fontFace'] ) + && is_array( $this->data['fontFace'] ) + && !empty( $this->data['fontFace'] ) + ); + } + + /** + * Returns the absolute path to the fonts directory. + * + * @return string Path to the fonts directory. + */ + static public function get_fonts_directory () { + return path_join( WP_CONTENT_DIR, 'fonts' ); + } + + /** + * Define WP_FONTS_DIR constant to make it available to the rest of the code. + * + */ + static public function define_fonts_directory () { + define( 'WP_FONTS_DIR', self::get_fonts_directory() ); + } + + /** + * Returns whether the given file has a font MIME type. + * + * @param string $filepath The file to check. + * @return bool True if the file has a font MIME type, false otherwise. + */ + static private function has_font_mime_type( $filepath ) { + $filetype = wp_check_filetype( $filepath, self::ALLOWED_FONT_MIME_TYPES ); + return in_array( $filetype['type'], self::ALLOWED_FONT_MIME_TYPES, true ); + } + + /** + * Removes font family assets + * + * @param array $font_family + * @return bool True if assets were removed, false otherwise. + */ + private function remove_font_family_assets () { + if ( $this->has_font_faces() ) { + foreach ( $this->data['fontFace'] as $font_face ) { + $were_assets_removed = $this->delete_font_face_assets( $font_face ); + if ( $were_assets_removed === false ) { + return false; + } + } + } + return true; + } + + /** + * Removes a font family from the database and deletes its assets. + * + * @return bool|WP_Error True if the font family was uninstalled, WP_Error otherwise. + */ + public function uninstall () { + $post = $this->get_data_from_post(); + if ( $post === null ) { + return new WP_Error( 'font_family_not_found', __( 'The font family could not be found.') ); + } + $were_assets_removed = $this->remove_font_family_assets(); + if ( $were_assets_removed === true ) { + $was_post_deleted = wp_delete_post ( $post->ID, true ); + if ( $was_post_deleted === null ) { + return new WP_Error( 'font_family_not_deleted', __( 'The font family could not be deleted.') ); + } + } + return true; + } + + /** + * Deletes a specified font asset file from the fonts directory. + * + * @param string $src The path of the font asset file to delete. + * @return bool Whether the file was deleted. + */ + static private function delete_asset( $src ) { + $filename = basename( $src ); + $file_path = path_join( WP_FONTS_DIR, $filename ); + + if ( ! file_exists( $file_path ) ) { + return false; + } + wp_delete_file( $file_path ); + + // If the file still exists after trying to delete it, return false + if ( file_exists( $file_path ) ) { + return false; + } + + // return true if the file was deleted + return true; + } + + /** + * Deletes all font face asset files associated with a given font face. + * + * @param array $font_face The font face array containing the 'src' attribute with the file path(s) to be deleted. + */ + static private function delete_font_face_assets( $font_face ) { + $srcs = !empty ( $font_face['src'] ) && is_array( $font_face['src'] ) + ? $font_face['src'] + : array( $font_face['src'] ); + foreach ( $srcs as $src ) { + $was_asset_removed = self::delete_asset($src); + if ( ! $was_asset_removed ) { + // Bail if any of the assets could not be removed + return false; + } + } + return true; + } + + /** + * Downloads a font asset. + * + * Downloads a font asset from a specified source URL and saves it to the font directory. + * + * @param string $src The source URL of the font asset to be downloaded. + * @param string $filename The filename to save the downloaded font asset as. + * @return string|bool The relative path to the downloaded font asset. False if the download failed. + */ + private function download_asset( $src, $filename ) { + $file_path = path_join( WP_FONTS_DIR, $filename ); + + // Checks if the file to be downloaded has a font mime type + if ( ! self::has_font_mime_type( $file_path ) ) { + return false; + } + + // Downloads the font asset or returns false + $temp_file = download_url( $src ); + if ( is_wp_error( $temp_file ) ) { + @unlink( $temp_file ); + return false; + } + + // Moves the file to the fonts directory or return false + $renamed_file = rename( $temp_file, $file_path ); + // Cleans the temp file + @unlink( $temp_file ); + + if ( ! $renamed_file ) { + return false; + } + + // Returns the relative path to the downloaded font asset to be used as font face src + return "{$this->relative_fonts_path}{$filename}"; + } + + /** + * Merges two fonts and their font faces. + * + * @param array $font1 The first font to merge. + * @param array $font2 The second font to merge. + * + * @return array The merged font. + */ + static private function merge_fonts ( $font1, $font2 ) { + $font_faces_1 = $font1['fontFace'] ?? array(); + $font_faces_2 = $font2['fontFace'] ?? array(); + + $merged_font_faces = array_merge( $font_faces_1, $font_faces_2 ); + $merged_font_faces = array_map("unserialize", array_unique(array_map("serialize", $merged_font_faces))); + + $merged_font = array_merge( $font1, $font2 ); + $merged_fonts = array_unique( $merged_font ); + $merged_font['fontFace'] = $merged_font_faces; + + return $merged_font; + } + + /** + * Move an uploaded font face asset from temp folder to the wp fonts directory + * + * This is used when uploading local fonts + * + * @param array $font_face Font face to download. + * @return array New font face with all assets downloaded and referenced in the font face definition. + */ + private function move_font_face_asset ( $font_face, $file ) { + $new_font_face = $font_face; + $filename = self::get_filename_from_font_face( $font_face, $file['name'] ); + $filepath= path_join( WP_FONTS_DIR, $filename ); + + // Remove the uploaded font asset reference from the font face definition because it is no longer needed. + unset( $new_font_face['file'] ); + + // If the filepath has not a font mime type, we don't move the file and return the font face definition without src to be ignored later + if ( ! self::has_font_mime_type( $filepath ) ) { + return $new_font_face; + } + + // Move the uploaded font asset from the temp folder to the wp fonts directory + $file_was_moved = move_uploaded_file( $file['tmp_name'], $filepath ); + + if ( $file_was_moved ) { + // If the file was successfully moved, we update the font face definition to reference the new file location + $new_font_face['src'] = "{$this->relative_fonts_path}{$filename}"; + } + + return $new_font_face; + } + + /** + * Sanitizes the font family data using WP_Theme_JSON. + * + * @param array $font A font family definition. + * @return array A sanitized font family defintion. + */ + private function sanitize() { + // Creates the structure of theme.json array with the new fonts + $fonts_json = array( + 'version' => '2', + 'settings' => array( + 'typography' => array( + 'fontFamilies' => array( $this->data ) + ) + ) + ); + // Creates a new WP_Theme_JSON object with the new fonts to mmake profit of the sanitization and validation + $theme_json = new WP_Theme_JSON( $fonts_json ); + $theme_data = $theme_json->get_data(); + $sanitized_font = !empty( $theme_data['settings']['typography']['fontFamilies'] ) + ? $theme_data['settings']['typography']['fontFamilies'][0] + : array(); + $this->data = $sanitized_font; + return $this->data; + } + + /** + * Generates a filename for a font face asset. + * + * Creates a filename for a font face asset using font family, style, weight and extension information. + * + * @param array $font_face The font face array containing 'fontFamily', 'fontStyle', and 'fontWeight' attributes. + * @param string $url The URL of the font face asset, used to derive the file extension. + * @param int $i Optional counter for appending to the filename, default is 1. + * @return string The generated filename for the font face asset. + */ + static private function get_filename_from_font_face ( $font_face, $url, $i=1 ) { + $extension = pathinfo( $url, PATHINFO_EXTENSION ); + $family = sanitize_title( $font_face['fontFamily'] ); + $style = sanitize_title( $font_face['fontStyle'] ); + $weight = sanitize_title( $font_face['fontWeight'] ); + $filename = "{$family}_{$style}_{$weight}"; + if ($i > 1) { + $filename .= "_{$i}"; + } + return "{$filename}.{$extension}"; + } + + /** + * Downloads font face assets. + * + * Downloads the font face asset(s) associated with a font face. It works with both single + * source URLs and arrays of multiple source URLs. + * + * @param array $font_face The font face array containing the 'src' attribute with the source URL(s) of the assets. + * @return array The modified font face array with the new source URL(s) to the downloaded assets. + */ + private function download_font_face_assets ( $font_face ) { + $new_font_face = $font_face; + $srcs = !empty ( $font_face['src'] ) && is_array( $font_face['src'] ) + ? $font_face['src'] + : array( $font_face['src'] ); + $new_font_face['src'] = array(); + $i = 0; + foreach ( $srcs as $src ) { + $filename = self::get_filename_from_font_face( $font_face, $src, $i++ ); + $new_src = $this->download_asset($src, $filename); + if ( $new_src ) { + $new_font_face['src'][] = $new_src; + } + } + if ( count( $new_font_face['src'] ) === 1 ) { + $new_font_face['src'] = $new_font_face['src'][0]; + } + return $new_font_face; + } + + + public function download_or_move_font_faces ( $files ) { + if ( $this->has_font_faces() ) { + $new_font_faces = array(); + foreach ( $this->data['fontFace'] as $font_face ) { + if ( empty( $files ) ){ + // If we are installing local fonts, we need to move the font face assets from the temp folder to the wp fonts directory + $new_font_face = $this->download_font_face_assets( $font_face ); + } else { + // If we are installing google fonts, we need to download the font face assets + $new_font_face = $this->move_font_face_asset( $font_face, $files[ $font_face[ 'file' ] ] ); + } + // If the font face assets were successfully downloaded, we add the font face to the new font. + // Font faces with failed downloads are not added to the new font + if ( !empty ( $new_font_face['src'] ) ){ + $new_font_faces[] = $new_font_face; + } + } + if ( !empty ( $new_font_faces ) ) { + $this->data['fontFace'] = $new_font_faces; + return true; + } + return WP_Error( 'font_face_download_failed', __( 'The font face assets could not be written.' ) ); + } + return true; + } + + /** + * Get the post for a font family + * + * @return WP_Post|null The post for this font family object or null if the post does not exist + */ + private function get_font_post () { + $args = array ( + 'post_type' => 'wp_fonts_library', + 'post_name' => $this->data['slug'], + 'name' => $this->data['slug'], + 'posts_per_page' => 1, + ); + + $posts_query = new WP_Query( $args ); + + if ( $posts_query->have_posts() ) { + $post = $posts_query->posts[0]; + return $post; + } + + return null; + } + + /** + * Get the data for this object from the database and set it to the data property + * + * @return WP_Post|null The post for this font family object or null if the post does not exist + */ + private function get_data_from_post () { + $post = $this->get_font_post(); + if ( $post ) { + $data = json_decode( $post->post_content, true ); + $this->data = $data; + return $post; + } + return null; + } + + /** + * Create a post for a font family + * + * @param array $font_family + * @return int + */ + private function create_font_post () { + $post = array( + 'post_title' => $this->data['name'], + 'post_name' => $this->data['slug'], + 'post_type' => 'wp_fonts_library', + 'post_content' => $this->get_data_as_json(), + 'post_status' => 'publish', + ); + $post_id = wp_insert_post( $post ); + if ( $post_id === 0 ) { + return WP_Error( 'font_post_creation_failed', __( 'Font post creation failed' ) ); + } + return $post_id; + } + + /** + * @param array $font_family + * @param WP_Post $post + * @return int + */ + private function update_font_post ( $post ) { + $post_font_data = json_decode( $post->post_content, true ); + $new_data = $this->merge_fonts( $post_font_data, $this->data ); + $this->data = $new_data; + + $post = array( + 'ID' => $post->ID, + 'post_content' => $this->get_data_as_json(), + ); + + $post_id = wp_update_post( $post ); + return $post_id; + } + + /** + * Creates a post for a font in the fonts library if it doesn't exist, or updates it if it does. + * + * @param array $font_family + * @return WP_Post + */ + public function create_or_update_font_post () { + $post = $this->get_font_post(); + if ( $post ) { + return $this->update_font_post( $post ); + } + return $this->create_font_post(); + } + +} + +add_action( 'init', array( 'WP_Font_Family', 'define_fonts_directory' ) ); \ No newline at end of file diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php new file mode 100644 index 00000000000000..e704b300ad8b3d --- /dev/null +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -0,0 +1,224 @@ +rest_base = 'fonts_library'; + $this->namespace = 'wp/v2'; + } + + public function register_routes () { + register_rest_route( + $this->namespace, + '/' . $this->rest_base, + array( + array( + 'methods' => WP_REST_Server::EDITABLE, + 'callback' => array( $this, 'install_fonts' ), + 'permission_callback' => array( $this, 'update_fonts_library_permissions_check' ), + ), + ) + ); + + register_rest_route( + $this->namespace, + '/' . $this->rest_base, + array( + array( + 'methods' => WP_REST_Server::DELETABLE, + 'callback' => array( $this, 'uninstall_font_family' ), + 'permission_callback' => array( $this, 'update_fonts_library_permissions_check' ), + ), + ) + ); + register_rest_route( + $this->namespace, + '/' . $this->rest_base . '/google_fonts', + array( + array( + 'methods' => WP_REST_Server::READABLE, + 'callback' => array( $this, 'get_google_fonts' ), + 'permission_callback' => array( $this, 'read_fonts_library_permissions_check' ), + ), + ) + ); + + } + + /** + * Removes a font family from the fonts library and all their assets + * + * @param WP_REST_Request $request Full details about the request. + * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure. + */ + function uninstall_font_family ( $request ) { + $data = array ( + 'slug' => $request['slug'], + ); + $font = new WP_Font_Family ( $data ); + return new WP_REST_Response( $font->uninstall() ); + } + + /** + * Check if user has permissions to update the fonts library + * + * @param WP_REST_Request $request Full details about the request. + * @return true|WP_Error True if the request has write access for the item, WP_Error object otherwise. + */ + function update_fonts_library_permissions_check ( $request ) { + if ( ! current_user_can( 'edit_theme_options' ) ) { + return new WP_Error( + 'rest_cannot_update_fonts_library', + __( 'Sorry, you are not allowed to update the fonts library on this site.' ), + array( + 'status' => rest_authorization_required_code(), + ) + ); + } + + // Create fonts directory if it doesn't exist + wp_mkdir_p( WP_FONTS_DIR ); + + // The update endpoints requires write access to the temp and the fonts directories + $temp_dir = get_temp_dir(); + if ( ! is_writable( $temp_dir ) || ! wp_is_writable( WP_FONTS_DIR ) ) { + return new WP_Error( + 'rest_cannot_write_fonts_folder', + __( 'Error: WordPress does not have permission to write the fonts folder on your server.' ), + array( + 'status' => 500, + ) + ); + } + + return true; + } + + /** + * Check if user has permissions to read the fonts library + * + * @param WP_REST_Request $request Full details about the request. + * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise. + */ + function read_fonts_library_permissions_check ( $request ) { + if ( !current_user_can( 'edit_posts' ) ) { + return new WP_Error( + 'rest_cannot_read_fonts_library', + __( 'Sorry, you are not allowed to read the fonts library on this site.' ), + array( + 'status' => rest_authorization_required_code(), + ) + ); + } + + return true; + } + + /** + * Fetches the Google Fonts JSON file. + * + * Reads the "google-fonts.json" file from the file system and returns its content. + * + * @return WP_REST_Response|WP_Error The content of the "google-fonts.json" file wrapped in a WP_REST_Response object. + */ + function get_google_fonts () { + $file = file_get_contents( + path_join ( dirname(__FILE__),"google-fonts.json" ) + ); + if ( $file ) { + return new WP_REST_Response( json_decode( $file ) ); + } + return new WP_Error( + 'rest_cant_read_google_fonts', + __( 'Error reading Google Fonts JSON file.' ), + array( 'status' => 500 ) + ); + } + + /** + * Installs new fonts. + * + * Takes a request containing new fonts to install, downloads their assets, and adds them to the fonts library. + * + * @param WP_REST_Request $request The request object containing the new fonts to install in the request parameters. + * @return WP_REST_Response|WP_Error The updated fonts library post content. + */ + function install_fonts ( $request ) { + // Get new fonts to install + $fonts_to_install = $request->get_param('fontFamilies'); + + // As we are receiving form data, the font families are encoded as a string. + // We are using form data because local fonts need to use that format to attach the files in the request + $fonts_to_install = json_decode( $fonts_to_install, true ); + + if ( empty ( $fonts_to_install ) ) { + return new WP_Error( 'no_fonts_to_install', __( 'No fonts to install' ), array( 'status' => 400 ) ); + } + + // Get uploaded files (used when installing local fonts) + $files = $request->get_file_params(); + + // Download or move the new fonts assets to the fonts folder + $fonts = $this->download_or_move_fonts( $fonts_to_install, $files ); + + $response = array(); + if ( !empty( $fonts ) ){ + foreach ( $fonts as $font ) { + $font->create_or_update_font_post(); + $response[] = $font->get_data(); + } + + return new WP_REST_Response( $response ); + } + + return new WP_Error( 'error_installing_fonts', __( 'Error installing fonts. No font was installed.' ), array( 'status' => 500 ) ); + } + + /** + * Download or move new font assets to the fonts folder + * + * @param array $fonts Fonts to install. + * @param array $files Uploaded files (used when installing local fonts). + * + * @return array New fonts with all assets downloaded referenced in the font families definition. + */ + function download_or_move_fonts ( $font_families, $files ) { + $new_fonts = array(); + foreach ( $font_families as $font_family ) { + $font = new WP_Font_Family( $font_family ); + $were_assets_written = $font->download_or_move_font_faces( $files ); + // If the font face assets were successfully downloaded, we add the font to the new fonts array. + // Fonts without no font faces successfully downloaded are not added to the new fonts array + if ( $were_assets_written ) { + $new_fonts[] = $font; + } + } + return $new_fonts; + } + + function register_post_type () { + $args = array( + 'public' => true, + 'label' => 'Font Library', + 'show_in_rest' => true, + ); + register_post_type( 'wp_fonts_library', $args ); + } + +} + +function fonts_library_register_routes () { + $fonts_library = new WP_Fonts_Library_Controller(); + $fonts_library->register_routes(); + $fonts_library->register_post_type(); +} + +add_action( 'rest_api_init', 'fonts_library_register_routes' ); \ No newline at end of file diff --git a/lib/experimental/fonts-library/google-fonts.json b/lib/experimental/fonts-library/google-fonts.json new file mode 100644 index 00000000000000..8563dedf3be565 --- /dev/null +++ b/lib/experimental/fonts-library/google-fonts.json @@ -0,0 +1,46719 @@ +{ + "fontFamilies": [ + { + "name": "ABeeZee", + "fontFamily": "ABeeZee, sans-serif", + "slug": "wp-font-lib-abeezee", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/abeezee/v22/esDR31xSG-6AGleN6tKukbcHCpE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "ABeeZee" + }, + { + "src": "http://fonts.gstatic.com/s/abeezee/v22/esDT31xSG-6AGleN2tCklZUCGpG-GQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "ABeeZee" + } + ] + }, + { + "name": "Abel", + "fontFamily": "Abel, sans-serif", + "slug": "wp-font-lib-abel", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/abel/v18/MwQ5bhbm2POE6VhLPJp6qGI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Abel" + } + ] + }, + { + "name": "Abhaya Libre", + "fontFamily": "Abhaya Libre, serif", + "slug": "wp-font-lib-abhaya-libre", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3tmeuGtX-Co5MNzeAOqinEge0PWovdU4w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Abhaya Libre" + }, + { + "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYj2ryqtxI6oYtBA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Abhaya Libre" + }, + { + "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYo23yqtxI6oYtBA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Abhaya Libre" + }, + { + "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYx2zyqtxI6oYtBA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Abhaya Libre" + }, + { + "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEY22_yqtxI6oYtBA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Abhaya Libre" + } + ] + }, + { + "name": "Aboreto", + "fontFamily": "Aboreto, system-ui", + "slug": "wp-font-lib-aboreto", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aboreto/v2/5DCXAKLhwDDQ4N8blKTeA2yuxSY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aboreto" + } + ] + }, + { + "name": "Abril Fatface", + "fontFamily": "Abril Fatface, system-ui", + "slug": "wp-font-lib-abril-fatface", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/abrilfatface/v19/zOL64pLDlL1D99S8g8PtiKchm-BsjOLhZBY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Abril Fatface" + } + ] + }, + { + "name": "Abyssinica SIL", + "fontFamily": "Abyssinica SIL, serif", + "slug": "wp-font-lib-abyssinica-sil", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/abyssinicasil/v5/oY1H8ezOqK7iI3rK_45WKoc8J6UZBFOVAXuI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Abyssinica SIL" + } + ] + }, + { + "name": "Aclonica", + "fontFamily": "Aclonica, sans-serif", + "slug": "wp-font-lib-aclonica", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aclonica/v18/K2FyfZJVlfNNSEBXGb7TCI6oBjLz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aclonica" + } + ] + }, + { + "name": "Acme", + "fontFamily": "Acme, sans-serif", + "slug": "wp-font-lib-acme", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/acme/v21/RrQfboBx-C5_bx3Lb23lzLk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Acme" + } + ] + }, + { + "name": "Actor", + "fontFamily": "Actor, sans-serif", + "slug": "wp-font-lib-actor", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/actor/v17/wEOzEBbCkc5cO3ekXygtUMIO.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Actor" + } + ] + }, + { + "name": "Adamina", + "fontFamily": "Adamina, serif", + "slug": "wp-font-lib-adamina", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/adamina/v21/j8_r6-DH1bjoc-dwu-reETl4Bno.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Adamina" + } + ] + }, + { + "name": "Advent Pro", + "fontFamily": "Advent Pro, sans-serif", + "slug": "wp-font-lib-advent-pro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLQyJPTJoonw1aBA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLwyNPTJoonw1aBA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLHSNPTJoonw1aBA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLQyNPTJoonw1aBA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLcSNPTJoonw1aBA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLnSRPTJoonw1aBA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLpCRPTJoonw1aBA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLwyRPTJoonw1aBA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpL6iRPTJoonw1aBA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CnDpAsvQhKBH4C.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AnD5AsvQhKBH4C.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2D5D5AsvQhKBH4C.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CnD5AsvQhKBH4C.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CVD5AsvQhKBH4C.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2B5CJAsvQhKBH4C.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2BACJAsvQhKBH4C.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AnCJAsvQhKBH4C.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AOCJAsvQhKBH4C.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + } + ] + }, + { + "name": "Aguafina Script", + "fontFamily": "Aguafina Script, cursive", + "slug": "wp-font-lib-aguafina-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aguafinascript/v17/If2QXTv_ZzSxGIO30LemWEOmt1bHqs4pgicOrg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aguafina Script" + } + ] + }, + { + "name": "Akaya Kanadaka", + "fontFamily": "Akaya Kanadaka, system-ui", + "slug": "wp-font-lib-akaya-kanadaka", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/akayakanadaka/v16/N0bM2S5CPO5oOQqvazoRRb-8-PfRS5VBBSSF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Akaya Kanadaka" + } + ] + }, + { + "name": "Akaya Telivigala", + "fontFamily": "Akaya Telivigala, system-ui", + "slug": "wp-font-lib-akaya-telivigala", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/akayatelivigala/v22/lJwc-oo_iG9wXqU3rCTD395tp0uifdLdsIH0YH8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Akaya Telivigala" + } + ] + }, + { + "name": "Akronim", + "fontFamily": "Akronim, system-ui", + "slug": "wp-font-lib-akronim", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/akronim/v23/fdN-9sqWtWZZlHRp-gBxkFYN-a8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Akronim" + } + ] + }, + { + "name": "Akshar", + "fontFamily": "Akshar, sans-serif", + "slug": "wp-font-lib-akshar", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSSgFy9CY94XsnPc.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Akshar" + }, + { + "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSXYFy9CY94XsnPc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Akshar" + }, + { + "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSUQFy9CY94XsnPc.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Akshar" + }, + { + "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSagCy9CY94XsnPc.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Akshar" + }, + { + "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSZECy9CY94XsnPc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Akshar" + } + ] + }, + { + "name": "Aladin", + "fontFamily": "Aladin, cursive", + "slug": "wp-font-lib-aladin", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aladin/v19/ZgNSjPJFPrvJV5f16Sf4pGT2Ng.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aladin" + } + ] + }, + { + "name": "Alata", + "fontFamily": "Alata, sans-serif", + "slug": "wp-font-lib-alata", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alata/v9/PbytFmztEwbIofe6xKcRQEOX.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alata" + } + ] + }, + { + "name": "Alatsi", + "fontFamily": "Alatsi, sans-serif", + "slug": "wp-font-lib-alatsi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alatsi/v11/TK3iWkUJAxQ2nLNGHjUHte5fKg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alatsi" + } + ] + }, + { + "name": "Albert Sans", + "fontFamily": "Albert Sans, sans-serif", + "slug": "wp-font-lib-albert-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5L_rI32TxAj1g.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5P_rI32TxAj1g.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSH9ZP_rI32TxAj1g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5P_rI32TxAj1g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHmZP_rI32TxAj1g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHdZT_rI32TxAj1g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHTJT_rI32TxAj1g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5T_rI32TxAj1g.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHApT_rI32TxAj1g.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX7ofybRUz1r5t.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX74fybRUz1r5t.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9BJ74fybRUz1r5t.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX74fybRUz1r5t.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Al74fybRUz1r5t.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9C-6IfybRUz1r5t.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + } + ] + }, + { + "name": "Aldrich", + "fontFamily": "Aldrich, sans-serif", + "slug": "wp-font-lib-aldrich", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aldrich/v17/MCoTzAn-1s3IGyJMZaAS3pP5H_E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aldrich" + } + ] + }, + { + "name": "Alef", + "fontFamily": "Alef, sans-serif", + "slug": "wp-font-lib-alef", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alef/v21/FeVfS0NQpLYgrjJbC5FxxbU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alef" + }, + { + "src": "http://fonts.gstatic.com/s/alef/v21/FeVQS0NQpLYglo50L5la2bxii28.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alef" + } + ] + }, + { + "name": "Alegreya", + "fontFamily": "Alegreya, serif", + "slug": "wp-font-lib-alegreya", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hUI_KCisSGVrw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGxBUI_KCisSGVrw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGKBII_KCisSGVrw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGERII_KCisSGVrw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGdhII_KCisSGVrw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGXxII_KCisSGVrw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbgv6qmkySFr9V9.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbSv6qmkySFr9V9.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlY-uKqmkySFr9V9.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlYHuKqmkySFr9V9.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZguKqmkySFr9V9.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZJuKqmkySFr9V9.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Alegreya" + } + ] + }, + { + "name": "Alegreya SC", + "fontFamily": "Alegreya SC, serif", + "slug": "wp-font-lib-alegreya-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiOGmRtCJ62-O0HhNEa-a6o05E5abe_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiMGmRtCJ62-O0HhNEa-Z6q2ZUbbKe_DGs.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZZc-rUxQqu2FXKD.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4WEySK-UEGKDBz4.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYU_LUxQqu2FXKD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4Sk0SK-UEGKDBz4.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYI_7UxQqu2FXKD.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4TU3SK-UEGKDBz4.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYs_rUxQqu2FXKD.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4RE2SK-UEGKDBz4.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Alegreya SC" + } + ] + }, + { + "name": "Alegreya Sans", + "fontFamily": "Alegreya Sans, sans-serif", + "slug": "wp-font-lib-alegreya-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUt9_-1phKLFgshYDvh6Vwt5TltuGdShm5bsg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUv9_-1phKLFgshYDvh6Vwt7V9V3G1WpGtLsgu7.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5fFPmE18imdCqxI.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VFE92jkVHuxKiBA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUz9_-1phKLFgshYDvh6Vwt3V1nvEVXlm4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUt9_-1phKLFgshYDvh6Vwt7V9tuGdShm5bsg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5alOmE18imdCqxI.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VTE52jkVHuxKiBA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5eFImE18imdCqxI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VBEh2jkVHuxKiBA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5f1LmE18imdCqxI.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VGEt2jkVHuxKiBA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5dlKmE18imdCqxI.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VPEp2jkVHuxKiBA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans" + } + ] + }, + { + "name": "Alegreya Sans SC", + "fontFamily": "Alegreya Sans SC, sans-serif", + "slug": "wp-font-lib-alegreya-sans-sc", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Dipl8g5FPYtmMg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGl4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdlgRBH452Mvds.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DuJH0iRrMYJ_K-4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdXiZhNaB6O-51OA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nk5v9ixALYs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Bkxl8g5FPYtmMg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DrpG0iRrMYJ_K-4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdBidhNaB6O-51OA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DvJA0iRrMYJ_K-4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdTiFhNaB6O-51OA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1Du5D0iRrMYJ_K-4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdUiJhNaB6O-51OA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DspC0iRrMYJ_K-4.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxddiNhNaB6O-51OA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans SC" + } + ] + }, + { + "name": "Aleo", + "fontFamily": "Aleo, serif", + "slug": "wp-font-lib-aleo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aleo/v11/c4mg1nF8G8_syKbr9DVDno985KM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Aleo" + }, + { + "src": "http://fonts.gstatic.com/s/aleo/v11/c4mi1nF8G8_swAjxeDdJmq159KOnWA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Aleo" + }, + { + "src": "http://fonts.gstatic.com/s/aleo/v11/c4mv1nF8G8_s8ArD0D1ogoY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aleo" + }, + { + "src": "http://fonts.gstatic.com/s/aleo/v11/c4mh1nF8G8_swAjJ1B9tkoZl_Q.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Aleo" + }, + { + "src": "http://fonts.gstatic.com/s/aleo/v11/c4mg1nF8G8_syLbs9DVDno985KM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Aleo" + }, + { + "src": "http://fonts.gstatic.com/s/aleo/v11/c4mi1nF8G8_swAjxaDBJmq159KOnWA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Aleo" + } + ] + }, + { + "name": "Alex Brush", + "fontFamily": "Alex Brush, cursive", + "slug": "wp-font-lib-alex-brush", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alexbrush/v22/SZc83FzrJKuqFbwMKk6EtUL57DtOmCc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alex Brush" + } + ] + }, + { + "name": "Alexandria", + "fontFamily": "Alexandria, sans-serif", + "slug": "wp-font-lib-alexandria", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7T6bHHJ8BRq0b.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9p7TqbHHJ8BRq0b.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9qlTqbHHJ8BRq0b.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9rJTqbHHJ8BRq0b.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9ocSabHHJ8BRq0b.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9p7SabHHJ8BRq0b.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9pSSabHHJ8BRq0b.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Alexandria" + } + ] + }, + { + "name": "Alfa Slab One", + "fontFamily": "Alfa Slab One, system-ui", + "slug": "wp-font-lib-alfa-slab-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alfaslabone/v17/6NUQ8FmMKwSEKjnm5-4v-4Jh6dVretWvYmE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alfa Slab One" + } + ] + }, + { + "name": "Alice", + "fontFamily": "Alice, serif", + "slug": "wp-font-lib-alice", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alice/v20/OpNCnoEEmtHa6FcJpA_chzJ0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alice" + } + ] + }, + { + "name": "Alike", + "fontFamily": "Alike, serif", + "slug": "wp-font-lib-alike", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alike/v20/HI_EiYEYI6BIoEjBSZXAQ4-d.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alike" + } + ] + }, + { + "name": "Alike Angular", + "fontFamily": "Alike Angular, serif", + "slug": "wp-font-lib-alike-angular", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alikeangular/v20/3qTrojWunjGQtEBlIcwMbSoI3kM6bB7FKjE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alike Angular" + } + ] + }, + { + "name": "Alkalami", + "fontFamily": "Alkalami, serif", + "slug": "wp-font-lib-alkalami", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alkalami/v7/zOL_4pfDmqRL95WXi5eLw8BMuvhH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alkalami" + } + ] + }, + { + "name": "Alkatra", + "fontFamily": "Alkatra, system-ui", + "slug": "wp-font-lib-alkatra", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48Medzngmu7cPrNDVemxE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alkatra" + }, + { + "src": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48MedzngUu7cPrNDVemxE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Alkatra" + }, + { + "src": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48Medznj4vLcPrNDVemxE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Alkatra" + }, + { + "src": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48MedznjBvLcPrNDVemxE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alkatra" + } + ] + }, + { + "name": "Allan", + "fontFamily": "Allan, system-ui", + "slug": "wp-font-lib-allan", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/allan/v21/ea8XadU7WuTxEtb2P9SF8nZE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Allan" + }, + { + "src": "http://fonts.gstatic.com/s/allan/v21/ea8aadU7WuTxEu5KEPCN2WpNgEKU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Allan" + } + ] + }, + { + "name": "Allerta", + "fontFamily": "Allerta, sans-serif", + "slug": "wp-font-lib-allerta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/allerta/v18/TwMO-IAHRlkbx940UnEdSQqO5uY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Allerta" + } + ] + }, + { + "name": "Allerta Stencil", + "fontFamily": "Allerta Stencil, sans-serif", + "slug": "wp-font-lib-allerta-stencil", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/allertastencil/v18/HTx0L209KT-LmIE9N7OR6eiycOeF-zz313DuvQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Allerta Stencil" + } + ] + }, + { + "name": "Allison", + "fontFamily": "Allison, cursive", + "slug": "wp-font-lib-allison", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/allison/v9/X7nl4b88AP2nkbvZOCaQ4MTgAgk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Allison" + } + ] + }, + { + "name": "Allura", + "fontFamily": "Allura, cursive", + "slug": "wp-font-lib-allura", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/allura/v19/9oRPNYsQpS4zjuAPjAIXPtrrGA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Allura" + } + ] + }, + { + "name": "Almarai", + "fontFamily": "Almarai, sans-serif", + "slug": "wp-font-lib-almarai", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_anhnicoq72sXg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Almarai" + }, + { + "src": "http://fonts.gstatic.com/s/almarai/v12/tsstApxBaigK_hnnc1qPonC3vqc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Almarai" + }, + { + "src": "http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS-aghnicoq72sXg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Almarai" + }, + { + "src": "http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_qjhnicoq72sXg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Almarai" + } + ] + }, + { + "name": "Almendra", + "fontFamily": "Almendra, serif", + "slug": "wp-font-lib-almendra", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/almendra/v23/H4ckBXKAlMnTn0CskyY6wr-wg763.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Almendra" + }, + { + "src": "http://fonts.gstatic.com/s/almendra/v23/H4ciBXKAlMnTn0CskxY4yLuShq63czE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Almendra" + }, + { + "src": "http://fonts.gstatic.com/s/almendra/v23/H4cjBXKAlMnTn0Cskx6G7Zu4qKK-aihq.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Almendra" + }, + { + "src": "http://fonts.gstatic.com/s/almendra/v23/H4chBXKAlMnTn0CskxY48Ae9oqacbzhqDtg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Almendra" + } + ] + }, + { + "name": "Almendra Display", + "fontFamily": "Almendra Display, system-ui", + "slug": "wp-font-lib-almendra-display", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/almendradisplay/v26/0FlPVOGWl1Sb4O3tETtADHRRlZhzXS_eTyer338.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Almendra Display" + } + ] + }, + { + "name": "Almendra SC", + "fontFamily": "Almendra SC, serif", + "slug": "wp-font-lib-almendra-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/almendrasc/v25/Iure6Yx284eebowr7hbyTZZJprVA4XQ0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Almendra SC" + } + ] + }, + { + "name": "Alumni Sans", + "fontFamily": "Alumni Sans, sans-serif", + "slug": "wp-font-lib-alumni-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO5QqFsJ3C8qng.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uO9QqFsJ3C8qng.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Zu9QqFsJ3C8qng.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO9QqFsJ3C8qng.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Cu9QqFsJ3C8qng.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd95uhQqFsJ3C8qng.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd93-hQqFsJ3C8qng.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uOhQqFsJ3C8qng.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9kehQqFsJ3C8qng.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky46lEN_io6npfB.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw461EN_io6npfB.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky461EN_io6npfB.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KyK61EN_io6npfB.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + } + ] + }, + { + "name": "Alumni Sans Collegiate One", + "fontFamily": "Alumni Sans Collegiate One, sans-serif", + "slug": "wp-font-lib-alumni-sans-collegiate-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alumnisanscollegiateone/v2/MQpB-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhjdayDiPw2ta.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alumni Sans Collegiate One" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisanscollegiateone/v2/MQpD-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhgdYwjytxntaDFU.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alumni Sans Collegiate One" + } + ] + }, + { + "name": "Alumni Sans Inline One", + "fontFamily": "Alumni Sans Inline One, system-ui", + "slug": "wp-font-lib-alumni-sans-inline-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alumnisansinlineone/v2/RrQBbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpD3AZcr7xbYw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alumni Sans Inline One" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisansinlineone/v2/RrQDbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpP3ITdpz0fYxcrQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alumni Sans Inline One" + } + ] + }, + { + "name": "Alumni Sans Pinstripe", + "fontFamily": "Alumni Sans Pinstripe, sans-serif", + "slug": "wp-font-lib-alumni-sans-pinstripe", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alumnisanspinstripe/v2/ZgNNjOFFPq_AUJD1umyS30W-Xub8zD1ObhezYrVIpcDA5w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alumni Sans Pinstripe" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisanspinstripe/v2/ZgNDjOFFPq_AUJD1umyS30W-Xub8zD1ObheDYL9Mh8XQ5_cY.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alumni Sans Pinstripe" + } + ] + }, + { + "name": "Amarante", + "fontFamily": "Amarante, system-ui", + "slug": "wp-font-lib-amarante", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amarante/v23/xMQXuF1KTa6EvGx9bq-3C3rAmD-b.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amarante" + } + ] + }, + { + "name": "Amaranth", + "fontFamily": "Amaranth, sans-serif", + "slug": "wp-font-lib-amaranth", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amaranth/v18/KtkuALODe433f0j1zPnCF9GqwnzW.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amaranth" + }, + { + "src": "http://fonts.gstatic.com/s/amaranth/v18/KtkoALODe433f0j1zMnAHdWIx2zWD4I.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Amaranth" + }, + { + "src": "http://fonts.gstatic.com/s/amaranth/v18/KtkpALODe433f0j1zMF-OPWi6WDfFpuc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Amaranth" + }, + { + "src": "http://fonts.gstatic.com/s/amaranth/v18/KtkrALODe433f0j1zMnAJWmn42T9E4ucRY8.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Amaranth" + } + ] + }, + { + "name": "Amatic SC", + "fontFamily": "Amatic SC, cursive", + "slug": "wp-font-lib-amatic-sc", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amaticsc/v24/TUZyzwprpvBS1izr_vO0De6ecZQf1A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amatic SC" + }, + { + "src": "http://fonts.gstatic.com/s/amaticsc/v24/TUZ3zwprpvBS1izr_vOMscG6eb8D3WTy-A.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Amatic SC" + } + ] + }, + { + "name": "Amethysta", + "fontFamily": "Amethysta, serif", + "slug": "wp-font-lib-amethysta", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amethysta/v16/rP2Fp2K15kgb_F3ibfWIGDWCBl0O8Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amethysta" + } + ] + }, + { + "name": "Amiko", + "fontFamily": "Amiko, sans-serif", + "slug": "wp-font-lib-amiko", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amiko/v12/WwkQxPq1DFK04tqlc17MMZgJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amiko" + }, + { + "src": "http://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uJ9XXrEGoQAUco5.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Amiko" + }, + { + "src": "http://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uIZXHrEGoQAUco5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Amiko" + } + ] + }, + { + "name": "Amiri", + "fontFamily": "Amiri, serif", + "slug": "wp-font-lib-amiri", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amiri/v27/J7aRnpd8CGxBHqUpvrIw74NL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amiri" + }, + { + "src": "http://fonts.gstatic.com/s/amiri/v27/J7afnpd8CGxBHpUrtLYS6pNLAjk.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Amiri" + }, + { + "src": "http://fonts.gstatic.com/s/amiri/v27/J7acnpd8CGxBHp2VkZY4xJ9CGyAa.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Amiri" + }, + { + "src": "http://fonts.gstatic.com/s/amiri/v27/J7aanpd8CGxBHpUrjAo9zptgHjAavCA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Amiri" + } + ] + }, + { + "name": "Amiri Quran", + "fontFamily": "Amiri Quran, serif", + "slug": "wp-font-lib-amiri-quran", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amiriquran/v7/_Xmo-Hk0rD6DbUL4_vH8Zq5t7Cycsu-2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amiri Quran" + } + ] + }, + { + "name": "Amita", + "fontFamily": "Amita, cursive", + "slug": "wp-font-lib-amita", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amita/v16/HhyaU5si9Om7PQlvAfSKEZZL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amita" + }, + { + "src": "http://fonts.gstatic.com/s/amita/v16/HhyXU5si9Om7PTHTLtCCOopCTKkI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Amita" + } + ] + }, + { + "name": "Anaheim", + "fontFamily": "Anaheim, sans-serif", + "slug": "wp-font-lib-anaheim", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anaheim/v14/8vII7w042Wp87g4G0UTUEE5eK_w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anaheim" + } + ] + }, + { + "name": "Andada Pro", + "fontFamily": "Andada Pro, serif", + "slug": "wp-font-lib-andada-pro", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DPJBY8cFLzvIt2S.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DP7BY8cFLzvIt2S.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMXAo8cFLzvIt2S.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMuAo8cFLzvIt2S.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DNJAo8cFLzvIt2S.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRmdfHrjNJ82Stjw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRlVfHrjNJ82Stjw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRrlYHrjNJ82Stjw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRoBYHrjNJ82Stjw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRudYHrjNJ82Stjw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Andada Pro" + } + ] + }, + { + "name": "Andika", + "fontFamily": "Andika, sans-serif", + "slug": "wp-font-lib-andika", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/andika/v25/mem_Ya6iyW-LwqgAbbwRWrwGVA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Andika" + }, + { + "src": "http://fonts.gstatic.com/s/andika/v25/mem9Ya6iyW-Lwqgwb7YVeLkWVNBt.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Andika" + }, + { + "src": "http://fonts.gstatic.com/s/andika/v25/mem8Ya6iyW-Lwqg40ZM1UpcaXcl0Aw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Andika" + }, + { + "src": "http://fonts.gstatic.com/s/andika/v25/mem6Ya6iyW-Lwqgwb46pV50ef8xkA76a.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Andika" + } + ] + }, + { + "name": "Anek Bangla", + "fontFamily": "Anek Bangla, sans-serif", + "slug": "wp-font-lib-anek-bangla", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9YIocg56yyvt0.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9ZIocg56yyvt0.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfjFZIocg56yyvt0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9ZIocg56yyvt0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofl1ZIocg56yyvt0.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfrFeIocg56yyvt0.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfoheIocg56yyvt0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9eIocg56yyvt0.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + } + ] + }, + { + "name": "Anek Devanagari", + "fontFamily": "Anek Devanagari, sans-serif", + "slug": "wp-font-lib-anek-devanagari", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtk-9nFk0LjZ7E.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtku9nFk0LjZ7E.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLCzku9nFk0LjZ7E.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtku9nFk0LjZ7E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDfku9nFk0LjZ7E.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAzle9nFk0LjZ7E.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAKle9nFk0LjZ7E.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtle9nFk0LjZ7E.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + } + ] + }, + { + "name": "Anek Gujarati", + "fontFamily": "Anek Gujarati, sans-serif", + "slug": "wp-font-lib-anek-gujarati", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5G7w0KgB7Lm7g.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5C7w0KgB7Lm7g.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0SZC7w0KgB7Lm7g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5C7w0KgB7Lm7g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0JZC7w0KgB7Lm7g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0yZe7w0KgB7Lm7g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-08Je7w0KgB7Lm7g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5e7w0KgB7Lm7g.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + } + ] + }, + { + "name": "Anek Gurmukhi", + "fontFamily": "Anek Gurmukhi, sans-serif", + "slug": "wp-font-lib-anek-gurmukhi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5ppXK41H6DjbA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95tpXK41H6DjbA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbKZtpXK41H6DjbA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5tpXK41H6DjbA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbRZtpXK41H6DjbA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbqZxpXK41H6DjbA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbkJxpXK41H6DjbA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95xpXK41H6DjbA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + } + ] + }, + { + "name": "Anek Kannada", + "fontFamily": "Anek Kannada, sans-serif", + "slug": "wp-font-lib-anek-kannada", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEAukVReA1oef.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDEQukVReA1oef.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dEdEQukVReA1oef.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEQukVReA1oef.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFxEQukVReA1oef.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGdFgukVReA1oef.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGkFgukVReA1oef.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDFgukVReA1oef.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + } + ] + }, + { + "name": "Anek Latin", + "fontFamily": "Anek Latin, sans-serif", + "slug": "wp-font-lib-anek-latin", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7EZKdClWL3kgw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + }, + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7AZKdClWL3kgw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + }, + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuGbAZKdClWL3kgw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + }, + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7AZKdClWL3kgw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + }, + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PudbAZKdClWL3kgw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + }, + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PumbcZKdClWL3kgw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + }, + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuoLcZKdClWL3kgw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + }, + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7cZKdClWL3kgw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + } + ] + }, + { + "name": "Anek Malayalam", + "fontFamily": "Anek Malayalam, sans-serif", + "slug": "wp-font-lib-anek-malayalam", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu_HMr5PDO71Qs.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu-HMr5PDO71Qs.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUcW-HMr5PDO71Qs.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu-HMr5PDO71Qs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUam-HMr5PDO71Qs.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUUW5HMr5PDO71Qs.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUXy5HMr5PDO71Qs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu5HMr5PDO71Qs.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + } + ] + }, + { + "name": "Anek Odia", + "fontFamily": "Anek Odia, sans-serif", + "slug": "wp-font-lib-anek-odia", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZf63mXZAtm_es.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + }, + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZfq3mXZAtm_es.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + }, + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnnHfq3mXZAtm_es.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + }, + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZfq3mXZAtm_es.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + }, + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmrfq3mXZAtm_es.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + }, + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnlHea3mXZAtm_es.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + }, + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnl-ea3mXZAtm_es.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + }, + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZea3mXZAtm_es.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + } + ] + }, + { + "name": "Anek Tamil", + "fontFamily": "Anek Tamil, sans-serif", + "slug": "wp-font-lib-anek-tamil", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQiZ6q4v4oegjOQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwid6q4v4oegjOQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNHCd6q4v4oegjOQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQid6q4v4oegjOQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNcCd6q4v4oegjOQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNnCB6q4v4oegjOQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNpSB6q4v4oegjOQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwiB6q4v4oegjOQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + } + ] + }, + { + "name": "Anek Telugu", + "fontFamily": "Anek Telugu, sans-serif", + "slug": "wp-font-lib-anek-telugu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y-_oE2G2ep10_8.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136--oE2G2ep10_8.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i133G-oE2G2ep10_8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y--oE2G2ep10_8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13x2-oE2G2ep10_8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13_G5oE2G2ep10_8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i138i5oE2G2ep10_8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136-5oE2G2ep10_8.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + } + ] + }, + { + "name": "Angkor", + "fontFamily": "Angkor, system-ui", + "slug": "wp-font-lib-angkor", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/angkor/v28/H4cmBXyAlsPdnlb-8iw-4Lqggw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Angkor" + } + ] + }, + { + "name": "Annie Use Your Telescope", + "fontFamily": "Annie Use Your Telescope, cursive", + "slug": "wp-font-lib-annie-use-your-telescope", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/annieuseyourtelescope/v18/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjlDfB3UUVZA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Annie Use Your Telescope" + } + ] + }, + { + "name": "Anonymous Pro", + "fontFamily": "Anonymous Pro, monospace", + "slug": "wp-font-lib-anonymous-pro", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2Bp2a15UIB7Un-bOeISG3pLlw89CH98Ko.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anonymous Pro" + }, + { + "src": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2fp2a15UIB7Un-bOeISG3pHl428AP44Kqr2Q.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Anonymous Pro" + }, + { + "src": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2cp2a15UIB7Un-bOeISG3pFuAT0CnW7KOywKo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anonymous Pro" + }, + { + "src": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2ap2a15UIB7Un-bOeISG3pHl4OTCzc6IG30KqB9Q.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Anonymous Pro" + } + ] + }, + { + "name": "Antic", + "fontFamily": "Antic, sans-serif", + "slug": "wp-font-lib-antic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/antic/v19/TuGfUVB8XY5DRaZLodgzydtk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Antic" + } + ] + }, + { + "name": "Antic Didone", + "fontFamily": "Antic Didone, serif", + "slug": "wp-font-lib-antic-didone", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anticdidone/v16/RWmPoKKX6u8sp8fIWdnDKqDiqYsGBGBzCw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Antic Didone" + } + ] + }, + { + "name": "Antic Slab", + "fontFamily": "Antic Slab, serif", + "slug": "wp-font-lib-antic-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anticslab/v16/bWt97fPFfRzkCa9Jlp6IWcJWXW5p5Qo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Antic Slab" + } + ] + }, + { + "name": "Anton", + "fontFamily": "Anton, sans-serif", + "slug": "wp-font-lib-anton", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anton/v23/1Ptgg87LROyAm0K08i4gS7lu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anton" + } + ] + }, + { + "name": "Antonio", + "fontFamily": "Antonio, sans-serif", + "slug": "wp-font-lib-antonio", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8BtIY2DwSXlM.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Antonio" + }, + { + "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVzx8RtIY2DwSXlM.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Antonio" + }, + { + "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVwv8RtIY2DwSXlM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Antonio" + }, + { + "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8RtIY2DwSXlM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Antonio" + }, + { + "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxD8RtIY2DwSXlM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Antonio" + }, + { + "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyv9htIY2DwSXlM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Antonio" + }, + { + "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyW9htIY2DwSXlM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Antonio" + } + ] + }, + { + "name": "Anuphan", + "fontFamily": "Anuphan, sans-serif", + "slug": "wp-font-lib-anuphan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkY9A4kGmW927Gu.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anuphan" + }, + { + "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCmY9Q4kGmW927Gu.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anuphan" + }, + { + "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZClG9Q4kGmW927Gu.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anuphan" + }, + { + "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkY9Q4kGmW927Gu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anuphan" + }, + { + "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkq9Q4kGmW927Gu.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anuphan" + }, + { + "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCnG8g4kGmW927Gu.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anuphan" + }, + { + "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCn_8g4kGmW927Gu.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anuphan" + } + ] + }, + { + "name": "Anybody", + "fontFamily": "Anybody, system-ui", + "slug": "wp-font-lib-anybody", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12HPrsXD_nBPpQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2DPrsXD_nBPpQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JiWDPrsXD_nBPpQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12DPrsXD_nBPpQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J5WDPrsXD_nBPpQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JCWfPrsXD_nBPpQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JMGfPrsXD_nBPpQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2fPrsXD_nBPpQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JfmfPrsXD_nBPpQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7M_H3HVfpcHY.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn7c_H3HVfpcHY.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyN57c_H3HVfpcHY.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7c_H3HVfpcHY.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMV7c_H3HVfpcHY.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyP56s_H3HVfpcHY.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyPA6s_H3HVfpcHY.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn6s_H3HVfpcHY.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOO6s_H3HVfpcHY.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Anybody" + } + ] + }, + { + "name": "Aoboshi One", + "fontFamily": "Aoboshi One, serif", + "slug": "wp-font-lib-aoboshi-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aoboshione/v10/Gg8xN5kXaAXtHQrFxwl10ysLBmZX_UEg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aoboshi One" + } + ] + }, + { + "name": "Arapey", + "fontFamily": "Arapey, serif", + "slug": "wp-font-lib-arapey", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arapey/v16/-W__XJn-UDDA2RC6Z9AcZkIzeg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arapey" + }, + { + "src": "http://fonts.gstatic.com/s/arapey/v16/-W_9XJn-UDDA2RCKZdoYREcjeo0k.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Arapey" + } + ] + }, + { + "name": "Arbutus", + "fontFamily": "Arbutus, system-ui", + "slug": "wp-font-lib-arbutus", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arbutus/v24/NaPYcZ7dG_5J3poob9JtryO8fMU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arbutus" + } + ] + }, + { + "name": "Arbutus Slab", + "fontFamily": "Arbutus Slab, serif", + "slug": "wp-font-lib-arbutus-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arbutusslab/v16/oY1Z8e7OuLXkJGbXtr5ba7ZVa68dJlaFAQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arbutus Slab" + } + ] + }, + { + "name": "Architects Daughter", + "fontFamily": "Architects Daughter, cursive", + "slug": "wp-font-lib-architects-daughter", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/architectsdaughter/v18/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfY5q4szgE-Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Architects Daughter" + } + ] + }, + { + "name": "Archivo", + "fontFamily": "Archivo, sans-serif", + "slug": "wp-font-lib-archivo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDJp8B1oJ0vyVQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDNp8B1oJ0vyVQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTajNp8B1oJ0vyVQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDNp8B1oJ0vyVQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTBjNp8B1oJ0vyVQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT6jRp8B1oJ0vyVQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT0zRp8B1oJ0vyVQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDRp8B1oJ0vyVQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTnTRp8B1oJ0vyVQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBshdsBU7iVdxQ.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABsxdsBU7iVdxQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HDfsxdsBU7iVdxQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBsxdsBU7iVdxQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCzsxdsBU7iVdxQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBftBdsBU7iVdxQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBmtBdsBU7iVdxQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABtBdsBU7iVdxQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HAotBdsBU7iVdxQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Archivo" + } + ] + }, + { + "name": "Archivo Black", + "fontFamily": "Archivo Black, sans-serif", + "slug": "wp-font-lib-archivo-black", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/archivoblack/v17/HTxqL289NzCGg4MzN6KJ7eW6OYuP_x7yx3A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Archivo Black" + } + ] + }, + { + "name": "Archivo Narrow", + "fontFamily": "Archivo Narrow, sans-serif", + "slug": "wp-font-lib-archivo-narrow", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvLFGKpHOtFCQ76Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Archivo Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvHlGKpHOtFCQ76Q.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Archivo Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhv8laKpHOtFCQ76Q.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Archivo Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvy1aKpHOtFCQ76Q.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Archivo Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJi53mpNiEr6T6Y.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Archivo Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJQ53mpNiEr6T6Y.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Archivo Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BK84HmpNiEr6T6Y.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Archivo Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BKF4HmpNiEr6T6Y.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Archivo Narrow" + } + ] + }, + { + "name": "Are You Serious", + "fontFamily": "Are You Serious, cursive", + "slug": "wp-font-lib-are-you-serious", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/areyouserious/v10/ll8kK2GVSSr-PtjQ5nONVcNn4306hT9nCGRayg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Are You Serious" + } + ] + }, + { + "name": "Aref Ruqaa", + "fontFamily": "Aref Ruqaa, serif", + "slug": "wp-font-lib-aref-ruqaa", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arefruqaa/v25/WwkbxPW1E165rajQKDulEIAiVNo5xNY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aref Ruqaa" + }, + { + "src": "http://fonts.gstatic.com/s/arefruqaa/v25/WwkYxPW1E165rajQKDulKDwNcNIS2N_7Bdk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Aref Ruqaa" + } + ] + }, + { + "name": "Aref Ruqaa Ink", + "fontFamily": "Aref Ruqaa Ink, serif", + "slug": "wp-font-lib-aref-ruqaa-ink", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arefruqaaink/v8/1q2fY5WOGUFlt84GTOkP6Kdx72ThVIGpgnxL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aref Ruqaa Ink" + }, + { + "src": "http://fonts.gstatic.com/s/arefruqaaink/v8/1q2cY5WOGUFlt84GTOkP6Kdx71xde6WhqWBCyxWn.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Aref Ruqaa Ink" + } + ] + }, + { + "name": "Arima", + "fontFamily": "Arima, system-ui", + "slug": "wp-font-lib-arima", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTE-pQGOyYw2fw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Arima" + }, + { + "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX14TA-pQGOyYw2fw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Arima" + }, + { + "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1PzA-pQGOyYw2fw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Arima" + }, + { + "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTA-pQGOyYw2fw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arima" + }, + { + "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1UzA-pQGOyYw2fw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Arima" + }, + { + "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1vzc-pQGOyYw2fw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Arima" + }, + { + "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1hjc-pQGOyYw2fw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Arima" + } + ] + }, + { + "name": "Arimo", + "fontFamily": "Arimo, sans-serif", + "slug": "wp-font-lib-arimo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk37cxsBxDAVQI4aA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arimo" + }, + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk338xsBxDAVQI4aA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Arimo" + }, + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk3M8tsBxDAVQI4aA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Arimo" + }, + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk3CstsBxDAVQI4aA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Arimo" + }, + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-ERBrEdwcoaKww.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Arimo" + }, + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-2RBrEdwcoaKww.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Arimo" + }, + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9aQxrEdwcoaKww.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Arimo" + }, + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9jQxrEdwcoaKww.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Arimo" + } + ] + }, + { + "name": "Arizonia", + "fontFamily": "Arizonia, cursive", + "slug": "wp-font-lib-arizonia", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arizonia/v19/neIIzCemt4A5qa7mv6WGHK06UY30.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arizonia" + } + ] + }, + { + "name": "Armata", + "fontFamily": "Armata, sans-serif", + "slug": "wp-font-lib-armata", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/armata/v20/gokvH63_HV5jQ-E9lD53Q2u_mQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Armata" + } + ] + }, + { + "name": "Arsenal", + "fontFamily": "Arsenal, sans-serif", + "slug": "wp-font-lib-arsenal", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arsenal/v12/wXKrE3kQtZQ4pF3D11_WAewrhXY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arsenal" + }, + { + "src": "http://fonts.gstatic.com/s/arsenal/v12/wXKpE3kQtZQ4pF3D513cBc4ulXYrtA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Arsenal" + }, + { + "src": "http://fonts.gstatic.com/s/arsenal/v12/wXKuE3kQtZQ4pF3D7-P5JeQAmX8yrdk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Arsenal" + }, + { + "src": "http://fonts.gstatic.com/s/arsenal/v12/wXKsE3kQtZQ4pF3D513kueEKnV03vdnKjw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Arsenal" + } + ] + }, + { + "name": "Artifika", + "fontFamily": "Artifika, serif", + "slug": "wp-font-lib-artifika", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/artifika/v21/VEMyRoxzronptCuxu6Wt5jDtreOL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Artifika" + } + ] + }, + { + "name": "Arvo", + "fontFamily": "Arvo, serif", + "slug": "wp-font-lib-arvo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arvo/v20/tDbD2oWUg0MKmSAa7Lzr7vs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arvo" + }, + { + "src": "http://fonts.gstatic.com/s/arvo/v20/tDbN2oWUg0MKqSIQ6J7u_vvijQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Arvo" + }, + { + "src": "http://fonts.gstatic.com/s/arvo/v20/tDbM2oWUg0MKoZw1yLTA8vL7lAE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Arvo" + }, + { + "src": "http://fonts.gstatic.com/s/arvo/v20/tDbO2oWUg0MKqSIoVLHK9tD-hAHkGg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Arvo" + } + ] + }, + { + "name": "Arya", + "fontFamily": "Arya, sans-serif", + "slug": "wp-font-lib-arya", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arya/v19/ga6CawNG-HJd9Ub1-beqdFE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arya" + }, + { + "src": "http://fonts.gstatic.com/s/arya/v19/ga6NawNG-HJdzfra3b-BaFg3dRE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Arya" + } + ] + }, + { + "name": "Asap", + "fontFamily": "Asap, sans-serif", + "slug": "wp-font-lib-asap", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqQsLmOXoA7Glw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYEqUsLmOXoA7Glw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYzKUsLmOXoA7Glw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqUsLmOXoA7Glw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYoKUsLmOXoA7Glw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYTKIsLmOXoA7Glw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYdaIsLmOXoA7Glw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYEqIsLmOXoA7Glw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYO6IsLmOXoA7Glw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWubEbGmTggvWl0Qn.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZEbWmTggvWl0Qn.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuaabWmTggvWl0Qn.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmTggvWl0Qn.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWub2bWmTggvWl0Qn.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuYaammTggvWl0Qn.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammTggvWl0Qn.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZEammTggvWl0Qn.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZtammTggvWl0Qn.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Asap" + } + ] + }, + { + "name": "Asap Condensed", + "fontFamily": "Asap Condensed, sans-serif", + "slug": "wp-font-lib-asap-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9DSWlEgGqgp-pO.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUIFFim6CovpOkXA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8nSmlEgGqgp-pO.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUOVGim6CovpOkXA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxidypY1o9NHyXh3WvSbGSggdNeLYk1Mq3ap.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxifypY1o9NHyXh3WvSbGSggdOeJaElurmapvvM.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9_S2lEgGqgp-pO.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUL1Him6CovpOkXA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9TTGlEgGqgp-pO.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUJFAim6CovpOkXA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO83TWlEgGqgp-pO.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUPVBim6CovpOkXA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8rTmlEgGqgp-pO.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUOlCim6CovpOkXA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8PT2lEgGqgp-pO.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUM1Dim6CovpOkXA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + } + ] + }, + { + "name": "Asar", + "fontFamily": "Asar, serif", + "slug": "wp-font-lib-asar", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/asar/v22/sZlLdRyI6TBIXkYQDLlTW6E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Asar" + } + ] + }, + { + "name": "Asset", + "fontFamily": "Asset, system-ui", + "slug": "wp-font-lib-asset", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/asset/v24/SLXGc1na-mM4cWImRJqExst1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Asset" + } + ] + }, + { + "name": "Assistant", + "fontFamily": "Assistant, sans-serif", + "slug": "wp-font-lib-assistant", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZnEGGf3qGuvM4.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Assistant" + }, + { + "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtrhnEGGf3qGuvM4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Assistant" + }, + { + "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Assistant" + }, + { + "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Assistant" + }, + { + "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Assistant" + }, + { + "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Assistant" + }, + { + "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZgEGGf3qGuvM4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Assistant" + } + ] + }, + { + "name": "Astloch", + "fontFamily": "Astloch, system-ui", + "slug": "wp-font-lib-astloch", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/astloch/v26/TuGRUVJ8QI5GSeUjq9wRzMtkH1Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Astloch" + }, + { + "src": "http://fonts.gstatic.com/s/astloch/v26/TuGUUVJ8QI5GSeUjk2A-6MNPA10xLMQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Astloch" + } + ] + }, + { + "name": "Asul", + "fontFamily": "Asul, sans-serif", + "slug": "wp-font-lib-asul", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/asul/v19/VuJ-dNjKxYr46fMFXK78JIg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Asul" + }, + { + "src": "http://fonts.gstatic.com/s/asul/v19/VuJxdNjKxYr40U8qeKbXOIFneRo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Asul" + } + ] + }, + { + "name": "Athiti", + "fontFamily": "Athiti, sans-serif", + "slug": "wp-font-lib-athiti", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAxDNyAv2-C99ycg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Athiti" + }, + { + "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAoDByAv2-C99ycg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Athiti" + }, + { + "src": "http://fonts.gstatic.com/s/athiti/v12/pe0vMISdLIZIv1w4DBhWCtaiAg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Athiti" + }, + { + "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA-DFyAv2-C99ycg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Athiti" + }, + { + "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA1DZyAv2-C99ycg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Athiti" + }, + { + "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAsDdyAv2-C99ycg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Athiti" + } + ] + }, + { + "name": "Atkinson Hyperlegible", + "fontFamily": "Atkinson Hyperlegible, sans-serif", + "slug": "wp-font-lib-atkinson-hyperlegible", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt23C1KxNDXMspQ1lPyU89-1h6ONRlW45GE5ZgpewSSbQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Atkinson Hyperlegible" + }, + { + "src": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt43C1KxNDXMspQ1lPyU89-1h6ONRlW45G055ItWQGCbUWn.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Atkinson Hyperlegible" + }, + { + "src": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt73C1KxNDXMspQ1lPyU89-1h6ONRlW45G8WbcNcy-OZFy-FA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Atkinson Hyperlegible" + }, + { + "src": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt93C1KxNDXMspQ1lPyU89-1h6ONRlW45G056qRdiWKRlmuFH24.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Atkinson Hyperlegible" + } + ] + }, + { + "name": "Atma", + "fontFamily": "Atma, system-ui", + "slug": "wp-font-lib-atma", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo8JzKjc9PvedRkM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Atma" + }, + { + "src": "http://fonts.gstatic.com/s/atma/v16/uK_84rqWc-Eom25bDj8WIv4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Atma" + }, + { + "src": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo5pyKjc9PvedRkM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Atma" + }, + { + "src": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo7Z1Kjc9PvedRkM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Atma" + }, + { + "src": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo9J0Kjc9PvedRkM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Atma" + } + ] + }, + { + "name": "Atomic Age", + "fontFamily": "Atomic Age, system-ui", + "slug": "wp-font-lib-atomic-age", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/atomicage/v27/f0Xz0eug6sdmRFkYZZGL58Ht9a8GYeA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Atomic Age" + } + ] + }, + { + "name": "Aubrey", + "fontFamily": "Aubrey, system-ui", + "slug": "wp-font-lib-aubrey", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aubrey/v28/q5uGsou7NPBw-p7vugNsCxVEgA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aubrey" + } + ] + }, + { + "name": "Audiowide", + "fontFamily": "Audiowide, system-ui", + "slug": "wp-font-lib-audiowide", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/audiowide/v16/l7gdbjpo0cum0ckerWCtkQXPExpQBw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Audiowide" + } + ] + }, + { + "name": "Autour One", + "fontFamily": "Autour One, system-ui", + "slug": "wp-font-lib-autour-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/autourone/v24/UqyVK80cP25l3fJgbdfbk5lWVscxdKE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Autour One" + } + ] + }, + { + "name": "Average", + "fontFamily": "Average, serif", + "slug": "wp-font-lib-average", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/average/v18/fC1hPYBHe23MxA7rIeJwVWytTyk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Average" + } + ] + }, + { + "name": "Average Sans", + "fontFamily": "Average Sans, sans-serif", + "slug": "wp-font-lib-average-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/averagesans/v16/1Ptpg8fLXP2dlAXR-HlJJNJPBdqazVoK4A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Average Sans" + } + ] + }, + { + "name": "Averia Gruesa Libre", + "fontFamily": "Averia Gruesa Libre, system-ui", + "slug": "wp-font-lib-averia-gruesa-libre", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/averiagruesalibre/v22/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmmJw0SLRA8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Averia Gruesa Libre" + } + ] + }, + { + "name": "Averia Libre", + "fontFamily": "Averia Libre, system-ui", + "slug": "wp-font-lib-averia-libre", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEarovtb07t-pQgTw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Averia Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFhbUTp2JEwT4Sk.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Averia Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0aKIcMGZEnV6xygz7eNjEiAqPJZ2Xx8w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Averia Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0EKIcMGZEnV6xygz7eNjESAKnNRWDh8405.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Averia Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEavoztb07t-pQgTw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Averia Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFxakTp2JEwT4Sk.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Averia Libre" + } + ] + }, + { + "name": "Averia Sans Libre", + "fontFamily": "Averia Sans Libre, system-ui", + "slug": "wp-font-lib-averia-sans-libre", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd3lMKcQJZP1LmD9.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Averia Sans Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKisSL5fXK3D9qtg.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Averia Sans Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVJGIMYDo_8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Averia Sans Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6RaxZG_G5OvCf_rt7FH3B6BHLMEdVLEoc6C5_8N3k.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Averia Sans Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd31N6cQJZP1LmD9.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Averia Sans Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKjsVL5fXK3D9qtg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Averia Sans Libre" + } + ] + }, + { + "name": "Averia Serif Libre", + "fontFamily": "Averia Serif Libre, system-ui", + "slug": "wp-font-lib-averia-serif-libre", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGCSmqwacqdrKvbQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Averia Serif Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzMmw60uVLe_bXHq.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Averia Serif Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-pQGOyYw2fw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Averia Serif Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIUzD2ms4wxr6GvjeD0X88SHPyX2xYOpwuK64kmf6u2.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Averia Serif Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGGS6qwacqdrKvbQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Averia Serif Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzM2xK0uVLe_bXHq.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Averia Serif Libre" + } + ] + }, + { + "name": "Azeret Mono", + "fontFamily": "Azeret Mono, monospace", + "slug": "wp-font-lib-azeret-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPRh0raa-5s3AA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPVh0raa-5s3AA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfwvVh0raa-5s3AA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh0raa-5s3AA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfrvVh0raa-5s3AA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfQvJh0raa-5s3AA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfe_Jh0raa-5s3AA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPJh0raa-5s3AA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfNfJh0raa-5s3AA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkLye2Z4nAN7J.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJkbye2Z4nAN7J.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLbXkbye2Z4nAN7J.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkbye2Z4nAN7J.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLa7kbye2Z4nAN7J.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZXlrye2Z4nAN7J.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZulrye2Z4nAN7J.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJlrye2Z4nAN7J.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYglrye2Z4nAN7J.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + } + ] + }, + { + "name": "B612", + "fontFamily": "B612, sans-serif", + "slug": "wp-font-lib-b612", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/b612/v12/3JnySDDxiSz32jm4GDigUXw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "B612" + }, + { + "src": "http://fonts.gstatic.com/s/b612/v12/3Jn8SDDxiSz36juyHBqlQXwdVw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "B612" + }, + { + "src": "http://fonts.gstatic.com/s/b612/v12/3Jn9SDDxiSz34oWXPDCLTXUETuE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "B612" + }, + { + "src": "http://fonts.gstatic.com/s/b612/v12/3Jn_SDDxiSz36juKoDWBSVcBXuFb0Q.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "B612" + } + ] + }, + { + "name": "B612 Mono", + "fontFamily": "B612 Mono, monospace", + "slug": "wp-font-lib-b612-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/b612mono/v12/kmK_Zq85QVWbN1eW6lJl1wTcquRTtg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "B612 Mono" + }, + { + "src": "http://fonts.gstatic.com/s/b612mono/v12/kmK5Zq85QVWbN1eW6lJV1Q7YiOFDtqtf.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "B612 Mono" + }, + { + "src": "http://fonts.gstatic.com/s/b612mono/v12/kmK6Zq85QVWbN1eW6lJdayv4os9Pv7JGSg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "B612 Mono" + }, + { + "src": "http://fonts.gstatic.com/s/b612mono/v12/kmKkZq85QVWbN1eW6lJV1TZkp8VLnbdWSg4x.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "B612 Mono" + } + ] + }, + { + "name": "BIZ UDGothic", + "fontFamily": "BIZ UDGothic, sans-serif", + "slug": "wp-font-lib-biz-udgothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bizudgothic/v9/daafSTouBF7RUjnbt8p3LuKttQN98z_MbQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BIZ UDGothic" + }, + { + "src": "http://fonts.gstatic.com/s/bizudgothic/v9/daaASTouBF7RUjnbt8p3LuKVCSxZ-xTQZMhbaA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "BIZ UDGothic" + } + ] + }, + { + "name": "BIZ UDMincho", + "fontFamily": "BIZ UDMincho, serif", + "slug": "wp-font-lib-biz-udmincho", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bizudmincho/v9/EJRRQgI6eOxFjBdKs38yhtW1dwT7rcpY8Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BIZ UDMincho" + }, + { + "src": "http://fonts.gstatic.com/s/bizudmincho/v9/EJROQgI6eOxFjBdKs38yhtWNyyvfpeFE-IyCrw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "BIZ UDMincho" + } + ] + }, + { + "name": "BIZ UDPGothic", + "fontFamily": "BIZ UDPGothic, sans-serif", + "slug": "wp-font-lib-biz-udpgothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bizudpgothic/v9/hES36X5pHAIBjmS84VL0Bue83nUMQWkMUAk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BIZ UDPGothic" + }, + { + "src": "http://fonts.gstatic.com/s/bizudpgothic/v9/hESq6X5pHAIBjmS84VL0Bue85skjZWEnTABCSQo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "BIZ UDPGothic" + } + ] + }, + { + "name": "BIZ UDPMincho", + "fontFamily": "BIZ UDPMincho, serif", + "slug": "wp-font-lib-biz-udpmincho", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bizudpmincho/v9/ypvfbXOBrmYppy7oWWTg1_58nhhYtUb0gZk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BIZ UDPMincho" + }, + { + "src": "http://fonts.gstatic.com/s/bizudpmincho/v9/ypvCbXOBrmYppy7oWWTg1_58pqR3kU7fnZAy57k.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "BIZ UDPMincho" + } + ] + }, + { + "name": "Babylonica", + "fontFamily": "Babylonica, cursive", + "slug": "wp-font-lib-babylonica", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/babylonica/v2/5aUw9_i2qxWVCAE2aHjTqDJ0-VVMoEw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Babylonica" + } + ] + }, + { + "name": "Bad Script", + "fontFamily": "Bad Script, cursive", + "slug": "wp-font-lib-bad-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/badscript/v16/6NUT8F6PJgbFWQn47_x7lOwuzd1AZtw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bad Script" + } + ] + }, + { + "name": "Bahiana", + "fontFamily": "Bahiana, system-ui", + "slug": "wp-font-lib-bahiana", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bahiana/v19/uU9PCBUV4YenPWJU7xPb3vyHmlI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bahiana" + } + ] + }, + { + "name": "Bahianita", + "fontFamily": "Bahianita, system-ui", + "slug": "wp-font-lib-bahianita", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bahianita/v18/yYLr0hTb3vuqqsBUgxWtxTvV2NJPcA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bahianita" + } + ] + }, + { + "name": "Bai Jamjuree", + "fontFamily": "Bai Jamjuree, sans-serif", + "slug": "wp-font-lib-bai-jamjuree", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0kePuk5A1-yiSgA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oGkpox2S2CgOva.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa09eDuk5A1-yiSgA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pikZox2S2CgOva.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDI1apSCOBt_aeQQ7ftydoaMWcjKm7sp8g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIrapSCOBt_aeQQ7ftydoa8W8LOub458jGL.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0reHuk5A1-yiSgA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_o6kJox2S2CgOva.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0gebuk5A1-yiSgA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oWl5ox2S2CgOva.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa05efuk5A1-yiSgA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pylpox2S2CgOva.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Bai Jamjuree" + } + ] + }, + { + "name": "Bakbak One", + "fontFamily": "Bakbak One, system-ui", + "slug": "wp-font-lib-bakbak-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bakbakone/v6/zOL54pXAl6RI-p_ardnuycRuv-hHkOs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bakbak One" + } + ] + }, + { + "name": "Ballet", + "fontFamily": "Ballet, cursive", + "slug": "wp-font-lib-ballet", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ballet/v25/QGYyz_MYZA-HM4NjuGOVnUEXme1I4Xi3C4G-EiAou6Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ballet" + } + ] + }, + { + "name": "Baloo 2", + "fontFamily": "Baloo 2, system-ui", + "slug": "wp-font-lib-baloo-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdgazapv9Fat7WcN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdgozapv9Fat7WcN.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdjEyqpv9Fat7WcN.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdj9yqpv9Fat7WcN.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdiayqpv9Fat7WcN.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo 2" + } + ] + }, + { + "name": "Baloo Bhai 2", + "fontFamily": "Baloo Bhai 2, system-ui", + "slug": "wp-font-lib-baloo-bhai-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNighMXeCo-jsZzo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Bhai 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNhohMXeCo-jsZzo.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Bhai 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNvYmMXeCo-jsZzo.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Bhai 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNs8mMXeCo-jsZzo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Bhai 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNqgmMXeCo-jsZzo.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Bhai 2" + } + ] + }, + { + "name": "Baloo Bhaijaan 2", + "fontFamily": "Baloo Bhaijaan 2, system-ui", + "slug": "wp-font-lib-baloo-bhaijaan-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyRSqP4L4ppfcyC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaijaan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyjSqP4L4ppfcyC.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaijaan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TxPTaP4L4ppfcyC.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaijaan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8Tx2TaP4L4ppfcyC.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaijaan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TwRTaP4L4ppfcyC.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaijaan 2" + } + ] + }, + { + "name": "Baloo Bhaina 2", + "fontFamily": "Baloo Bhaina 2, system-ui", + "slug": "wp-font-lib-baloo-bhaina-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEssPvRfRLYWmZSA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaina 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEgMPvRfRLYWmZSA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaina 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEbMTvRfRLYWmZSA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaina 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEVcTvRfRLYWmZSA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaina 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEMsTvRfRLYWmZSA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaina 2" + } + ] + }, + { + "name": "Baloo Chettan 2", + "fontFamily": "Baloo Chettan 2, system-ui", + "slug": "wp-font-lib-baloo-chettan-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CeKTO1oeH9xI2gc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Chettan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CdCTO1oeH9xI2gc.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Chettan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CTyUO1oeH9xI2gc.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Chettan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CQWUO1oeH9xI2gc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Chettan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CWKUO1oeH9xI2gc.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Chettan 2" + } + ] + }, + { + "name": "Baloo Da 2", + "fontFamily": "Baloo Da 2, system-ui", + "slug": "wp-font-lib-baloo-da-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjALsTNe55aRa7UE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Da 2" + }, + { + "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjA5sTNe55aRa7UE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Da 2" + }, + { + "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDVtjNe55aRa7UE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Da 2" + }, + { + "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDstjNe55aRa7UE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Da 2" + }, + { + "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjCLtjNe55aRa7UE.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Da 2" + } + ] + }, + { + "name": "Baloo Paaji 2", + "fontFamily": "Baloo Paaji 2, system-ui", + "slug": "wp-font-lib-baloo-paaji-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9AX74fybRUz1r5t.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Paaji 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Al74fybRUz1r5t.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Paaji 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Paaji 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Paaji 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Paaji 2" + } + ] + }, + { + "name": "Baloo Tamma 2", + "fontFamily": "Baloo Tamma 2, system-ui", + "slug": "wp-font-lib-baloo-tamma-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMscPp-0IF71SGC5.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Tamma 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMsuPp-0IF71SGC5.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Tamma 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMvCOZ-0IF71SGC5.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Tamma 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMv7OZ-0IF71SGC5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Tamma 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMucOZ-0IF71SGC5.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Tamma 2" + } + ] + }, + { + "name": "Baloo Tammudu 2", + "fontFamily": "Baloo Tammudu 2, system-ui", + "slug": "wp-font-lib-baloo-tammudu-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jf8e4c6PZSlGmAA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Tammudu 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jc0e4c6PZSlGmAA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Tammudu 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JSEZ4c6PZSlGmAA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Tammudu 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JRgZ4c6PZSlGmAA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Tammudu 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JX8Z4c6PZSlGmAA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Tammudu 2" + } + ] + }, + { + "name": "Baloo Thambi 2", + "fontFamily": "Baloo Thambi 2, system-ui", + "slug": "wp-font-lib-baloo-thambi-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKzcIzaQRG_n4osQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Thambi 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbK_8IzaQRG_n4osQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Thambi 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKE8UzaQRG_n4osQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Thambi 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKKsUzaQRG_n4osQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Thambi 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKTcUzaQRG_n4osQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Thambi 2" + } + ] + }, + { + "name": "Balsamiq Sans", + "fontFamily": "Balsamiq Sans, system-ui", + "slug": "wp-font-lib-balsamiq-sans", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/balsamiqsans/v12/P5sEzZiAbNrN8SB3lQQX7Pnc8dkdIYdNHzs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Balsamiq Sans" + }, + { + "src": "http://fonts.gstatic.com/s/balsamiqsans/v12/P5sazZiAbNrN8SB3lQQX7PncwdsXJaVIDzvcXA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Balsamiq Sans" + }, + { + "src": "http://fonts.gstatic.com/s/balsamiqsans/v12/P5sZzZiAbNrN8SB3lQQX7PncyWUyBY9mAzLFRQI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Balsamiq Sans" + }, + { + "src": "http://fonts.gstatic.com/s/balsamiqsans/v12/P5sfzZiAbNrN8SB3lQQX7PncwdsvmYpsBxDAVQI4aA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Balsamiq Sans" + } + ] + }, + { + "name": "Balthazar", + "fontFamily": "Balthazar, serif", + "slug": "wp-font-lib-balthazar", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/balthazar/v17/d6lKkaajS8Gm4CVQjFEvyRTo39l8hw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Balthazar" + } + ] + }, + { + "name": "Bangers", + "fontFamily": "Bangers, system-ui", + "slug": "wp-font-lib-bangers", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bangers/v21/FeVQS0BTqb0h60ACL5la2bxii28.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bangers" + } + ] + }, + { + "name": "Barlow", + "fontFamily": "Barlow, sans-serif", + "slug": "wp-font-lib-barlow", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E3b8s8yn4hnCci.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHtv4kjgoGqM7E_CfNYwHoDmTcibrA.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3w-oc4FAtlT47dw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfP04Voptzsrd6m9.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3p-kc4FAtlT47dw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOQ4loptzsrd6m9.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7EPC8E46HsxnA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E_Ccs8yn4hnCci.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3_-gc4FAtlT47dw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPI41optzsrd6m9.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E30-8c4FAtlT47dw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPk5Foptzsrd6m9.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3t-4c4FAtlT47dw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOA5Voptzsrd6m9.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3q-0c4FAtlT47dw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOc5loptzsrd6m9.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3j-wc4FAtlT47dw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfO451optzsrd6m9.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Barlow" + } + ] + }, + { + "name": "Barlow Condensed", + "fontFamily": "Barlow Condensed, sans-serif", + "slug": "wp-font-lib-barlow-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B43LT31vytKgbaw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxzL3I-JCGChYJ8VI-L6OO_au7B6xTru1H2lq0La6JN.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B497y_3HcuKECcrs.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrF3DWvIMHYrtUxg.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rx_3HcuKECcrs.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrc3PWvIMHYrtUxg.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xbZ23n3pKg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B6xTT31vytKgbaw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lw_3HcuKECcrs.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrK3LWvIMHYrtUxg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873_3HcuKECcrs.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrB3XWvIMHYrtUxg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2_3HcuKECcrs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrY3TWvIMHYrtUxg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47b1_3HcuKECcrs.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrf3fWvIMHYrtUxg.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B45L0_3HcuKECcrs.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrW3bWvIMHYrtUxg.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + } + ] + }, + { + "name": "Barlow Semi Condensed", + "fontFamily": "Barlow Semi Condensed, sans-serif", + "slug": "wp-font-lib-barlow-semi-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfG4qvKk8ogoSP.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpjgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbLLIEsKh5SPZWs.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRft6uPAGEki52WfA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJnAWsgqZiGfHK5.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf06iPAGEki52WfA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIDAmsgqZiGfHK5.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRnf4CrCEo4gg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfYqvKk8ogoSP.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfi6mPAGEki52WfA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJbA2sgqZiGfHK5.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfp66PAGEki52WfA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJ3BGsgqZiGfHK5.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfw6-PAGEki52WfA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbITBWsgqZiGfHK5.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf36yPAGEki52WfA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIPBmsgqZiGfHK5.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf-62PAGEki52WfA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIrB2sgqZiGfHK5.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + } + ] + }, + { + "name": "Barriecito", + "fontFamily": "Barriecito, system-ui", + "slug": "wp-font-lib-barriecito", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/barriecito/v17/WWXXlj-CbBOSLY2QTuY_KdUiYwTO0MU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Barriecito" + } + ] + }, + { + "name": "Barrio", + "fontFamily": "Barrio, system-ui", + "slug": "wp-font-lib-barrio", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/barrio/v19/wEO8EBXBk8hBIDiEdQYhWdsX1Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Barrio" + } + ] + }, + { + "name": "Basic", + "fontFamily": "Basic, sans-serif", + "slug": "wp-font-lib-basic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/basic/v17/xfu_0WLxV2_XKQN34lDVyR7D.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Basic" + } + ] + }, + { + "name": "Baskervville", + "fontFamily": "Baskervville, serif", + "slug": "wp-font-lib-baskervville", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baskervville/v14/YA9Ur0yU4l_XOrogbkun3kQgt5OohvbJ9A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baskervville" + }, + { + "src": "http://fonts.gstatic.com/s/baskervville/v14/YA9Kr0yU4l_XOrogbkun3kQQtZmspPPZ9Mlt.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Baskervville" + } + ] + }, + { + "name": "Battambang", + "fontFamily": "Battambang, system-ui", + "slug": "wp-font-lib-battambang", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/battambang/v24/uk-kEGe7raEw-HjkzZabNhGp5w50_o9T7Q.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Battambang" + }, + { + "src": "http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNtmLxyRa8oZK9I0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Battambang" + }, + { + "src": "http://fonts.gstatic.com/s/battambang/v24/uk-mEGe7raEw-HjkzZabDnWj4yxx7o8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Battambang" + }, + { + "src": "http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNsmMxyRa8oZK9I0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Battambang" + }, + { + "src": "http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNvGOxyRa8oZK9I0.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Battambang" + } + ] + }, + { + "name": "Baumans", + "fontFamily": "Baumans, system-ui", + "slug": "wp-font-lib-baumans", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baumans/v17/-W_-XJj9QyTd3QfpR_oyaksqY5Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baumans" + } + ] + }, + { + "name": "Bayon", + "fontFamily": "Bayon, sans-serif", + "slug": "wp-font-lib-bayon", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bayon/v29/9XUrlJNmn0LPFl-pOhYEd2NJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bayon" + } + ] + }, + { + "name": "Be Vietnam Pro", + "fontFamily": "Be Vietnam Pro, sans-serif", + "slug": "wp-font-lib-be-vietnam-pro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVNSTAyLFyeg_IDWvOJmVES_HRUBX8YYbAiah8.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVLSTAyLFyeg_IDWvOJmVES_HwyPRsSZZIneh-waA.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HT4JF8yT7wrcwap.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPbczRbgJdhapcUU.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HScJ18yT7wrcwap.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPdMwRbgJdhapcUU.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVPSTAyLFyeg_IDWvOJmVES_EwwD3s6ZKAi.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVNSTAyLFyeg_IDWvOJmVES_HwyBX8YYbAiah8.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl8yT7wrcwap.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPYsxRbgJdhapcUU.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HToIV8yT7wrcwap.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPac2RbgJdhapcUU.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HSMIF8yT7wrcwap.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPcM3RbgJdhapcUU.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HSQI18yT7wrcwap.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPd80RbgJdhapcUU.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HS0Il8yT7wrcwap.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPfs1RbgJdhapcUU.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + } + ] + }, + { + "name": "Beau Rivage", + "fontFamily": "Beau Rivage, cursive", + "slug": "wp-font-lib-beau-rivage", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/beaurivage/v2/UcCi3FIgIG2bH4mMNWJUlmg3NZp8K2sL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Beau Rivage" + } + ] + }, + { + "name": "Bebas Neue", + "fontFamily": "Bebas Neue, sans-serif", + "slug": "wp-font-lib-bebas-neue", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bebasneue/v10/JTUSjIg69CK48gW7PXooxW5rygbi49c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bebas Neue" + } + ] + }, + { + "name": "Belgrano", + "fontFamily": "Belgrano, serif", + "slug": "wp-font-lib-belgrano", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/belgrano/v18/55xvey5tM9rwKWrJZcMFirl08KDJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Belgrano" + } + ] + }, + { + "name": "Bellefair", + "fontFamily": "Bellefair, serif", + "slug": "wp-font-lib-bellefair", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bellefair/v14/kJExBuYY6AAuhiXUxG19__A2pOdvDA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bellefair" + } + ] + }, + { + "name": "Belleza", + "fontFamily": "Belleza, sans-serif", + "slug": "wp-font-lib-belleza", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/belleza/v17/0nkoC9_pNeMfhX4BtcbyawzruP8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Belleza" + } + ] + }, + { + "name": "Bellota", + "fontFamily": "Bellota, system-ui", + "slug": "wp-font-lib-bellota", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAID55kGMViblPtXs.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Bellota" + }, + { + "src": "http://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjHGEfjZtKpXulTQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Bellota" + }, + { + "src": "http://fonts.gstatic.com/s/bellota/v16/MwQ2bhXl3_qEpiwAGJJRtGs-lbA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bellota" + }, + { + "src": "http://fonts.gstatic.com/s/bellota/v16/MwQ0bhXl3_qEpiwAKJBbsEk7hbBWrA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Bellota" + }, + { + "src": "http://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAIC5-kGMViblPtXs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Bellota" + }, + { + "src": "http://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjDGYfjZtKpXulTQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Bellota" + } + ] + }, + { + "name": "Bellota Text", + "fontFamily": "Bellota Text, system-ui", + "slug": "wp-font-lib-bellota-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlMVP2VnlWS4f3-UE9hHXM5VfsqfQXwQy6yxg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Bellota Text" + }, + { + "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlOVP2VnlWS4f3-UE9hHXMx--Gmfw_0YSuixmYK.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Bellota Text" + }, + { + "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlTVP2VnlWS4f3-UE9hHXMB-dMOdS7sSg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bellota Text" + }, + { + "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlNVP2VnlWS4f3-UE9hHXMx-9kKVyv8Sjer.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Bellota Text" + }, + { + "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlMVP2VnlWS4f3-UE9hHXM5RfwqfQXwQy6yxg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Bellota Text" + }, + { + "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlOVP2VnlWS4f3-UE9hHXMx--G2eA_0YSuixmYK.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Bellota Text" + } + ] + }, + { + "name": "BenchNine", + "fontFamily": "BenchNine, sans-serif", + "slug": "wp-font-lib-benchnine", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT--tRhWa8q0v8ag.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "BenchNine" + }, + { + "src": "http://fonts.gstatic.com/s/benchnine/v16/ahcbv8612zF4jxrwMosrV8N1jU2gog.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BenchNine" + }, + { + "src": "http://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT6-xRhWa8q0v8ag.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "BenchNine" + } + ] + }, + { + "name": "Benne", + "fontFamily": "Benne, serif", + "slug": "wp-font-lib-benne", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/benne/v22/L0xzDFAhn18E6Vjxlt6qTDBN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Benne" + } + ] + }, + { + "name": "Bentham", + "fontFamily": "Bentham, serif", + "slug": "wp-font-lib-bentham", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bentham/v18/VdGeAZQPEpYfmHglKWw7CJaK_y4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bentham" + } + ] + }, + { + "name": "Berkshire Swash", + "fontFamily": "Berkshire Swash, cursive", + "slug": "wp-font-lib-berkshire-swash", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/berkshireswash/v16/ptRRTi-cavZOGqCvnNJDl5m5XmNPrcQybX4pQA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Berkshire Swash" + } + ] + }, + { + "name": "Besley", + "fontFamily": "Besley, serif", + "slug": "wp-font-lib-besley", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fbbBSdRoFPOl8-E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fYTBSdRoFPOl8-E.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fWjGSdRoFPOl8-E.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fVHGSdRoFPOl8-E.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fTbGSdRoFPOl8-E.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fR_GSdRoFPOl8-E.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CoZdiENGg4-E04A.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Ck5diENGg4-E04A.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Cf5BiENGg4-E04A.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CRpBiENGg4-E04A.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CIZBiENGg4-E04A.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CCJBiENGg4-E04A.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Besley" + } + ] + }, + { + "name": "Beth Ellen", + "fontFamily": "Beth Ellen, cursive", + "slug": "wp-font-lib-beth-ellen", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bethellen/v17/WwkbxPW2BE-3rb_JNT-qEIAiVNo5xNY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Beth Ellen" + } + ] + }, + { + "name": "Bevan", + "fontFamily": "Bevan, system-ui", + "slug": "wp-font-lib-bevan", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bevan/v21/4iCj6KZ0a9NXjF8aUir7tlSJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bevan" + }, + { + "src": "http://fonts.gstatic.com/s/bevan/v21/4iCt6KZ0a9NXjG8YWC7Zs0SJD4U.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Bevan" + } + ] + }, + { + "name": "BhuTuka Expanded One", + "fontFamily": "BhuTuka Expanded One, system-ui", + "slug": "wp-font-lib-bhutuka-expanded-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bhutukaexpandedone/v3/SLXXc0jZ4WUJcClHTtv0t7IaDRsBsWRiJCyX8pg_RVH1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BhuTuka Expanded One" + } + ] + }, + { + "name": "Big Shoulders Display", + "fontFamily": "Big Shoulders Display, system-ui", + "slug": "wp-font-lib-big-shoulders-display", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY86JF46SRP4yZQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ87JF46SRP4yZQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YddE7JF46SRP4yZQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY87JF46SRP4yZQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0Ydb07JF46SRP4yZQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdVE8JF46SRP4yZQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdWg8JF46SRP4yZQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ88JF46SRP4yZQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdSY8JF46SRP4yZQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + } + ] + }, + { + "name": "Big Shoulders Inline Display", + "fontFamily": "Big Shoulders Inline Display, system-ui", + "slug": "wp-font-lib-big-shoulders-inline-display", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBEnR5yPc2Huux.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBE3R5yPc2Huux.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0mfE3R5yPc2Huux.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBE3R5yPc2Huux.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nzE3R5yPc2Huux.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kfFHR5yPc2Huux.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kmFHR5yPc2Huux.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBFHR5yPc2Huux.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0loFHR5yPc2Huux.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + } + ] + }, + { + "name": "Big Shoulders Inline Text", + "fontFamily": "Big Shoulders Inline Text, system-ui", + "slug": "wp-font-lib-big-shoulders-inline-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0yqGN7Y6Jsc8c.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0y6GN7Y6Jsc8c.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgbqy6GN7Y6Jsc8c.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0y6GN7Y6Jsc8c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgaGy6GN7Y6Jsc8c.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZqzKGN7Y6Jsc8c.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZTzKGN7Y6Jsc8c.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0zKGN7Y6Jsc8c.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgYdzKGN7Y6Jsc8c.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + } + ] + }, + { + "name": "Big Shoulders Stencil Display", + "fontFamily": "Big Shoulders Stencil Display, system-ui", + "slug": "wp-font-lib-big-shoulders-stencil-display", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0nPKHznJucP9w.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0jPKHznJucP9w.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_ZUjPKHznJucP9w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0jPKHznJucP9w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_CUjPKHznJucP9w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_5U_PKHznJucP9w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_3E_PKHznJucP9w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0_PKHznJucP9w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_kk_PKHznJucP9w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + } + ] + }, + { + "name": "Big Shoulders Stencil Text", + "fontFamily": "Big Shoulders Stencil Text, system-ui", + "slug": "wp-font-lib-big-shoulders-stencil-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04XIGS_Py_AWbQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4TIGS_Py_AWbQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRjYTIGS_Py_AWbQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04TIGS_Py_AWbQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR4YTIGS_Py_AWbQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRDYPIGS_Py_AWbQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRNIPIGS_Py_AWbQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4PIGS_Py_AWbQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGReoPIGS_Py_AWbQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + } + ] + }, + { + "name": "Big Shoulders Text", + "fontFamily": "Big Shoulders Text, system-ui", + "slug": "wp-font-lib-big-shoulders-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-r3TIPNl6P2pc.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-q3TIPNl6P2pc.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3dGq3TIPNl6P2pc.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-q3TIPNl6P2pc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3b2q3TIPNl6P2pc.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3VGt3TIPNl6P2pc.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Wit3TIPNl6P2pc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-t3TIPNl6P2pc.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Sat3TIPNl6P2pc.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + } + ] + }, + { + "name": "Bigelow Rules", + "fontFamily": "Bigelow Rules, system-ui", + "slug": "wp-font-lib-bigelow-rules", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigelowrules/v24/RrQWboly8iR_I3KWSzeRuN0zT4cCH8WAJVk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bigelow Rules" + } + ] + }, + { + "name": "Bigshot One", + "fontFamily": "Bigshot One, system-ui", + "slug": "wp-font-lib-bigshot-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigshotone/v25/u-470qukhRkkO6BD_7cM_gxuUQJBXv_-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bigshot One" + } + ] + }, + { + "name": "Bilbo", + "fontFamily": "Bilbo, cursive", + "slug": "wp-font-lib-bilbo", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bilbo/v20/o-0EIpgpwWwZ210hpIRz4wxE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bilbo" + } + ] + }, + { + "name": "Bilbo Swash Caps", + "fontFamily": "Bilbo Swash Caps, cursive", + "slug": "wp-font-lib-bilbo-swash-caps", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bilboswashcaps/v22/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAPopiRfKp8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bilbo Swash Caps" + } + ] + }, + { + "name": "BioRhyme", + "fontFamily": "BioRhyme, serif", + "slug": "wp-font-lib-biorhyme", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ESOjnGAq8Sk1PoH.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "BioRhyme" + }, + { + "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ETqjXGAq8Sk1PoH.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "BioRhyme" + }, + { + "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cXwaULHBpDMsHYW_HxGpVWIgNit.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BioRhyme" + }, + { + "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ET6inGAq8Sk1PoH.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "BioRhyme" + }, + { + "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ETmiXGAq8Sk1PoH.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "BioRhyme" + } + ] + }, + { + "name": "BioRhyme Expanded", + "fontFamily": "BioRhyme Expanded, serif", + "slug": "wp-font-lib-biorhyme-expanded", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9LjbffxxcblSHSdTXrb_z.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "BioRhyme Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9Ljbffxw4bVSHSdTXrb_z.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "BioRhyme Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dQIE1zZzytGswgU577CDY9LjbffySURXCPYsje.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BioRhyme Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9LjbffxwoalSHSdTXrb_z.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "BioRhyme Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9Ljbffxw0aVSHSdTXrb_z.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "BioRhyme Expanded" + } + ] + }, + { + "name": "Birthstone", + "fontFamily": "Birthstone, cursive", + "slug": "wp-font-lib-birthstone", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/birthstone/v11/8AtsGs2xO4yLRhy87sv_HLn5jRfZHzM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Birthstone" + } + ] + }, + { + "name": "Birthstone Bounce", + "fontFamily": "Birthstone Bounce, cursive", + "slug": "wp-font-lib-birthstone-bounce", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/birthstonebounce/v9/ga6XaxZF43lIvTWrktHOTBJZGH7dEeVJGIMYDo_8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Birthstone Bounce" + }, + { + "src": "http://fonts.gstatic.com/s/birthstonebounce/v9/ga6SaxZF43lIvTWrktHOTBJZGH7dEd29MacQJZP1LmD9.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Birthstone Bounce" + } + ] + }, + { + "name": "Biryani", + "fontFamily": "Biryani, sans-serif", + "slug": "wp-font-lib-biryani", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddYQyGTBSU-J-RxQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Biryani" + }, + { + "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddeAxGTBSU-J-RxQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Biryani" + }, + { + "src": "http://fonts.gstatic.com/s/biryani/v13/hv-WlzNxIFoO84YdTUwZPTh5T-s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Biryani" + }, + { + "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddZQ3GTBSU-J-RxQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Biryani" + }, + { + "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddfA2GTBSU-J-RxQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Biryani" + }, + { + "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddew1GTBSU-J-RxQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Biryani" + }, + { + "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddcg0GTBSU-J-RxQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Biryani" + } + ] + }, + { + "name": "Bitter", + "fontFamily": "Bitter, serif", + "slug": "wp-font-lib-bitter", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbeCL_EXFh2reU.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbfCL_EXFh2reU.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8ajfCL_EXFh2reU.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbfCL_EXFh2reU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8cTfCL_EXFh2reU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8SjYCL_EXFh2reU.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8RHYCL_EXFh2reU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbYCL_EXFh2reU.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8V_YCL_EXFh2reU.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4P3OWHpzveWxBw.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPzOWHpzveWxBw.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cvvzOWHpzveWxBw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4PzOWHpzveWxBw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c0vzOWHpzveWxBw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cPvvOWHpzveWxBw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cB_vOWHpzveWxBw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPvOWHpzveWxBw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cSfvOWHpzveWxBw.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Bitter" + } + ] + }, + { + "name": "Black And White Picture", + "fontFamily": "Black And White Picture, sans-serif", + "slug": "wp-font-lib-black-and-white-picture", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/blackandwhitepicture/v22/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5HbcMi-yWY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Black And White Picture" + } + ] + }, + { + "name": "Black Han Sans", + "fontFamily": "Black Han Sans, sans-serif", + "slug": "wp-font-lib-black-han-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/blackhansans/v15/ea8Aad44WunzF9a-dL6toA8r8nqVIXSkH-Hc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Black Han Sans" + } + ] + }, + { + "name": "Black Ops One", + "fontFamily": "Black Ops One, system-ui", + "slug": "wp-font-lib-black-ops-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/blackopsone/v20/qWcsB6-ypo7xBdr6Xshe96H3WDzRtjkho4M.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Black Ops One" + } + ] + }, + { + "name": "Blaka", + "fontFamily": "Blaka, system-ui", + "slug": "wp-font-lib-blaka", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/blaka/v5/8vIG7w8722p_6kdr20D2FV5e.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Blaka" + } + ] + }, + { + "name": "Blaka Hollow", + "fontFamily": "Blaka Hollow, system-ui", + "slug": "wp-font-lib-blaka-hollow", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/blakahollow/v5/MCoUzAL91sjRE2FsKsxUtezYB9oFyW_-oA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Blaka Hollow" + } + ] + }, + { + "name": "Blaka Ink", + "fontFamily": "Blaka Ink, system-ui", + "slug": "wp-font-lib-blaka-ink", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/blakaink/v7/AlZy_zVVtpj22Znag2chdXf4XB0Tow.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Blaka Ink" + } + ] + }, + { + "name": "Blinker", + "fontFamily": "Blinker, sans-serif", + "slug": "wp-font-lib-blinker", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf_MaFatEE-VTaP_E2hZEsCkIt9QQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Blinker" + }, + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_OGARGEsnIJkWL4.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Blinker" + }, + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_IWDRGEsnIJkWL4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Blinker" + }, + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf9MaFatEE-VTaPxCmrYGkHgIs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Blinker" + }, + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_PGFRGEsnIJkWL4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Blinker" + }, + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_JWERGEsnIJkWL4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Blinker" + }, + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_ImHRGEsnIJkWL4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Blinker" + }, + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_K2GRGEsnIJkWL4.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Blinker" + } + ] + }, + { + "name": "Bodoni Moda", + "fontFamily": "Bodoni Moda, serif", + "slug": "wp-font-lib-bodoni-moda", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oU7awIBytVjMYwE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oXzawIBytVjMYwE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oZDdwIBytVjMYwE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oandwIBytVjMYwE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oc7dwIBytVjMYwE.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oefdwIBytVjMYwE.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZKMN4sXrJcwHqoQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZGsN4sXrJcwHqoQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZ9sR4sXrJcwHqoQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZz8R4sXrJcwHqoQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZqMR4sXrJcwHqoQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZgcR4sXrJcwHqoQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Bodoni Moda" + } + ] + }, + { + "name": "Bokor", + "fontFamily": "Bokor, system-ui", + "slug": "wp-font-lib-bokor", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bokor/v30/m8JcjfpeeaqTiR2WdInbcaxE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bokor" + } + ] + }, + { + "name": "Bona Nova", + "fontFamily": "Bona Nova, serif", + "slug": "wp-font-lib-bona-nova", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bonanova/v10/B50NF7ZCpX7fcHfvIUBJi6hqHK-CLA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bona Nova" + }, + { + "src": "http://fonts.gstatic.com/s/bonanova/v10/B50LF7ZCpX7fcHfvIUB5iaJuPqqSLJYf.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Bona Nova" + }, + { + "src": "http://fonts.gstatic.com/s/bonanova/v10/B50IF7ZCpX7fcHfvIUBxN4dOFISeJY8GgQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Bona Nova" + } + ] + }, + { + "name": "Bonbon", + "fontFamily": "Bonbon, cursive", + "slug": "wp-font-lib-bonbon", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bonbon/v26/0FlVVPeVlFec4ee_cDEAbQY5-A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bonbon" + } + ] + }, + { + "name": "Bonheur Royale", + "fontFamily": "Bonheur Royale, cursive", + "slug": "wp-font-lib-bonheur-royale", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bonheurroyale/v10/c4m51nt_GMTrtX-b9GcG4-YRmYK_c0f1N5Ij.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bonheur Royale" + } + ] + }, + { + "name": "Boogaloo", + "fontFamily": "Boogaloo, system-ui", + "slug": "wp-font-lib-boogaloo", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/boogaloo/v19/kmK-Zq45GAvOdnaW6x1F_SrQo_1K.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Boogaloo" + } + ] + }, + { + "name": "Bowlby One", + "fontFamily": "Bowlby One, system-ui", + "slug": "wp-font-lib-bowlby-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bowlbyone/v19/taiPGmVuC4y96PFeqp8smo6C_Z0wcK4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bowlby One" + } + ] + }, + { + "name": "Bowlby One SC", + "fontFamily": "Bowlby One SC, system-ui", + "slug": "wp-font-lib-bowlby-one-sc", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bowlbyonesc/v20/DtVlJxerQqQm37tzN3wMug9Pzgj8owhNjuE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bowlby One SC" + } + ] + }, + { + "name": "Braah One", + "fontFamily": "Braah One, sans-serif", + "slug": "wp-font-lib-braah-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/braahone/v2/KFOlCnWUpt6LsxxxiylvAx05IsDqlA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Braah One" + } + ] + }, + { + "name": "Brawler", + "fontFamily": "Brawler, serif", + "slug": "wp-font-lib-brawler", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/brawler/v19/xn7gYHE3xXewAscGsgC7S9XdZN8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Brawler" + }, + { + "src": "http://fonts.gstatic.com/s/brawler/v19/xn7lYHE3xXewAscGiryUb932eNaPfk8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Brawler" + } + ] + }, + { + "name": "Bree Serif", + "fontFamily": "Bree Serif, serif", + "slug": "wp-font-lib-bree-serif", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/breeserif/v17/4UaHrEJCrhhnVA3DgluAx63j5pN1MwI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bree Serif" + } + ] + }, + { + "name": "Bruno Ace", + "fontFamily": "Bruno Ace, system-ui", + "slug": "wp-font-lib-bruno-ace", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/brunoace/v1/WwkcxPa2E06x4trkOj_kMKoMWNMg3Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bruno Ace" + } + ] + }, + { + "name": "Bruno Ace SC", + "fontFamily": "Bruno Ace SC, system-ui", + "slug": "wp-font-lib-bruno-ace-sc", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/brunoacesc/v1/ptROTiycffFLBuiHjdJDl634LSFrpe8uZA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bruno Ace SC" + } + ] + }, + { + "name": "Brygada 1918", + "fontFamily": "Brygada 1918, serif", + "slug": "wp-font-lib-brygada-1918", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y2-f-V8Wu5O3gbo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Brygada 1918" + }, + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y12f-V8Wu5O3gbo.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Brygada 1918" + }, + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y7GY-V8Wu5O3gbo.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Brygada 1918" + }, + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y4iY-V8Wu5O3gbo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Brygada 1918" + }, + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcERwcv7GykboaLg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Brygada 1918" + }, + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcIxwcv7GykboaLg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Brygada 1918" + }, + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfczxscv7GykboaLg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Brygada 1918" + }, + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfc9hscv7GykboaLg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Brygada 1918" + } + ] + }, + { + "name": "Bubblegum Sans", + "fontFamily": "Bubblegum Sans, system-ui", + "slug": "wp-font-lib-bubblegum-sans", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bubblegumsans/v16/AYCSpXb_Z9EORv1M5QTjEzMEtdaHzoPPb7R4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bubblegum Sans" + } + ] + }, + { + "name": "Bubbler One", + "fontFamily": "Bubbler One, sans-serif", + "slug": "wp-font-lib-bubbler-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bubblerone/v20/f0Xy0eqj68ppQV9KBLmAouHH26MPePkt.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bubbler One" + } + ] + }, + { + "name": "Buda", + "fontFamily": "Buda, system-ui", + "slug": "wp-font-lib-buda", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/buda/v25/GFDqWAN8mnyIJSSrG7UBr7pZKA0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Buda" + } + ] + }, + { + "name": "Buenard", + "fontFamily": "Buenard, serif", + "slug": "wp-font-lib-buenard", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/buenard/v17/OD5DuM6Cyma8FnnsPzf9qGi9HL4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Buenard" + }, + { + "src": "http://fonts.gstatic.com/s/buenard/v17/OD5GuM6Cyma8FnnsB4vSjGCWALepwss.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Buenard" + } + ] + }, + { + "name": "Bungee", + "fontFamily": "Bungee, system-ui", + "slug": "wp-font-lib-bungee", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bungee/v11/N0bU2SZBIuF2PU_ECn50Kd_PmA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bungee" + } + ] + }, + { + "name": "Bungee Hairline", + "fontFamily": "Bungee Hairline, system-ui", + "slug": "wp-font-lib-bungee-hairline", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bungeehairline/v19/snfys0G548t04270a_ljTLUVrv-7YB2dQ5ZPqQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bungee Hairline" + } + ] + }, + { + "name": "Bungee Inline", + "fontFamily": "Bungee Inline, system-ui", + "slug": "wp-font-lib-bungee-inline", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bungeeinline/v12/Gg8zN58UcgnlCweMrih332VuDGJ1-FEglsc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bungee Inline" + } + ] + }, + { + "name": "Bungee Outline", + "fontFamily": "Bungee Outline, system-ui", + "slug": "wp-font-lib-bungee-outline", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bungeeoutline/v18/_6_mEDvmVP24UvU2MyiGDslL3Qg3YhJqPXxo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bungee Outline" + } + ] + }, + { + "name": "Bungee Shade", + "fontFamily": "Bungee Shade, system-ui", + "slug": "wp-font-lib-bungee-shade", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bungeeshade/v11/DtVkJxarWL0t2KdzK3oI_jks7iLSrwFUlw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bungee Shade" + } + ] + }, + { + "name": "Bungee Spice", + "fontFamily": "Bungee Spice, system-ui", + "slug": "wp-font-lib-bungee-spice", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bungeespice/v9/nwpTtK2nIhxE0q-IwgSpZBqCzyI-aMPF7Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bungee Spice" + } + ] + }, + { + "name": "Butcherman", + "fontFamily": "Butcherman, system-ui", + "slug": "wp-font-lib-butcherman", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/butcherman/v24/2EbiL-thF0loflXUBOdb1zWzq_5uT84.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Butcherman" + } + ] + }, + { + "name": "Butterfly Kids", + "fontFamily": "Butterfly Kids, cursive", + "slug": "wp-font-lib-butterfly-kids", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/butterflykids/v21/ll8lK2CWTjuqAsXDqlnIbMNs5S4arxFrAX1D.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Butterfly Kids" + } + ] + }, + { + "name": "Cabin", + "fontFamily": "Cabin, sans-serif", + "slug": "wp-font-lib-cabin", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EL7Gvxm7rE_s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cabin" + }, + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkW-EL7Gvxm7rE_s.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cabin" + }, + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkYODL7Gvxm7rE_s.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cabin" + }, + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkbqDL7Gvxm7rE_s.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cabin" + }, + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHx_KlwkzuA_u1Bg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cabin" + }, + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXH9fKlwkzuA_u1Bg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Cabin" + }, + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHGfWlwkzuA_u1Bg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Cabin" + }, + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHIPWlwkzuA_u1Bg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cabin" + } + ] + }, + { + "name": "Cabin Condensed", + "fontFamily": "Cabin Condensed, sans-serif", + "slug": "wp-font-lib-cabin-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpMtK6mNhBK2err_hqkYhHRqmwaYOjZ5HZl8Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cabin Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwilMH97F15-K1oqQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cabin Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwiuMb97F15-K1oqQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cabin Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwi3Mf97F15-K1oqQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cabin Condensed" + } + ] + }, + { + "name": "Cabin Sketch", + "fontFamily": "Cabin Sketch, system-ui", + "slug": "wp-font-lib-cabin-sketch", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cabinsketch/v19/QGYpz_kZZAGCONcK2A4bGOjMn9JM6fnuKg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cabin Sketch" + }, + { + "src": "http://fonts.gstatic.com/s/cabinsketch/v19/QGY2z_kZZAGCONcK2A4bGOj0I_1o4dLyI4CMFw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cabin Sketch" + } + ] + }, + { + "name": "Caesar Dressing", + "fontFamily": "Caesar Dressing, system-ui", + "slug": "wp-font-lib-caesar-dressing", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/caesardressing/v21/yYLx0hLa3vawqtwdswbotmK4vrR3cbb6LZttyg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Caesar Dressing" + } + ] + }, + { + "name": "Cagliostro", + "fontFamily": "Cagliostro, sans-serif", + "slug": "wp-font-lib-cagliostro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cagliostro/v21/ZgNWjP5HM73BV5amnX-TjGXEM4COoE4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cagliostro" + } + ] + }, + { + "name": "Cairo", + "fontFamily": "Cairo, sans-serif", + "slug": "wp-font-lib-cairo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hGA-W1ToLQ-HmkA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Cairo" + }, + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hL4-W1ToLQ-HmkA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cairo" + }, + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-W1ToLQ-HmkA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cairo" + }, + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hNI-W1ToLQ-HmkA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cairo" + }, + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hD45W1ToLQ-HmkA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cairo" + }, + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hAc5W1ToLQ-HmkA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cairo" + }, + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hGA5W1ToLQ-HmkA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Cairo" + }, + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hEk5W1ToLQ-HmkA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Cairo" + } + ] + }, + { + "name": "Cairo Play", + "fontFamily": "Cairo Play, sans-serif", + "slug": "wp-font-lib-cairo-play", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnYq9yXa8GvzaA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + }, + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1zHYq9yXa8GvzaA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + }, + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1knYq9yXa8GvzaA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + }, + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1oHYq9yXa8GvzaA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + }, + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1THEq9yXa8GvzaA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + }, + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1dXEq9yXa8GvzaA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + }, + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnEq9yXa8GvzaA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + }, + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1O3Eq9yXa8GvzaA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + } + ] + }, + { + "name": "Caladea", + "fontFamily": "Caladea, serif", + "slug": "wp-font-lib-caladea", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/caladea/v7/kJEzBugZ7AAjhybUjR93-9IztOc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Caladea" + }, + { + "src": "http://fonts.gstatic.com/s/caladea/v7/kJExBugZ7AAjhybUvR19__A2pOdvDA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Caladea" + }, + { + "src": "http://fonts.gstatic.com/s/caladea/v7/kJE2BugZ7AAjhybUtaNY39oYqO52FZ0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Caladea" + }, + { + "src": "http://fonts.gstatic.com/s/caladea/v7/kJE0BugZ7AAjhybUvR1FQ98SrMxzBZ2lDA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Caladea" + } + ] + }, + { + "name": "Calistoga", + "fontFamily": "Calistoga, system-ui", + "slug": "wp-font-lib-calistoga", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/calistoga/v13/6NUU8F2OJg6MeR7l4e0vtMYAwdRZfw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Calistoga" + } + ] + }, + { + "name": "Calligraffitti", + "fontFamily": "Calligraffitti, cursive", + "slug": "wp-font-lib-calligraffitti", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/calligraffitti/v19/46k2lbT3XjDVqJw3DCmCFjE0vnFZM5ZBpYN-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Calligraffitti" + } + ] + }, + { + "name": "Cambay", + "fontFamily": "Cambay, sans-serif", + "slug": "wp-font-lib-cambay", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cambay/v12/SLXJc1rY6H0_ZDsGbrSIz9JsaA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cambay" + }, + { + "src": "http://fonts.gstatic.com/s/cambay/v12/SLXLc1rY6H0_ZDs2bL6M7dd8aGZk.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cambay" + }, + { + "src": "http://fonts.gstatic.com/s/cambay/v12/SLXKc1rY6H0_ZDs-0pusx_lwYX99kA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cambay" + }, + { + "src": "http://fonts.gstatic.com/s/cambay/v12/SLXMc1rY6H0_ZDs2bIYwwvN0Q3ptkDMN.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cambay" + } + ] + }, + { + "name": "Cambo", + "fontFamily": "Cambo, serif", + "slug": "wp-font-lib-cambo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cambo/v17/IFSqHeNEk8FJk416ok7xkPm8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cambo" + } + ] + }, + { + "name": "Candal", + "fontFamily": "Candal, sans-serif", + "slug": "wp-font-lib-candal", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/candal/v15/XoHn2YH6T7-t_8cNAR4Jt9Yxlw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Candal" + } + ] + }, + { + "name": "Cantarell", + "fontFamily": "Cantarell, sans-serif", + "slug": "wp-font-lib-cantarell", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cantarell/v17/B50NF7ZDq37KMUvlO01Ji6hqHK-CLA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cantarell" + }, + { + "src": "http://fonts.gstatic.com/s/cantarell/v17/B50LF7ZDq37KMUvlO015iaJuPqqSLJYf.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cantarell" + }, + { + "src": "http://fonts.gstatic.com/s/cantarell/v17/B50IF7ZDq37KMUvlO01xN4dOFISeJY8GgQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cantarell" + }, + { + "src": "http://fonts.gstatic.com/s/cantarell/v17/B50WF7ZDq37KMUvlO015iZrSEY6aB4oWgWHB.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cantarell" + } + ] + }, + { + "name": "Cantata One", + "fontFamily": "Cantata One, serif", + "slug": "wp-font-lib-cantata-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cantataone/v15/PlI5Fl60Nb5obNzNe2jslVxEt8CwfGaD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cantata One" + } + ] + }, + { + "name": "Cantora One", + "fontFamily": "Cantora One, sans-serif", + "slug": "wp-font-lib-cantora-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cantoraone/v19/gyB4hws1JdgnKy56GB_JX6zdZ4vZVbgZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cantora One" + } + ] + }, + { + "name": "Capriola", + "fontFamily": "Capriola, sans-serif", + "slug": "wp-font-lib-capriola", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/capriola/v14/wXKoE3YSppcvo1PDln_8L-AinG8y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Capriola" + } + ] + }, + { + "name": "Caramel", + "fontFamily": "Caramel, cursive", + "slug": "wp-font-lib-caramel", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/caramel/v7/P5sCzZKBbMTf_ShyxCRuiZ-uydg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Caramel" + } + ] + }, + { + "name": "Carattere", + "fontFamily": "Carattere, cursive", + "slug": "wp-font-lib-carattere", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/carattere/v7/4iCv6Kp1b9dXlgt_CkvTt2aMH4V_gg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Carattere" + } + ] + }, + { + "name": "Cardo", + "fontFamily": "Cardo, serif", + "slug": "wp-font-lib-cardo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cardo/v19/wlp_gwjKBV1pqiv_1oAZ2H5O.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cardo" + }, + { + "src": "http://fonts.gstatic.com/s/cardo/v19/wlpxgwjKBV1pqhv93IQ73W5OcCk.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cardo" + }, + { + "src": "http://fonts.gstatic.com/s/cardo/v19/wlpygwjKBV1pqhND-aQR82JHaTBX.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cardo" + } + ] + }, + { + "name": "Carlito", + "fontFamily": "Carlito, sans-serif", + "slug": "wp-font-lib-carlito", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/carlito/v3/3Jn9SDPw3m-pk039PDCLTXUETuE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Carlito" + }, + { + "src": "http://fonts.gstatic.com/s/carlito/v3/3Jn_SDPw3m-pk039DDKBSVcBXuFb0Q.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Carlito" + }, + { + "src": "http://fonts.gstatic.com/s/carlito/v3/3Jn4SDPw3m-pk039BIykaX0vUuhCyOo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Carlito" + }, + { + "src": "http://fonts.gstatic.com/s/carlito/v3/3Jn6SDPw3m-pk039DDK59XglVspH2OprMQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Carlito" + } + ] + }, + { + "name": "Carme", + "fontFamily": "Carme, sans-serif", + "slug": "wp-font-lib-carme", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/carme/v16/ptRHTiWdbvZIDOjGxLNrxfbZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Carme" + } + ] + }, + { + "name": "Carrois Gothic", + "fontFamily": "Carrois Gothic, sans-serif", + "slug": "wp-font-lib-carrois-gothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/carroisgothic/v16/Z9XPDmFATg-N1PLtLOOxvIHl9ZmD3i7ajcJ-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Carrois Gothic" + } + ] + }, + { + "name": "Carrois Gothic SC", + "fontFamily": "Carrois Gothic SC, sans-serif", + "slug": "wp-font-lib-carrois-gothic-sc", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/carroisgothicsc/v15/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28nNHabY4dN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Carrois Gothic SC" + } + ] + }, + { + "name": "Carter One", + "fontFamily": "Carter One, system-ui", + "slug": "wp-font-lib-carter-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/carterone/v17/q5uCsoe5IOB2-pXv9UcNIxR2hYxREMs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Carter One" + } + ] + }, + { + "name": "Castoro", + "fontFamily": "Castoro, serif", + "slug": "wp-font-lib-castoro", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/castoro/v19/1q2GY5yMCld3-O4cHYhEzOYenEU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Castoro" + }, + { + "src": "http://fonts.gstatic.com/s/castoro/v19/1q2EY5yMCld3-O4cLYpOyMQbjEX5fw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Castoro" + } + ] + }, + { + "name": "Castoro Titling", + "fontFamily": "Castoro Titling, system-ui", + "slug": "wp-font-lib-castoro-titling", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/castorotitling/v3/buEupouwccj03leTfjUAhEZWlrNqYgckeo9RMw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Castoro Titling" + } + ] + }, + { + "name": "Catamaran", + "fontFamily": "Catamaran, sans-serif", + "slug": "wp-font-lib-catamaran", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjc1anXuluiLyw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPjd1anXuluiLyw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPCbd1anXuluiLyw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjd1anXuluiLyw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPErd1anXuluiLyw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPKba1anXuluiLyw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPJ_a1anXuluiLyw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPja1anXuluiLyw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPNHa1anXuluiLyw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Catamaran" + } + ] + }, + { + "name": "Caudex", + "fontFamily": "Caudex, serif", + "slug": "wp-font-lib-caudex", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/caudex/v15/esDQ311QOP6BJUrIyviAnb4eEw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Caudex" + }, + { + "src": "http://fonts.gstatic.com/s/caudex/v15/esDS311QOP6BJUr4yPKEv7sOE4in.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Caudex" + }, + { + "src": "http://fonts.gstatic.com/s/caudex/v15/esDT311QOP6BJUrwdteklZUCGpG-GQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Caudex" + }, + { + "src": "http://fonts.gstatic.com/s/caudex/v15/esDV311QOP6BJUr4yMo4kJ8GOJSuGdLB.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Caudex" + } + ] + }, + { + "name": "Caveat", + "fontFamily": "Caveat, cursive", + "slug": "wp-font-lib-caveat", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjfJ9SIKjYBxPigs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Caveat" + }, + { + "src": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjcB9SIKjYBxPigs.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Caveat" + }, + { + "src": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjSx6SIKjYBxPigs.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Caveat" + }, + { + "src": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjRV6SIKjYBxPigs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Caveat" + } + ] + }, + { + "name": "Caveat Brush", + "fontFamily": "Caveat Brush, cursive", + "slug": "wp-font-lib-caveat-brush", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/caveatbrush/v11/EYq0maZfwr9S9-ETZc3fKXtMW7mT03pdQw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Caveat Brush" + } + ] + }, + { + "name": "Cedarville Cursive", + "fontFamily": "Cedarville Cursive, cursive", + "slug": "wp-font-lib-cedarville-cursive", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cedarvillecursive/v17/yYL00g_a2veiudhUmxjo5VKkoqA-B_neJbBxw8BeTg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cedarville Cursive" + } + ] + }, + { + "name": "Ceviche One", + "fontFamily": "Ceviche One, system-ui", + "slug": "wp-font-lib-ceviche-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cevicheone/v16/gyB4hws1IcA6JzR-GB_JX6zdZ4vZVbgZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ceviche One" + } + ] + }, + { + "name": "Chakra Petch", + "fontFamily": "Chakra Petch, sans-serif", + "slug": "wp-font-lib-chakra-petch", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeNIhFQJXE3AY00g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpLJQp_A_gMk0izH.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIf6MapbsEk7TDLdtEz1BwkmmKBhSL7Y1Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfkMapbsEk7TDLdtEz1BwkWmqplarvI1R8t.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkebIlFQJXE3AY00g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpKRQ5_A_gMk0izH.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeQI5FQJXE3AY00g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpK9RJ_A_gMk0izH.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeJI9FQJXE3AY00g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpLZRZ_A_gMk0izH.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Chakra Petch" + } + ] + }, + { + "name": "Changa", + "fontFamily": "Changa, sans-serif", + "slug": "wp-font-lib-changa", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZy2xQjDp9htf1ZM.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Changa" + }, + { + "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ_OxQjDp9htf1ZM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Changa" + }, + { + "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ62xQjDp9htf1ZM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Changa" + }, + { + "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ5-xQjDp9htf1ZM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Changa" + }, + { + "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ3O2QjDp9htf1ZM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Changa" + }, + { + "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ0q2QjDp9htf1ZM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Changa" + }, + { + "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZy22QjDp9htf1ZM.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Changa" + } + ] + }, + { + "name": "Changa One", + "fontFamily": "Changa One, system-ui", + "slug": "wp-font-lib-changa-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/changaone/v18/xfu00W3wXn3QLUJXhzq46AbouLfbK64.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Changa One" + }, + { + "src": "http://fonts.gstatic.com/s/changaone/v18/xfu20W3wXn3QLUJXhzq42ATivJXeO67ISw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Changa One" + } + ] + }, + { + "name": "Chango", + "fontFamily": "Chango, system-ui", + "slug": "wp-font-lib-chango", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chango/v22/2V0cKI0OB5U7WaJyz324TFUaAw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chango" + } + ] + }, + { + "name": "Charis SIL", + "fontFamily": "Charis SIL, serif", + "slug": "wp-font-lib-charis-sil", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/charissil/v2/oPWK_kV3l-s-Q8govXvKrPrmYjZ2Xn0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Charis SIL" + }, + { + "src": "http://fonts.gstatic.com/s/charissil/v2/oPWI_kV3l-s-Q8govXvKnPjsZhRzTn2Ozw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Charis SIL" + }, + { + "src": "http://fonts.gstatic.com/s/charissil/v2/oPWJ_kV3l-s-Q8govXvKlEbJRj5dQnSX1ko.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Charis SIL" + }, + { + "src": "http://fonts.gstatic.com/s/charissil/v2/oPWX_kV3l-s-Q8govXvKnPjU2jtXRlaSxkrMCQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Charis SIL" + } + ] + }, + { + "name": "Charm", + "fontFamily": "Charm, cursive", + "slug": "wp-font-lib-charm", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/charm/v11/7cHmv4oii5K0MeYvIe804WIo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Charm" + }, + { + "src": "http://fonts.gstatic.com/s/charm/v11/7cHrv4oii5K0Md6TDss8yn4hnCci.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Charm" + } + ] + }, + { + "name": "Charmonman", + "fontFamily": "Charmonman, cursive", + "slug": "wp-font-lib-charmonman", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/charmonman/v18/MjQDmiR3vP_nuxDv47jiWJGovLdh6OE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Charmonman" + }, + { + "src": "http://fonts.gstatic.com/s/charmonman/v18/MjQAmiR3vP_nuxDv47jiYC2HmL9K9OhmGnY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Charmonman" + } + ] + }, + { + "name": "Chathura", + "fontFamily": "Chathura, sans-serif", + "slug": "wp-font-lib-chathura", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chathura/v20/_gP91R7-rzUuVjim42dEq0SbTvZyuDo.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Chathura" + }, + { + "src": "http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eMiWSxYPp7oSNy.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Chathura" + }, + { + "src": "http://fonts.gstatic.com/s/chathura/v20/_gP71R7-rzUuVjim418goUC5S-Zy.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chathura" + }, + { + "src": "http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42ecjmSxYPp7oSNy.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Chathura" + }, + { + "src": "http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eAjWSxYPp7oSNy.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Chathura" + } + ] + }, + { + "name": "Chau Philomene One", + "fontFamily": "Chau Philomene One, sans-serif", + "slug": "wp-font-lib-chau-philomene-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chauphilomeneone/v15/55xxezRsPtfie1vPY49qzdgSlJiHRQFsnIx7QMISdQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chau Philomene One" + }, + { + "src": "http://fonts.gstatic.com/s/chauphilomeneone/v15/55xzezRsPtfie1vPY49qzdgSlJiHRQFcnoZ_YscCdXQB.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Chau Philomene One" + } + ] + }, + { + "name": "Chela One", + "fontFamily": "Chela One, system-ui", + "slug": "wp-font-lib-chela-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chelaone/v21/6ae-4KC7Uqgdz_JZdPIy31vWNTMwoQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chela One" + } + ] + }, + { + "name": "Chelsea Market", + "fontFamily": "Chelsea Market, system-ui", + "slug": "wp-font-lib-chelsea-market", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chelseamarket/v13/BCawqZsHqfr89WNP_IApC8tzKBhlLA4uKkWk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chelsea Market" + } + ] + }, + { + "name": "Chenla", + "fontFamily": "Chenla, system-ui", + "slug": "wp-font-lib-chenla", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chenla/v25/SZc43FDpIKu8WZ9eXxfonUPL6Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chenla" + } + ] + }, + { + "name": "Cherish", + "fontFamily": "Cherish, cursive", + "slug": "wp-font-lib-cherish", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cherish/v8/ll88K2mXUyqsDsTN5iDCI6IJjg8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cherish" + } + ] + }, + { + "name": "Cherry Bomb One", + "fontFamily": "Cherry Bomb One, system-ui", + "slug": "wp-font-lib-cherry-bomb-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cherrybombone/v8/y83DW4od1h6KlV3c6JJhRhGOdhrKDNpF41fr-w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cherry Bomb One" + } + ] + }, + { + "name": "Cherry Cream Soda", + "fontFamily": "Cherry Cream Soda, system-ui", + "slug": "wp-font-lib-cherry-cream-soda", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cherrycreamsoda/v21/UMBIrOxBrW6w2FFyi9paG0fdVdRciTd6Cd47DJ7G.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cherry Cream Soda" + } + ] + }, + { + "name": "Cherry Swash", + "fontFamily": "Cherry Swash, system-ui", + "slug": "wp-font-lib-cherry-swash", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cherryswash/v18/i7dNIFByZjaNAMxtZcnfAy58QHi-EwWMbg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cherry Swash" + }, + { + "src": "http://fonts.gstatic.com/s/cherryswash/v18/i7dSIFByZjaNAMxtZcnfAy5E_FeaGy6QZ3WfYg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cherry Swash" + } + ] + }, + { + "name": "Chewy", + "fontFamily": "Chewy, system-ui", + "slug": "wp-font-lib-chewy", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chewy/v18/uK_94ruUb-k-wk5xIDMfO-ed.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chewy" + } + ] + }, + { + "name": "Chicle", + "fontFamily": "Chicle, system-ui", + "slug": "wp-font-lib-chicle", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chicle/v21/lJwG-pw9i2dqU-BDyWKuobYSxw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chicle" + } + ] + }, + { + "name": "Chilanka", + "fontFamily": "Chilanka, cursive", + "slug": "wp-font-lib-chilanka", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chilanka/v20/WWXRlj2DZQiMJYaYRrJQI9EAZhTO.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chilanka" + } + ] + }, + { + "name": "Chivo", + "fontFamily": "Chivo, sans-serif", + "slug": "wp-font-lib-chivo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB7ul2DSFXjQiQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_PB_ul2DSFXjQiQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_4h_ul2DSFXjQiQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_ul2DSFXjQiQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_jh_ul2DSFXjQiQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_Yhjul2DSFXjQiQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_Wxjul2DSFXjQiQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_PBjul2DSFXjQiQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_FRjul2DSFXjQiQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1WrWN33AiasJ.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyG1GrWN33AiasJ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFxY1GrWN33AiasJ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1GrWN33AiasJ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFw01GrWN33AiasJ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzY02rWN33AiasJ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzh02rWN33AiasJ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyG02rWN33AiasJ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyv02rWN33AiasJ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Chivo" + } + ] + }, + { + "name": "Chivo Mono", + "fontFamily": "Chivo Mono, monospace", + "slug": "wp-font-lib-chivo-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hrqfVKphL03l4.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5hr6fVKphL03l4.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D6_r6fVKphL03l4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hr6fVKphL03l4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7Tr6fVKphL03l4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D4_qKfVKphL03l4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D4GqKfVKphL03l4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5hqKfVKphL03l4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5IqKfVKphL03l4.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7E-XIJxp1ml4imo.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7M-WIJxp1ml4imo.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7BGWIJxp1ml4imo.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7E-WIJxp1ml4imo.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7H2WIJxp1ml4imo.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7JGRIJxp1ml4imo.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7KiRIJxp1ml4imo.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7M-RIJxp1ml4imo.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7OaRIJxp1ml4imo.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + } + ] + }, + { + "name": "Chokokutai", + "fontFamily": "Chokokutai, system-ui", + "slug": "wp-font-lib-chokokutai", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chokokutai/v9/kmK4Zqw4HwvCeHGM8Fws9y7ypu1Kr7I.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chokokutai" + } + ] + }, + { + "name": "Chonburi", + "fontFamily": "Chonburi, system-ui", + "slug": "wp-font-lib-chonburi", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chonburi/v10/8AtqGs-wOpGRTBq66IWaFr3biAfZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chonburi" + } + ] + }, + { + "name": "Cinzel", + "fontFamily": "Cinzel, serif", + "slug": "wp-font-lib-cinzel", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-tbnTYrvDE5ZdqU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cinzel" + }, + { + "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-uTnTYrvDE5ZdqU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cinzel" + }, + { + "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-gjgTYrvDE5ZdqU.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cinzel" + }, + { + "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-jHgTYrvDE5ZdqU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cinzel" + }, + { + "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-lbgTYrvDE5ZdqU.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Cinzel" + }, + { + "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-n_gTYrvDE5ZdqU.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Cinzel" + } + ] + }, + { + "name": "Cinzel Decorative", + "fontFamily": "Cinzel Decorative, system-ui", + "slug": "wp-font-lib-cinzel-decorative", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaCSScvJGqLYhG8nNt8KPPswUAPnh7URs1LaCyC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cinzel Decorative" + }, + { + "src": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaHSScvJGqLYhG8nNt8KPPswUAPniZoaelDQzCLlQXE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cinzel Decorative" + }, + { + "src": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaHSScvJGqLYhG8nNt8KPPswUAPniZQa-lDQzCLlQXE.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Cinzel Decorative" + } + ] + }, + { + "name": "Clicker Script", + "fontFamily": "Clicker Script, cursive", + "slug": "wp-font-lib-clicker-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/clickerscript/v13/raxkHiKPvt8CMH6ZWP8PdlEq72rY2zqUKafv.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Clicker Script" + } + ] + }, + { + "name": "Climate Crisis", + "fontFamily": "Climate Crisis, system-ui", + "slug": "wp-font-lib-climate-crisis", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/climatecrisis/v5/wEOpEB3AntNeKCPBVW9XOKlmp3AUgWFN1DvIvcM0gFp6jaUrGb7PsQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Climate Crisis" + } + ] + }, + { + "name": "Coda", + "fontFamily": "Coda, system-ui", + "slug": "wp-font-lib-coda", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/coda/v21/SLXHc1jY5nQ8JUIMapaN39I.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Coda" + }, + { + "src": "http://fonts.gstatic.com/s/coda/v21/SLXIc1jY5nQ8HeIgTp6mw9t1cX8.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Coda" + } + ] + }, + { + "name": "Coda Caption", + "fontFamily": "Coda Caption, sans-serif", + "slug": "wp-font-lib-coda-caption", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/codacaption/v19/ieVm2YRII2GMY7SyXSoDRiQGqcx6x_-fACIgaw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Coda Caption" + } + ] + }, + { + "name": "Codystar", + "fontFamily": "Codystar, system-ui", + "slug": "wp-font-lib-codystar", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/codystar/v15/FwZf7-Q1xVk-40qxOuYsyuyrj0e29bfC.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Codystar" + }, + { + "src": "http://fonts.gstatic.com/s/codystar/v15/FwZY7-Q1xVk-40qxOt6A4sijpFu_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Codystar" + } + ] + }, + { + "name": "Coiny", + "fontFamily": "Coiny, system-ui", + "slug": "wp-font-lib-coiny", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/coiny/v16/gyByhwU1K989PXwbElSvO5Tc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Coiny" + } + ] + }, + { + "name": "Combo", + "fontFamily": "Combo, system-ui", + "slug": "wp-font-lib-combo", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/combo/v21/BXRlvF3Jh_fIhg0iBu9y8Hf0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Combo" + } + ] + }, + { + "name": "Comfortaa", + "fontFamily": "Comfortaa, system-ui", + "slug": "wp-font-lib-comfortaa", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Comfortaa" + }, + { + "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Comfortaa" + }, + { + "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Comfortaa" + }, + { + "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Comfortaa" + }, + { + "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Comfortaa" + } + ] + }, + { + "name": "Comforter", + "fontFamily": "Comforter, cursive", + "slug": "wp-font-lib-comforter", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/comforter/v5/H4clBXOCl8nQnlaql3Qa6JG8iqeuag.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Comforter" + } + ] + }, + { + "name": "Comforter Brush", + "fontFamily": "Comforter Brush, cursive", + "slug": "wp-font-lib-comforter-brush", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/comforterbrush/v5/Y4GTYa1xVSggrfzZI5WMjxRaOz0jwLL9Th8YYA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Comforter Brush" + } + ] + }, + { + "name": "Comic Neue", + "fontFamily": "Comic Neue, cursive", + "slug": "wp-font-lib-comic-neue", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_wHLwpteLwtHJlc.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Comic Neue" + }, + { + "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RTplUKylCNlcw_Q.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Comic Neue" + }, + { + "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaHrEJDsxBrF37olUeDx63j5pN1MwI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Comic Neue" + }, + { + "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaFrEJDsxBrF37olUeD96_p4rFwIwJePw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Comic Neue" + }, + { + "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_xHMwpteLwtHJlc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Comic Neue" + }, + { + "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RXp5UKylCNlcw_Q.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Comic Neue" + } + ] + }, + { + "name": "Coming Soon", + "fontFamily": "Coming Soon, cursive", + "slug": "wp-font-lib-coming-soon", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/comingsoon/v19/qWcuB6mzpYL7AJ2VfdQR1u-SUjjzsykh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Coming Soon" + } + ] + }, + { + "name": "Comme", + "fontFamily": "Comme, sans-serif", + "slug": "wp-font-lib-comme", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z5cBr644fWsRO9w.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zZcFr644fWsRO9w.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zu8Fr644fWsRO9w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z5cFr644fWsRO9w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z18Fr644fWsRO9w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zO8Zr644fWsRO9w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zAsZr644fWsRO9w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zZcZr644fWsRO9w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zTMZr644fWsRO9w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Comme" + } + ] + }, + { + "name": "Commissioner", + "fontFamily": "Commissioner, sans-serif", + "slug": "wp-font-lib-commissioner", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTMNcGPe7Fu0jUdk.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTENdGPe7Fu0jUdk.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTJ1dGPe7Fu0jUdk.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTMNdGPe7Fu0jUdk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTPFdGPe7Fu0jUdk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTB1aGPe7Fu0jUdk.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTCRaGPe7Fu0jUdk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTENaGPe7Fu0jUdk.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTGpaGPe7Fu0jUdk.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Commissioner" + } + ] + }, + { + "name": "Concert One", + "fontFamily": "Concert One, system-ui", + "slug": "wp-font-lib-concert-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/concertone/v17/VEM1Ro9xs5PjtzCu-srDqRTlhv-CuVAQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Concert One" + } + ] + }, + { + "name": "Condiment", + "fontFamily": "Condiment, cursive", + "slug": "wp-font-lib-condiment", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/condiment/v20/pONk1hggFNmwvXALyH6Sq4n4o1vyCQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Condiment" + } + ] + }, + { + "name": "Content", + "fontFamily": "Content, system-ui", + "slug": "wp-font-lib-content", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/content/v24/zrfl0HLayePhU_AwUaDyIiL0RCg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Content" + }, + { + "src": "http://fonts.gstatic.com/s/content/v24/zrfg0HLayePhU_AwaRzdBirfWCHvkAI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Content" + } + ] + }, + { + "name": "Contrail One", + "fontFamily": "Contrail One, system-ui", + "slug": "wp-font-lib-contrail-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/contrailone/v15/eLGbP-j_JA-kG0_Zo51noafdZUvt_c092w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Contrail One" + } + ] + }, + { + "name": "Convergence", + "fontFamily": "Convergence, sans-serif", + "slug": "wp-font-lib-convergence", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/convergence/v15/rax5HiePvdgXPmmMHcIPYRhasU7Q8Cad.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Convergence" + } + ] + }, + { + "name": "Cookie", + "fontFamily": "Cookie, cursive", + "slug": "wp-font-lib-cookie", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cookie/v17/syky-y18lb0tSbfNlQCT9tPdpw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cookie" + } + ] + }, + { + "name": "Copse", + "fontFamily": "Copse, serif", + "slug": "wp-font-lib-copse", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/copse/v15/11hPGpDKz1rGb0djHkihUb-A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Copse" + } + ] + }, + { + "name": "Corben", + "fontFamily": "Corben, system-ui", + "slug": "wp-font-lib-corben", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/corben/v19/LYjDdGzzklQtCMp9oAlEpVs3VQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Corben" + }, + { + "src": "http://fonts.gstatic.com/s/corben/v19/LYjAdGzzklQtCMpFHCZgrXArXN7HWQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Corben" + } + ] + }, + { + "name": "Corinthia", + "fontFamily": "Corinthia, cursive", + "slug": "wp-font-lib-corinthia", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/corinthia/v9/wEO_EBrAnchaJyPMHE0FUfAL3EsHiA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Corinthia" + }, + { + "src": "http://fonts.gstatic.com/s/corinthia/v9/wEO6EBrAnchaJyPMHE097d8v1GAbgbLXQA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Corinthia" + } + ] + }, + { + "name": "Cormorant", + "fontFamily": "Cormorant, serif", + "slug": "wp-font-lib-cormorant", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFk9TQ7Rg7A2uwYs.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFhFTQ7Rg7A2uwYs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFiNTQ7Rg7A2uwYs.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFs9UQ7Rg7A2uwYs.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFvZUQ7Rg7A2uwYs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQ9fdq6C-r0YvxdA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQq_dq6C-r0YvxdA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQmfdq6C-r0YvxdA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQdfBq6C-r0YvxdA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQTPBq6C-r0YvxdA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cormorant" + } + ] + }, + { + "name": "Cormorant Garamond", + "fontFamily": "Cormorant Garamond, serif", + "slug": "wp-font-lib-cormorant-garamond", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQAllvuQWJ5heb_w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjuw-NxBKL_y94.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3bmX5slCNuHLi8bLeY9MK7whWMhyjornFLsS6V7w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtPkyuF7w6C.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQWlhvuQWJ5heb_w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEO7ug-NxBKL_y94.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQdl9vuQWJ5heb_w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEOXvQ-NxBKL_y94.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vuQWJ5heb_w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPzvA-NxBKL_y94.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cormorant Garamond" + } + ] + }, + { + "name": "Cormorant Infant", + "fontFamily": "Cormorant Infant, serif", + "slug": "wp-font-lib-cormorant-infant", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9951w3_DMrQqcdJrk.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItcDEhRoUYNrn_Ig.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyPU44g9vKiM1sORYSiWeAsLN993_Af2DsAXq4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyJU44g9vKiM1sORYSiWeAsLN997_IV3BkFTq4EPw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995wQ2_DMrQqcdJrk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItKDAhRoUYNrn_Ig.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995ygx_DMrQqcdJrk.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItBDchRoUYNrn_Ig.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9950ww_DMrQqcdJrk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItYDYhRoUYNrn_Ig.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cormorant Infant" + } + ] + }, + { + "name": "Cormorant SC", + "fontFamily": "Cormorant SC, serif", + "slug": "wp-font-lib-cormorant-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmABIU_R3y8DOWGA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cormorant SC" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0yb5GD4kxqXBmOVLG30OGwserDow9Tbu-Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cormorant SC" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmWBMU_R3y8DOWGA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cormorant SC" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmdBQU_R3y8DOWGA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cormorant SC" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmEBUU_R3y8DOWGA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cormorant SC" + } + ] + }, + { + "name": "Cormorant Unicase", + "fontFamily": "Cormorant Unicase, serif", + "slug": "wp-font-lib-cormorant-unicase", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9N_tucv7Gy0DRzS.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cormorant Unicase" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vTnsMnx3C9.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cormorant Unicase" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Mnt-cv7Gy0DRzS.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cormorant Unicase" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9MLsOcv7Gy0DRzS.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cormorant Unicase" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Nvsecv7Gy0DRzS.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cormorant Unicase" + } + ] + }, + { + "name": "Cormorant Upright", + "fontFamily": "Cormorant Upright, serif", + "slug": "wp-font-lib-cormorant-upright", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1N5phDsU9X6RPzQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cormorant Upright" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJrdM3I2Y35poFONtLdafkUCHw1y2vVjjTkeMnz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cormorant Upright" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MhpxDsU9X6RPzQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cormorant Upright" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MNoBDsU9X6RPzQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cormorant Upright" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1NpoRDsU9X6RPzQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cormorant Upright" + } + ] + }, + { + "name": "Courgette", + "fontFamily": "Courgette, cursive", + "slug": "wp-font-lib-courgette", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/courgette/v13/wEO_EBrAnc9BLjLQAUkFUfAL3EsHiA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Courgette" + } + ] + }, + { + "name": "Courier Prime", + "fontFamily": "Courier Prime, monospace", + "slug": "wp-font-lib-courier-prime", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/courierprime/v7/u-450q2lgwslOqpF_6gQ8kELWwZjW-_-tvg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Courier Prime" + }, + { + "src": "http://fonts.gstatic.com/s/courierprime/v7/u-4n0q2lgwslOqpF_6gQ8kELawRpX837pvjxPA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Courier Prime" + }, + { + "src": "http://fonts.gstatic.com/s/courierprime/v7/u-4k0q2lgwslOqpF_6gQ8kELY7pMf-fVqvHoJXw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Courier Prime" + }, + { + "src": "http://fonts.gstatic.com/s/courierprime/v7/u-4i0q2lgwslOqpF_6gQ8kELawRR4-LfrtPtNXyeAg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Courier Prime" + } + ] + }, + { + "name": "Cousine", + "fontFamily": "Cousine, monospace", + "slug": "wp-font-lib-cousine", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cousine/v25/d6lIkaiiRdih4SpPzSMlzTbtz9k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cousine" + }, + { + "src": "http://fonts.gstatic.com/s/cousine/v25/d6lKkaiiRdih4SpP_SEvyRTo39l8hw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cousine" + }, + { + "src": "http://fonts.gstatic.com/s/cousine/v25/d6lNkaiiRdih4SpP9Z8K6T7G09BlnmQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cousine" + }, + { + "src": "http://fonts.gstatic.com/s/cousine/v25/d6lPkaiiRdih4SpP_SEXdTvM1_JgjmRpOA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cousine" + } + ] + }, + { + "name": "Coustard", + "fontFamily": "Coustard, serif", + "slug": "wp-font-lib-coustard", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/coustard/v16/3XFpErgg3YsZ5fqUU9UPvWXuROTd.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Coustard" + }, + { + "src": "http://fonts.gstatic.com/s/coustard/v16/3XFuErgg3YsZ5fqUU-2LkEHmb_jU3eRL.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Coustard" + } + ] + }, + { + "name": "Covered By Your Grace", + "fontFamily": "Covered By Your Grace, cursive", + "slug": "wp-font-lib-covered-by-your-grace", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/coveredbyyourgrace/v15/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0FgItq6bFIg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Covered By Your Grace" + } + ] + }, + { + "name": "Crafty Girls", + "fontFamily": "Crafty Girls, cursive", + "slug": "wp-font-lib-crafty-girls", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/craftygirls/v16/va9B4kXI39VaDdlPJo8N_NvuQR37fF3Wlg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Crafty Girls" + } + ] + }, + { + "name": "Creepster", + "fontFamily": "Creepster, system-ui", + "slug": "wp-font-lib-creepster", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/creepster/v13/AlZy_zVUqJz4yMrniH4hdXf4XB0Tow.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Creepster" + } + ] + }, + { + "name": "Crete Round", + "fontFamily": "Crete Round, serif", + "slug": "wp-font-lib-crete-round", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/creteround/v14/55xoey1sJNPjPiv1ZZZrxJ1827zAKnxN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Crete Round" + }, + { + "src": "http://fonts.gstatic.com/s/creteround/v14/55xqey1sJNPjPiv1ZZZrxK1-0bjiL2xNhKc.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Crete Round" + } + ] + }, + { + "name": "Crimson Pro", + "fontFamily": "Crimson Pro, serif", + "slug": "wp-font-lib-crimson-pro", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTm18OJE_VNWoyQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZkG18OJE_VNWoyQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZzm18OJE_VNWoyQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZ_G18OJE_VNWoyQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZEGp8OJE_VNWoyQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZKWp8OJE_VNWoyQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTmp8OJE_VNWoyQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZZ2p8OJE_VNWoyQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4Ue5s7dtC4yZNE.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi7Ke5s7dtC4yZNE.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6Ue5s7dtC4yZNE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6me5s7dtC4yZNE.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5KfJs7dtC4yZNE.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5zfJs7dtC4yZNE.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4UfJs7dtC4yZNE.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi49fJs7dtC4yZNE.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + } + ] + }, + { + "name": "Crimson Text", + "fontFamily": "Crimson Text, serif", + "slug": "wp-font-lib-crimson-text", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlp2gwHKFkZgtmSR3NB0oRJvaAJSA_JN3Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Crimson Text" + }, + { + "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlpogwHKFkZgtmSR3NB0oRJfaghWIfdd3ahG.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Crimson Text" + }, + { + "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJXsCx2C9lR1LFffg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Crimson Text" + }, + { + "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajCOD9NV9rRPfrKu.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Crimson Text" + }, + { + "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJX1C12C9lR1LFffg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Crimson Text" + }, + { + "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajDqDtNV9rRPfrKu.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Crimson Text" + } + ] + }, + { + "name": "Croissant One", + "fontFamily": "Croissant One, system-ui", + "slug": "wp-font-lib-croissant-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/croissantone/v21/3y9n6bU9bTPg4m8NDy3Kq24UM3pqn5cdJ-4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Croissant One" + } + ] + }, + { + "name": "Crushed", + "fontFamily": "Crushed, system-ui", + "slug": "wp-font-lib-crushed", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/crushed/v25/U9Mc6dym6WXImTlFT1kfuIqyLzA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Crushed" + } + ] + }, + { + "name": "Cuprum", + "fontFamily": "Cuprum, sans-serif", + "slug": "wp-font-lib-cuprum", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmg-X6ZjzSJjQjgnU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cuprum" + }, + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmg9f6ZjzSJjQjgnU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cuprum" + }, + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmgzv9ZjzSJjQjgnU.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cuprum" + }, + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmgwL9ZjzSJjQjgnU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cuprum" + }, + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25jn_YIhYmknUPEA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cuprum" + }, + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25vH_YIhYmknUPEA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Cuprum" + }, + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25UHjYIhYmknUPEA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Cuprum" + }, + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25aXjYIhYmknUPEA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cuprum" + } + ] + }, + { + "name": "Cute Font", + "fontFamily": "Cute Font, system-ui", + "slug": "wp-font-lib-cute-font", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cutefont/v20/Noaw6Uny2oWPbSHMrY6vmJNVNC9hkw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cute Font" + } + ] + }, + { + "name": "Cutive", + "fontFamily": "Cutive, serif", + "slug": "wp-font-lib-cutive", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cutive/v17/NaPZcZ_fHOhV3Ip7T_hDoyqlZQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cutive" + } + ] + }, + { + "name": "Cutive Mono", + "fontFamily": "Cutive Mono, monospace", + "slug": "wp-font-lib-cutive-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cutivemono/v15/m8JWjfRfY7WVjVi2E-K9H5RFRG-K3Mud.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cutive Mono" + } + ] + }, + { + "name": "DM Mono", + "fontFamily": "DM Mono, monospace", + "slug": "wp-font-lib-dm-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTR7PB1QTsUX8KYvrGyIYSnbKX9Rlk.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "DM Mono" + }, + { + "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTT7PB1QTsUX8KYth-orYataIf4VllXuA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "DM Mono" + }, + { + "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTU7PB1QTsUX8KYhh2aBYyMcKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "DM Mono" + }, + { + "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTW7PB1QTsUX8KYth-QAa6JYKzkXw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "DM Mono" + }, + { + "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTR7PB1QTsUX8KYvumzIYSnbKX9Rlk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "DM Mono" + }, + { + "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTT7PB1QTsUX8KYth-o9YetaIf4VllXuA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "DM Mono" + } + ] + }, + { + "name": "DM Sans", + "fontFamily": "DM Sans, sans-serif", + "slug": "wp-font-lib-dm-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "DM Sans" + }, + { + "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Fp2ywxg089UriCZaIGDWCBl0O8Q.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "DM Sans" + }, + { + "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Cp2ywxg089UriAWCrOB-sClQX6Cg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "DM Sans" + }, + { + "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Ap2ywxg089UriCZaw7BymDnYS-Cjk6Q.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "DM Sans" + }, + { + "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Cp2ywxg089UriASitOB-sClQX6Cg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "DM Sans" + }, + { + "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Ap2ywxg089UriCZawpBqmDnYS-Cjk6Q.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "DM Sans" + } + ] + }, + { + "name": "DM Serif Display", + "fontFamily": "DM Serif Display, serif", + "slug": "wp-font-lib-dm-serif-display", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dmserifdisplay/v12/-nFnOHM81r4j6k0gjAW3mujVU2B2K_d709jy92k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "DM Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/dmserifdisplay/v12/-nFhOHM81r4j6k0gjAW3mujVU2B2G_Vx1_r352np3Q.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "DM Serif Display" + } + ] + }, + { + "name": "DM Serif Text", + "fontFamily": "DM Serif Text, serif", + "slug": "wp-font-lib-dm-serif-text", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dmseriftext/v12/rnCu-xZa_krGokauCeNq1wWyafOPXHIJErY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "DM Serif Text" + }, + { + "src": "http://fonts.gstatic.com/s/dmseriftext/v12/rnCw-xZa_krGokauCeNq1wWyWfGFWFAMArZKqQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "DM Serif Text" + } + ] + }, + { + "name": "Damion", + "fontFamily": "Damion, cursive", + "slug": "wp-font-lib-damion", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/damion/v14/hv-XlzJ3KEUe_YZUbWY3MTFgVg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Damion" + } + ] + }, + { + "name": "Dancing Script", + "fontFamily": "Dancing Script, cursive", + "slug": "wp-font-lib-dancing-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSoHTeB9ptDqpw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dancing Script" + }, + { + "src": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BAyoHTeB9ptDqpw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Dancing Script" + }, + { + "src": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B7y0HTeB9ptDqpw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Dancing Script" + }, + { + "src": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B1i0HTeB9ptDqpw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Dancing Script" + } + ] + }, + { + "name": "Dangrek", + "fontFamily": "Dangrek, system-ui", + "slug": "wp-font-lib-dangrek", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dangrek/v26/LYjCdG30nEgoH8E2gCNqqVIuTN4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dangrek" + } + ] + }, + { + "name": "Darker Grotesque", + "fontFamily": "Darker Grotesque, sans-serif", + "slug": "wp-font-lib-darker-grotesque", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXxpqn7y-XFyZFUB.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Darker Grotesque" + }, + { + "src": "http://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXw3qn7y-XFyZFUB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Darker Grotesque" + }, + { + "src": "http://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXwFqn7y-XFyZFUB.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Darker Grotesque" + }, + { + "src": "http://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXzprX7y-XFyZFUB.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Darker Grotesque" + }, + { + "src": "http://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXzQrX7y-XFyZFUB.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Darker Grotesque" + }, + { + "src": "http://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXy3rX7y-XFyZFUB.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Darker Grotesque" + }, + { + "src": "http://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXyerX7y-XFyZFUB.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Darker Grotesque" + } + ] + }, + { + "name": "Darumadrop One", + "fontFamily": "Darumadrop One, system-ui", + "slug": "wp-font-lib-darumadrop-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/darumadropone/v7/cY9cfjeIW11dpCKgRLi675a87IhHBJOxZQPp.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Darumadrop One" + } + ] + }, + { + "name": "David Libre", + "fontFamily": "David Libre, serif", + "slug": "wp-font-lib-david-libre", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/davidlibre/v14/snfus0W_99N64iuYSvp4W_l86p6TYS-Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "David Libre" + }, + { + "src": "http://fonts.gstatic.com/s/davidlibre/v14/snfzs0W_99N64iuYSvp4W8GIw7qbSjORSo9W.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "David Libre" + }, + { + "src": "http://fonts.gstatic.com/s/davidlibre/v14/snfzs0W_99N64iuYSvp4W8HAxbqbSjORSo9W.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "David Libre" + } + ] + }, + { + "name": "Dawning of a New Day", + "fontFamily": "Dawning of a New Day, cursive", + "slug": "wp-font-lib-dawning-of-a-new-day", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dawningofanewday/v16/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8bhWJGNoBE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dawning of a New Day" + } + ] + }, + { + "name": "Days One", + "fontFamily": "Days One, sans-serif", + "slug": "wp-font-lib-days-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/daysone/v14/mem9YaCnxnKRiYZOCLYVeLkWVNBt.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Days One" + } + ] + }, + { + "name": "Dekko", + "fontFamily": "Dekko, cursive", + "slug": "wp-font-lib-dekko", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dekko/v19/46khlb_wWjfSrttFR0vsfl1B.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dekko" + } + ] + }, + { + "name": "Dela Gothic One", + "fontFamily": "Dela Gothic One, system-ui", + "slug": "wp-font-lib-dela-gothic-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/delagothicone/v10/~ChEKD0RlbGEgR290aGljIE9uZSAAKgQIARgB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dela Gothic One" + } + ] + }, + { + "name": "Delicious Handrawn", + "fontFamily": "Delicious Handrawn, cursive", + "slug": "wp-font-lib-delicious-handrawn", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/delicioushandrawn/v4/wlpsgx_NAUNkpmKQifcxkQchDFo3fJ113JpDd6u3AQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Delicious Handrawn" + } + ] + }, + { + "name": "Delius", + "fontFamily": "Delius, cursive", + "slug": "wp-font-lib-delius", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/delius/v15/PN_xRfK0pW_9e1rtYcI-jT3L_w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Delius" + } + ] + }, + { + "name": "Delius Swash Caps", + "fontFamily": "Delius Swash Caps, cursive", + "slug": "wp-font-lib-delius-swash-caps", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/deliusswashcaps/v19/oY1E8fPLr7v4JWCExZpWebxVKORpXXedKmeBvEYs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Delius Swash Caps" + } + ] + }, + { + "name": "Delius Unicase", + "fontFamily": "Delius Unicase, cursive", + "slug": "wp-font-lib-delius-unicase", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/deliusunicase/v26/845BNMEwEIOVT8BmgfSzIr_6mmLHd-73LXWs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Delius Unicase" + }, + { + "src": "http://fonts.gstatic.com/s/deliusunicase/v26/845CNMEwEIOVT8BmgfSzIr_6mlp7WMr_BmmlS5aw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Delius Unicase" + } + ] + }, + { + "name": "Della Respira", + "fontFamily": "Della Respira, serif", + "slug": "wp-font-lib-della-respira", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dellarespira/v18/RLp5K5v44KaueWI6iEJQBiGPRfkSu6EuTHo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Della Respira" + } + ] + }, + { + "name": "Denk One", + "fontFamily": "Denk One, sans-serif", + "slug": "wp-font-lib-denk-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/denkone/v17/dg4m_pzhrqcFb2IzROtHpbglShon.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Denk One" + } + ] + }, + { + "name": "Devonshire", + "fontFamily": "Devonshire, cursive", + "slug": "wp-font-lib-devonshire", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/devonshire/v22/46kqlbDwWirWr4gtBD2BX0Vq01lYAZM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Devonshire" + } + ] + }, + { + "name": "Dhurjati", + "fontFamily": "Dhurjati, sans-serif", + "slug": "wp-font-lib-dhurjati", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dhurjati/v20/_6_8ED3gSeatXfFiFX3ySKQtuTA2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dhurjati" + } + ] + }, + { + "name": "Didact Gothic", + "fontFamily": "Didact Gothic, sans-serif", + "slug": "wp-font-lib-didact-gothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/didactgothic/v20/ahcfv8qz1zt6hCC5G4F_P4ASpUySp0LlcyQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Didact Gothic" + } + ] + }, + { + "name": "Diplomata", + "fontFamily": "Diplomata, system-ui", + "slug": "wp-font-lib-diplomata", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/diplomata/v27/Cn-0JtiMXwhNwp-wKxyfYGxYrdM9Sg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Diplomata" + } + ] + }, + { + "name": "Diplomata SC", + "fontFamily": "Diplomata SC, system-ui", + "slug": "wp-font-lib-diplomata-sc", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/diplomatasc/v23/buExpoi3ecvs3kidKgBJo2kf-P5Oaiw4cw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Diplomata SC" + } + ] + }, + { + "name": "Do Hyeon", + "fontFamily": "Do Hyeon, sans-serif", + "slug": "wp-font-lib-do-hyeon", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dohyeon/v16/TwMN-I8CRRU2zM86HFE3ZwaH__-C.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Do Hyeon" + } + ] + }, + { + "name": "Dokdo", + "fontFamily": "Dokdo, cursive", + "slug": "wp-font-lib-dokdo", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dokdo/v15/esDf315XNuCBLxLo4NaMlKcH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dokdo" + } + ] + }, + { + "name": "Domine", + "fontFamily": "Domine, serif", + "slug": "wp-font-lib-domine", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X3LAI10VErGuW8Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Domine" + }, + { + "src": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X0DAI10VErGuW8Q.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Domine" + }, + { + "src": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X6zHI10VErGuW8Q.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Domine" + }, + { + "src": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X5XHI10VErGuW8Q.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Domine" + } + ] + }, + { + "name": "Donegal One", + "fontFamily": "Donegal One, serif", + "slug": "wp-font-lib-donegal-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/donegalone/v21/m8JWjfRYea-ZnFz6fsK9FZRFRG-K3Mud.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Donegal One" + } + ] + }, + { + "name": "Dongle", + "fontFamily": "Dongle, sans-serif", + "slug": "wp-font-lib-dongle", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dongle/v9/sJoG3Ltdjt6VPkqeEcxrYjWNzXvVPA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Dongle" + }, + { + "src": "http://fonts.gstatic.com/s/dongle/v9/sJoF3Ltdjt6VPkqmveRPah6RxA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dongle" + }, + { + "src": "http://fonts.gstatic.com/s/dongle/v9/sJoG3Ltdjt6VPkqeActrYjWNzXvVPA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Dongle" + } + ] + }, + { + "name": "Doppio One", + "fontFamily": "Doppio One, sans-serif", + "slug": "wp-font-lib-doppio-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/doppioone/v13/Gg8wN5gSaBfyBw2MqCh-lgshKGpe5Fg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Doppio One" + } + ] + }, + { + "name": "Dorsa", + "fontFamily": "Dorsa, sans-serif", + "slug": "wp-font-lib-dorsa", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dorsa/v23/yYLn0hjd0OGwqo493XCFxAnQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dorsa" + } + ] + }, + { + "name": "Dosis", + "fontFamily": "Dosis, sans-serif", + "slug": "wp-font-lib-dosis", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7MV3BkFTq4EPw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Dosis" + }, + { + "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJabMV3BkFTq4EPw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Dosis" + }, + { + "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJN7MV3BkFTq4EPw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dosis" + }, + { + "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJBbMV3BkFTq4EPw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Dosis" + }, + { + "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ6bQV3BkFTq4EPw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Dosis" + }, + { + "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ0LQV3BkFTq4EPw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Dosis" + }, + { + "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7QV3BkFTq4EPw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Dosis" + } + ] + }, + { + "name": "DotGothic16", + "fontFamily": "DotGothic16, sans-serif", + "slug": "wp-font-lib-dotgothic16", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dotgothic16/v15/v6-QGYjBJFKgyw5nSoDAGE7L435YPFrT.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "DotGothic16" + } + ] + }, + { + "name": "Dr Sugiyama", + "fontFamily": "Dr Sugiyama, cursive", + "slug": "wp-font-lib-dr-sugiyama", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/drsugiyama/v23/HTxoL2k4N3O9n5I1boGI7abRM4-t-g7y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dr Sugiyama" + } + ] + }, + { + "name": "Duru Sans", + "fontFamily": "Duru Sans, sans-serif", + "slug": "wp-font-lib-duru-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/durusans/v20/xn7iYH8xwmSyTvEV_HOxT_fYdN-WZw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Duru Sans" + } + ] + }, + { + "name": "DynaPuff", + "fontFamily": "DynaPuff, system-ui", + "slug": "wp-font-lib-dynapuff", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSxYu6YjrSRs4wn8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "DynaPuff" + }, + { + "src": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSyQu6YjrSRs4wn8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "DynaPuff" + }, + { + "src": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS8gp6YjrSRs4wn8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "DynaPuff" + }, + { + "src": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS_Ep6YjrSRs4wn8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "DynaPuff" + } + ] + }, + { + "name": "Dynalight", + "fontFamily": "Dynalight, system-ui", + "slug": "wp-font-lib-dynalight", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dynalight/v18/1Ptsg8LOU_aOmQvTsF4ISotrDfGGxA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dynalight" + } + ] + }, + { + "name": "EB Garamond", + "fontFamily": "EB Garamond, serif", + "slug": "wp-font-lib-eb-garamond", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-6_RUA4V-e6yHgQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-2fRUA4V-e6yHgQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-NfNUA4V-e6yHgQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNUA4V-e6yHgQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-a_NUA4V-e6yHgQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7e8QI96WamXgXFI.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7eOQI96WamXgXFI.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7diR496WamXgXFI.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7dbR496WamXgXFI.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7c8R496WamXgXFI.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "EB Garamond" + } + ] + }, + { + "name": "Eagle Lake", + "fontFamily": "Eagle Lake, cursive", + "slug": "wp-font-lib-eagle-lake", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/eaglelake/v20/ptRMTiqbbuNJDOiKj9wG5O7yKQNute8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Eagle Lake" + } + ] + }, + { + "name": "East Sea Dokdo", + "fontFamily": "East Sea Dokdo, cursive", + "slug": "wp-font-lib-east-sea-dokdo", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/eastseadokdo/v20/xfuo0Wn2V2_KanASqXSZp22m05_aGavYS18y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "East Sea Dokdo" + } + ] + }, + { + "name": "Eater", + "fontFamily": "Eater, system-ui", + "slug": "wp-font-lib-eater", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/eater/v21/mtG04_FCK7bOvpu2u3FwsXsR.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Eater" + } + ] + }, + { + "name": "Economica", + "fontFamily": "Economica, sans-serif", + "slug": "wp-font-lib-economica", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/economica/v13/Qw3fZQZaHCLgIWa29ZBrMcgAAl1lfQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Economica" + }, + { + "src": "http://fonts.gstatic.com/s/economica/v13/Qw3ZZQZaHCLgIWa29ZBbM8IEIFh1fWUl.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Economica" + }, + { + "src": "http://fonts.gstatic.com/s/economica/v13/Qw3aZQZaHCLgIWa29ZBTjeckCnZ5dHw8iw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Economica" + }, + { + "src": "http://fonts.gstatic.com/s/economica/v13/Qw3EZQZaHCLgIWa29ZBbM_q4D3x9Vnksi4M7.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Economica" + } + ] + }, + { + "name": "Eczar", + "fontFamily": "Eczar, serif", + "slug": "wp-font-lib-eczar", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXHd6WqTIVKWJKWg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Eczar" + }, + { + "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXL96WqTIVKWJKWg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Eczar" + }, + { + "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXw9mWqTIVKWJKWg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Eczar" + }, + { + "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDX-tmWqTIVKWJKWg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Eczar" + }, + { + "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXndmWqTIVKWJKWg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Eczar" + } + ] + }, + { + "name": "Edu NSW ACT Foundation", + "fontFamily": "Edu NSW ACT Foundation, cursive", + "slug": "wp-font-lib-edu-nsw-act-foundation", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9tovGLeC-sfguJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Edu NSW ACT Foundation" + }, + { + "src": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9fovGLeC-sfguJ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Edu NSW ACT Foundation" + }, + { + "src": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-zpfGLeC-sfguJ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Edu NSW ACT Foundation" + }, + { + "src": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-KpfGLeC-sfguJ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Edu NSW ACT Foundation" + } + ] + }, + { + "name": "Edu QLD Beginner", + "fontFamily": "Edu QLD Beginner, cursive", + "slug": "wp-font-lib-edu-qld-beginner", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE4E3oebi6vyVWCN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Edu QLD Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE423oebi6vyVWCN.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Edu QLD Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7a2Yebi6vyVWCN.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Edu QLD Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7j2Yebi6vyVWCN.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Edu QLD Beginner" + } + ] + }, + { + "name": "Edu SA Beginner", + "fontFamily": "Edu SA Beginner, cursive", + "slug": "wp-font-lib-edu-sa-beginner", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9989fo1yBydUEDs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Edu SA Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9-09fo1yBydUEDs.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Edu SA Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9wE6fo1yBydUEDs.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Edu SA Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9zg6fo1yBydUEDs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Edu SA Beginner" + } + ] + }, + { + "name": "Edu TAS Beginner", + "fontFamily": "Edu TAS Beginner, cursive", + "slug": "wp-font-lib-edu-tas-beginner", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HwemkrBWRhvk02.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Edu TAS Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HCemkrBWRhvk02.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Edu TAS Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EufWkrBWRhvk02.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Edu TAS Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EXfWkrBWRhvk02.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Edu TAS Beginner" + } + ] + }, + { + "name": "Edu VIC WA NT Beginner", + "fontFamily": "Edu VIC WA NT Beginner, cursive", + "slug": "wp-font-lib-edu-vic-wa-nt-beginner", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OXlPmFXwnpkeGR.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Edu VIC WA NT Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OllPmFXwnpkeGR.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Edu VIC WA NT Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-NJk_mFXwnpkeGR.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Edu VIC WA NT Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-Nwk_mFXwnpkeGR.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Edu VIC WA NT Beginner" + } + ] + }, + { + "name": "El Messiri", + "fontFamily": "El Messiri, sans-serif", + "slug": "wp-font-lib-el-messiri", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXwe65ghj3OoapG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "El Messiri" + }, + { + "src": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXCe65ghj3OoapG.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "El Messiri" + }, + { + "src": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUufK5ghj3OoapG.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "El Messiri" + }, + { + "src": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUXfK5ghj3OoapG.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "El Messiri" + } + ] + }, + { + "name": "Electrolize", + "fontFamily": "Electrolize, sans-serif", + "slug": "wp-font-lib-electrolize", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/electrolize/v14/cIf5Ma1dtE0zSiGSiED7AUEGso5tQafB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Electrolize" + } + ] + }, + { + "name": "Elsie", + "fontFamily": "Elsie, system-ui", + "slug": "wp-font-lib-elsie", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/elsie/v13/BCanqZABrez54yYu9slAeLgX.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Elsie" + }, + { + "src": "http://fonts.gstatic.com/s/elsie/v13/BCaqqZABrez54x6q2-1IU6QeXSBk.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Elsie" + } + ] + }, + { + "name": "Elsie Swash Caps", + "fontFamily": "Elsie Swash Caps, system-ui", + "slug": "wp-font-lib-elsie-swash-caps", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/elsieswashcaps/v21/845DNN8xGZyVX5MVo_upKf7KnjK0ferVKGWsUo8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Elsie Swash Caps" + }, + { + "src": "http://fonts.gstatic.com/s/elsieswashcaps/v21/845ENN8xGZyVX5MVo_upKf7KnjK0RW74DG2HToawrdU.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Elsie Swash Caps" + } + ] + }, + { + "name": "Emblema One", + "fontFamily": "Emblema One, system-ui", + "slug": "wp-font-lib-emblema-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/emblemaone/v21/nKKT-GQ0F5dSY8vzG0rOEIRBHl57G_f_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Emblema One" + } + ] + }, + { + "name": "Emilys Candy", + "fontFamily": "Emilys Candy, system-ui", + "slug": "wp-font-lib-emilys-candy", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/emilyscandy/v14/2EbgL-1mD1Rnb0OGKudbk0y5r9xrX84JjA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Emilys Candy" + } + ] + }, + { + "name": "Encode Sans", + "fontFamily": "Encode Sans, sans-serif", + "slug": "wp-font-lib-encode-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHiZtWP7FJCt2c.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHjZtWP7FJCt2c.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGD_jZtWP7FJCt2c.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjZtWP7FJCt2c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGFPjZtWP7FJCt2c.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGL_kZtWP7FJCt2c.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGIbkZtWP7FJCt2c.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHkZtWP7FJCt2c.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGMjkZtWP7FJCt2c.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + } + ] + }, + { + "name": "Encode Sans Condensed", + "fontFamily": "Encode Sans Condensed, sans-serif", + "slug": "wp-font-lib-encode-sans-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_76_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-5a-JLQoFI2KR.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-SY6pByQJKnuIFA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-LY2pByQJKnuIFA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGgaWNDw8VIw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-dYypByQJKnuIFA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-WYupByQJKnuIFA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-PYqpByQJKnuIFA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-IYmpByQJKnuIFA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-BYipByQJKnuIFA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + } + ] + }, + { + "name": "Encode Sans Expanded", + "fontFamily": "Encode Sans Expanded, sans-serif", + "slug": "wp-font-lib-encode-sans-expanded", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGKQNicoAbJlw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCCNIXIwSP0XD.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCyNIXIwSP0XD.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqoiIwdAd5Ab.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWCiNIXIwSP0XD.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DSNIXIwSP0XD.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDCNIXIwSP0XD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDyNIXIwSP0XD.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDiNIXIwSP0XD.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + } + ] + }, + { + "name": "Encode Sans SC", + "fontFamily": "Encode Sans SC, sans-serif", + "slug": "wp-font-lib-encode-sans-sc", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhn8c9NOEEClIc.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhm8c9NOEEClIc.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HCZm8c9NOEEClIc.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhm8c9NOEEClIc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HEpm8c9NOEEClIc.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HKZh8c9NOEEClIc.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HJ9h8c9NOEEClIc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhh8c9NOEEClIc.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HNFh8c9NOEEClIc.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + } + ] + }, + { + "name": "Encode Sans Semi Condensed", + "fontFamily": "Encode Sans Semi Condensed, sans-serif", + "slug": "wp-font-lib-encode-sans-semi-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT6oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1T19MFtQ9jpVUA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RZ1eFHbdTgTFmr.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Q91uFHbdTgTFmr.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yR_sVPRsjp.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Rl1-FHbdTgTFmr.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RJ0OFHbdTgTFmr.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qt0eFHbdTgTFmr.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qx0uFHbdTgTFmr.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1QV0-FHbdTgTFmr.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + } + ] + }, + { + "name": "Encode Sans Semi Expanded", + "fontFamily": "Encode Sans Semi Expanded, sans-serif", + "slug": "wp-font-lib-encode-sans-semi-expanded", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8xOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM-41KwrlKXeOEA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM0IUCyDLJX6XCWU.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyYXCyDLJX6XCWU.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC4o_LyjgOXc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM34WCyDLJX6XCWU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM1IRCyDLJX6XCWU.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMzYQCyDLJX6XCWU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyoTCyDLJX6XCWU.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMw4SCyDLJX6XCWU.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + } + ] + }, + { + "name": "Engagement", + "fontFamily": "Engagement, cursive", + "slug": "wp-font-lib-engagement", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/engagement/v22/x3dlckLDZbqa7RUs9MFVXNossybsHQI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Engagement" + } + ] + }, + { + "name": "Englebert", + "fontFamily": "Englebert, sans-serif", + "slug": "wp-font-lib-englebert", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/englebert/v17/xn7iYH8w2XGrC8AR4HSxT_fYdN-WZw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Englebert" + } + ] + }, + { + "name": "Enriqueta", + "fontFamily": "Enriqueta, serif", + "slug": "wp-font-lib-enriqueta", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/enriqueta/v15/goksH6L7AUFrRvV44HVTS0CjkP1Yog.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Enriqueta" + }, + { + "src": "http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVrv2mHmNZEq6TTFw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Enriqueta" + }, + { + "src": "http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVrk26HmNZEq6TTFw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Enriqueta" + }, + { + "src": "http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVr92-HmNZEq6TTFw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Enriqueta" + } + ] + }, + { + "name": "Ephesis", + "fontFamily": "Ephesis, cursive", + "slug": "wp-font-lib-ephesis", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ephesis/v7/uU9PCBUS8IerL2VG7xPb3vyHmlI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ephesis" + } + ] + }, + { + "name": "Epilogue", + "fontFamily": "Epilogue, sans-serif", + "slug": "wp-font-lib-epilogue", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDLiDJXVigHPVA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDPiDJXVigHPVA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXbjPiDJXVigHPVA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDPiDJXVigHPVA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXAjPiDJXVigHPVA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX7jTiDJXVigHPVA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX1zTiDJXVigHPVA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDTiDJXVigHPVA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXmTTiDJXVigHPVA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKTp_RqATfVHNU.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKT5_RqATfVHNU.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HBUT5_RqATfVHNU.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKT5_RqATfVHNU.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HA4T5_RqATfVHNU.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDUSJ_RqATfVHNU.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDtSJ_RqATfVHNU.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKSJ_RqATfVHNU.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCjSJ_RqATfVHNU.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Epilogue" + } + ] + }, + { + "name": "Erica One", + "fontFamily": "Erica One, system-ui", + "slug": "wp-font-lib-erica-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ericaone/v23/WBLnrEXccV9VGrOKmGD1W0_MJMGxiQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Erica One" + } + ] + }, + { + "name": "Esteban", + "fontFamily": "Esteban, serif", + "slug": "wp-font-lib-esteban", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/esteban/v15/r05bGLZE-bdGdN-GdOuD5jokU8E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Esteban" + } + ] + }, + { + "name": "Estonia", + "fontFamily": "Estonia, cursive", + "slug": "wp-font-lib-estonia", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/estonia/v9/7Au_p_4ijSecA1yHCCL8zkwMIFg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Estonia" + } + ] + }, + { + "name": "Euphoria Script", + "fontFamily": "Euphoria Script, cursive", + "slug": "wp-font-lib-euphoria-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/euphoriascript/v16/mFTpWb0X2bLb_cx6To2B8GpKoD5ak_ZT1D8x7Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Euphoria Script" + } + ] + }, + { + "name": "Ewert", + "fontFamily": "Ewert, system-ui", + "slug": "wp-font-lib-ewert", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ewert/v21/va9I4kzO2tFODYBvS-J3kbDP.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ewert" + } + ] + }, + { + "name": "Exo", + "fontFamily": "Exo, sans-serif", + "slug": "wp-font-lib-exo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM2CwNsOl4p5Is.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4tM3CwNsOl4p5Is.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4g03CwNsOl4p5Is.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3CwNsOl4p5Is.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4mE3CwNsOl4p5Is.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4o0wCwNsOl4p5Is.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4rQwCwNsOl4p5Is.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4tMwCwNsOl4p5Is.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4vowCwNsOl4p5Is.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t040FmPnws9Iu-uA.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0Y0BmPnws9Iu-uA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0vUBmPnws9Iu-uA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t040BmPnws9Iu-uA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t00UBmPnws9Iu-uA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0PUdmPnws9Iu-uA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0BEdmPnws9Iu-uA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0Y0dmPnws9Iu-uA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0SkdmPnws9Iu-uA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Exo" + } + ] + }, + { + "name": "Exo 2", + "fontFamily": "Exo 2, sans-serif", + "slug": "wp-font-lib-exo-2", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvOcPtq-rpvLpQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvKcPtq-rpvLpQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8j4PKcPtq-rpvLpQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvKcPtq-rpvLpQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jjPKcPtq-rpvLpQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jYPWcPtq-rpvLpQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jWfWcPtq-rpvLpQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvWcPtq-rpvLpQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jF_WcPtq-rpvLpQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fNC6jJ7bpQBL.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0fdC6jJ7bpQBL.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drEqfdC6jJ7bpQBL.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fdC6jJ7bpQBL.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drFGfdC6jJ7bpQBL.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGqetC6jJ7bpQBL.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGTetC6jJ7bpQBL.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0etC6jJ7bpQBL.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drHdetC6jJ7bpQBL.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Exo 2" + } + ] + }, + { + "name": "Expletus Sans", + "fontFamily": "Expletus Sans, system-ui", + "slug": "wp-font-lib-expletus-sans", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSY2s1oFQTcXfMm.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Expletus Sans" + }, + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSq2s1oFQTcXfMm.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Expletus Sans" + }, + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaRG3c1oFQTcXfMm.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Expletus Sans" + }, + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaR_3c1oFQTcXfMm.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Expletus Sans" + }, + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmSUrHwD-WOMmKKY.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Expletus Sans" + }, + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmRcrHwD-WOMmKKY.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Expletus Sans" + }, + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmfssHwD-WOMmKKY.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Expletus Sans" + }, + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmcIsHwD-WOMmKKY.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Expletus Sans" + } + ] + }, + { + "name": "Explora", + "fontFamily": "Explora, cursive", + "slug": "wp-font-lib-explora", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/explora/v7/tsstApxFfjUH4wrvc1qPonC3vqc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Explora" + } + ] + }, + { + "name": "Fahkwang", + "fontFamily": "Fahkwang, sans-serif", + "slug": "wp-font-lib-fahkwang", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJHmZlRFipxkwjx.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgHFQHC5Tlhjxdw4.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIjmplRFipxkwjx.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgBVTHC5Tlhjxdw4.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noax6Uj3zpmBOgbNpNqPsr1ZPTZ4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa36Uj3zpmBOgbNpOqNuLl7OCZ4ihE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJ7m5lRFipxkwjx.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgE1SHC5Tlhjxdw4.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJXnJlRFipxkwjx.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgGFVHC5Tlhjxdw4.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIznZlRFipxkwjx.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgAVUHC5Tlhjxdw4.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Fahkwang" + } + ] + }, + { + "name": "Familjen Grotesk", + "fontFamily": "Familjen Grotesk, sans-serif", + "slug": "wp-font-lib-familjen-grotesk", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMGJaSztc1jcEYq2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Familjen Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMG7aSztc1jcEYq2.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Familjen Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFXbiztc1jcEYq2.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Familjen Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFubiztc1jcEYq2.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Familjen Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKsSueVz-FJq2Rv4.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Familjen Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKvaueVz-FJq2Rv4.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Familjen Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKhqpeVz-FJq2Rv4.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Familjen Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKiOpeVz-FJq2Rv4.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Familjen Grotesk" + } + ] + }, + { + "name": "Fanwood Text", + "fontFamily": "Fanwood Text, serif", + "slug": "wp-font-lib-fanwood-text", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fanwoodtext/v15/3XFtErwl05Ad_vSCF6Fq7xXGRdbY1P1Sbg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fanwood Text" + }, + { + "src": "http://fonts.gstatic.com/s/fanwoodtext/v15/3XFzErwl05Ad_vSCF6Fq7xX2R9zc9vhCblye.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fanwood Text" + } + ] + }, + { + "name": "Farro", + "fontFamily": "Farro, sans-serif", + "slug": "wp-font-lib-farro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3hNJ6-WkJUQUq7.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Farro" + }, + { + "src": "http://fonts.gstatic.com/s/farro/v14/i7dEIFl3byGNHZVNHLq2cV5d.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Farro" + }, + { + "src": "http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa25NZ6-WkJUQUq7.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Farro" + }, + { + "src": "http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3xM56-WkJUQUq7.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Farro" + } + ] + }, + { + "name": "Farsan", + "fontFamily": "Farsan, system-ui", + "slug": "wp-font-lib-farsan", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/farsan/v19/VEMwRoJ0vY_zsyz62q-pxDX9rQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Farsan" + } + ] + }, + { + "name": "Fascinate", + "fontFamily": "Fascinate, system-ui", + "slug": "wp-font-lib-fascinate", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fascinate/v21/z7NWdRrufC8XJK0IIEli1LbQRPyNrw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fascinate" + } + ] + }, + { + "name": "Fascinate Inline", + "fontFamily": "Fascinate Inline, system-ui", + "slug": "wp-font-lib-fascinate-inline", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fascinateinline/v22/jVyR7mzzB3zc-jp6QCAu60poNqIy1g3CfRXxWZQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fascinate Inline" + } + ] + }, + { + "name": "Faster One", + "fontFamily": "Faster One, system-ui", + "slug": "wp-font-lib-faster-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fasterone/v19/H4ciBXCHmdfClFb-vWhfyLuShq63czE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Faster One" + } + ] + }, + { + "name": "Fasthand", + "fontFamily": "Fasthand, system-ui", + "slug": "wp-font-lib-fasthand", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fasthand/v26/0yb9GDohyKTYn_ZEESkuYkw2rQg1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fasthand" + } + ] + }, + { + "name": "Fauna One", + "fontFamily": "Fauna One, serif", + "slug": "wp-font-lib-fauna-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/faunaone/v15/wlpzgwTPBVpjpCuwkuEx2UxLYClOCg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fauna One" + } + ] + }, + { + "name": "Faustina", + "fontFamily": "Faustina, serif", + "slug": "wp-font-lib-faustina", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHls3IEvGVWWe8tbEg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsgoEvGVWWe8tbEg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlssIEvGVWWe8tbEg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsXIYvGVWWe8tbEg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsZYYvGVWWe8tbEg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsAoYvGVWWe8tbEg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsKZWl-SWc5LEnoF.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsLHWl-SWc5LEnoF.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsL1Wl-SWc5LEnoF.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIZXV-SWc5LEnoF.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIgXV-SWc5LEnoF.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsJHXV-SWc5LEnoF.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Faustina" + } + ] + }, + { + "name": "Federant", + "fontFamily": "Federant, system-ui", + "slug": "wp-font-lib-federant", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/federant/v25/2sDdZGNfip_eirT0_U0jRUG0AqUc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Federant" + } + ] + }, + { + "name": "Federo", + "fontFamily": "Federo, sans-serif", + "slug": "wp-font-lib-federo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/federo/v19/iJWFBX-cbD_ETsbmjVOe2WTG7Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Federo" + } + ] + }, + { + "name": "Felipa", + "fontFamily": "Felipa, cursive", + "slug": "wp-font-lib-felipa", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/felipa/v20/FwZa7-owz1Eu4F_wSNSEwM2zpA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Felipa" + } + ] + }, + { + "name": "Fenix", + "fontFamily": "Fenix, serif", + "slug": "wp-font-lib-fenix", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fenix/v20/XoHo2YL_S7-g5ostKzAFvs8o.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fenix" + } + ] + }, + { + "name": "Festive", + "fontFamily": "Festive, cursive", + "slug": "wp-font-lib-festive", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/festive/v7/cY9Ffj6KX1xcoDWhFtfgy9HTkak.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Festive" + } + ] + }, + { + "name": "Figtree", + "fontFamily": "Figtree, sans-serif", + "slug": "wp-font-lib-figtree", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_chQF5ewkEU4HTy.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5ewkEU4HTy.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5ewkEU4HTy.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15ewkEU4HTy.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_eYR15ewkEU4HTy.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_f_R15ewkEU4HTy.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_fWR15ewkEU4HTy.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A-gdyEU25WTybO8.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A7YdyEU25WTybO8.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A4QdyEU25WTybO8.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A2gayEU25WTybO8.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A1EayEU25WTybO8.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3AzYayEU25WTybO8.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3Ax8ayEU25WTybO8.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Figtree" + } + ] + }, + { + "name": "Finger Paint", + "fontFamily": "Finger Paint, system-ui", + "slug": "wp-font-lib-finger-paint", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fingerpaint/v15/0QInMXVJ-o-oRn_7dron8YWO85bS8ANesw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Finger Paint" + } + ] + }, + { + "name": "Finlandica", + "fontFamily": "Finlandica, sans-serif", + "slug": "wp-font-lib-finlandica", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19A7rEjx9i5ss3a3.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Finlandica" + }, + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19AJrEjx9i5ss3a3.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Finlandica" + }, + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dlq0jx9i5ss3a3.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Finlandica" + }, + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dcq0jx9i5ss3a3.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Finlandica" + }, + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz76Cy_CpOtma3uNQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Finlandica" + }, + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz75Ky_CpOtma3uNQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Finlandica" + }, + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz7361_CpOtma3uNQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Finlandica" + }, + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz70e1_CpOtma3uNQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Finlandica" + } + ] + }, + { + "name": "Fira Code", + "fontFamily": "Fira Code, monospace", + "slug": "wp-font-lib-fira-code", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_GNsFVfxN87gsj0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Fira Code" + }, + { + "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sFVfxN87gsj0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fira Code" + }, + { + "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_A9sFVfxN87gsj0.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fira Code" + }, + { + "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_ONrFVfxN87gsj0.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Fira Code" + }, + { + "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_NprFVfxN87gsj0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fira Code" + } + ] + }, + { + "name": "Fira Mono", + "fontFamily": "Fira Mono, monospace", + "slug": "wp-font-lib-fira-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/firamono/v14/N0bX2SlFPv1weGeLZDtQIfTTkdbJYA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fira Mono" + }, + { + "src": "http://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDto1d33mf3VaZBRBQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fira Mono" + }, + { + "src": "http://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDtondv3mf3VaZBRBQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fira Mono" + } + ] + }, + { + "name": "Fira Sans", + "fontFamily": "Fira Sans, sans-serif", + "slug": "wp-font-lib-fira-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9C4kDNxMZdWfMOD5Vn9IjOazP3dUTP.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9A4kDNxMZdWfMOD5VvkrCqYTfVcFTPj0s.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnWKnuQR37fF3Wlg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrAGQBf_XljGllLX.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnPKruQR37fF3Wlg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBiQxf_XljGllLX.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9E4kDNxMZdWfMOD5VfkILKSTbndQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9C4kDNxMZdWfMOD5VvkojOazP3dUTP.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnZKvuQR37fF3Wlg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrA6Qhf_XljGllLX.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnSKzuQR37fF3Wlg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrAWRRf_XljGllLX.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnLK3uQR37fF3Wlg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrByRBf_XljGllLX.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnMK7uQR37fF3Wlg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBuRxf_XljGllLX.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnFK_uQR37fF3Wlg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBKRhf_XljGllLX.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + } + ] + }, + { + "name": "Fira Sans Condensed", + "fontFamily": "Fira Sans Condensed, sans-serif", + "slug": "wp-font-lib-fira-sans-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarWZXtqOlQfx9CjA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOtEADFm8hSaQTFG18FErVhsC9x-tarUfPVzONUXRpSjJcu.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWTnMiMN-cxZblY4.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVYMJ0dzRehY43EA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWV3PiMN-cxZblY4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVBMF0dzRehY43EA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfHnrMtVbx8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarUfPtqOlQfx9CjA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWQXOiMN-cxZblY4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVXMB0dzRehY43EA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWSnJiMN-cxZblY4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVcMd0dzRehY43EA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWU3IiMN-cxZblY4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVFMZ0dzRehY43EA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWVHLiMN-cxZblY4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVCMV0dzRehY43EA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWXXKiMN-cxZblY4.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVLMR0dzRehY43EA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + } + ] + }, + { + "name": "Fira Sans Extra Condensed", + "fontFamily": "Fira Sans Extra Condensed, sans-serif", + "slug": "wp-font-lib-fira-sans-extra-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3Zyuv1WarE9ncg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPOcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqW21-ejkp3cn22.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3TCPn3-0oEZ-a2Q.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWd36-pGR7e2SvJQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3VSMn3-0oEZ-a2Q.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWE32-pGR7e2SvJQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5fiku3efvE8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fquv1WarE9ncg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3QyNn3-0oEZ-a2Q.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWS3y-pGR7e2SvJQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3SCKn3-0oEZ-a2Q.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWZ3u-pGR7e2SvJQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3USLn3-0oEZ-a2Q.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWA3q-pGR7e2SvJQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3ViIn3-0oEZ-a2Q.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWH3m-pGR7e2SvJQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3XyJn3-0oEZ-a2Q.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWO3i-pGR7e2SvJQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + } + ] + }, + { + "name": "Fjalla One", + "fontFamily": "Fjalla One, sans-serif", + "slug": "wp-font-lib-fjalla-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fjallaone/v15/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fjalla One" + } + ] + }, + { + "name": "Fjord One", + "fontFamily": "Fjord One, serif", + "slug": "wp-font-lib-fjord-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fjordone/v21/zOL-4pbEnKBY_9S1jNKr6e5As-FeiQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fjord One" + } + ] + }, + { + "name": "Flamenco", + "fontFamily": "Flamenco, system-ui", + "slug": "wp-font-lib-flamenco", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/flamenco/v18/neIPzCehqYguo67ssZ0qNIkyepH9qGsf.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Flamenco" + }, + { + "src": "http://fonts.gstatic.com/s/flamenco/v18/neIIzCehqYguo67ssaWGHK06UY30.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Flamenco" + } + ] + }, + { + "name": "Flavors", + "fontFamily": "Flavors, system-ui", + "slug": "wp-font-lib-flavors", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/flavors/v22/FBV2dDrhxqmveJTpbkzlNqkG9UY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Flavors" + } + ] + }, + { + "name": "Fleur De Leah", + "fontFamily": "Fleur De Leah, cursive", + "slug": "wp-font-lib-fleur-de-leah", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fleurdeleah/v7/AYCNpXX7ftYZWLhv9UmPJTMC5vat4I_Gdq0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fleur De Leah" + } + ] + }, + { + "name": "Flow Block", + "fontFamily": "Flow Block, system-ui", + "slug": "wp-font-lib-flow-block", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/flowblock/v7/wlp0gwfPCEB65UmTk-d6-WZlbCBXE_I.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Flow Block" + } + ] + }, + { + "name": "Flow Circular", + "fontFamily": "Flow Circular, system-ui", + "slug": "wp-font-lib-flow-circular", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/flowcircular/v7/lJwB-pc4j2F-H8YKuyvfxdZ45ifpWdr2rIg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Flow Circular" + } + ] + }, + { + "name": "Flow Rounded", + "fontFamily": "Flow Rounded, system-ui", + "slug": "wp-font-lib-flow-rounded", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/flowrounded/v7/-zki91mtwsU9qlLiGwD4oQX3oZX-Xup87g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Flow Rounded" + } + ] + }, + { + "name": "Foldit", + "fontFamily": "Foldit, system-ui", + "slug": "wp-font-lib-foldit", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XpANmapUYLHkN80.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XhAMmapUYLHkN80.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8Xs4MmapUYLHkN80.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XpAMmapUYLHkN80.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XqIMmapUYLHkN80.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8Xk4LmapUYLHkN80.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XncLmapUYLHkN80.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XhALmapUYLHkN80.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XjkLmapUYLHkN80.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Foldit" + } + ] + }, + { + "name": "Fondamento", + "fontFamily": "Fondamento, cursive", + "slug": "wp-font-lib-fondamento", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fondamento/v17/4UaHrEJGsxNmFTPDnkaJx63j5pN1MwI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fondamento" + }, + { + "src": "http://fonts.gstatic.com/s/fondamento/v17/4UaFrEJGsxNmFTPDnkaJ96_p4rFwIwJePw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fondamento" + } + ] + }, + { + "name": "Fontdiner Swanky", + "fontFamily": "Fontdiner Swanky, system-ui", + "slug": "wp-font-lib-fontdiner-swanky", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fontdinerswanky/v19/ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uEfKiGvxts.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fontdiner Swanky" + } + ] + }, + { + "name": "Forum", + "fontFamily": "Forum, system-ui", + "slug": "wp-font-lib-forum", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/forum/v16/6aey4Ky-Vb8Ew_IWMJMa3mnT.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Forum" + } + ] + }, + { + "name": "Fragment Mono", + "fontFamily": "Fragment Mono, monospace", + "slug": "wp-font-lib-fragment-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fragmentmono/v1/4iCr6K5wfMRRjxp0DA6-2CLnN4RNh4UI_1U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fragment Mono" + }, + { + "src": "http://fonts.gstatic.com/s/fragmentmono/v1/4iC16K5wfMRRjxp0DA6-2CLnB4ZHg6cN71URtQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fragment Mono" + } + ] + }, + { + "name": "Francois One", + "fontFamily": "Francois One, sans-serif", + "slug": "wp-font-lib-francois-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/francoisone/v21/_Xmr-H4zszafZw3A-KPSZutNxgKQu_avAg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Francois One" + } + ] + }, + { + "name": "Frank Ruhl Libre", + "fontFamily": "Frank Ruhl Libre, serif", + "slug": "wp-font-lib-frank-ruhl-libre", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw6bYVqQPxR2EUR_.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Frank Ruhl Libre" + }, + { + "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw7FYVqQPxR2EUR_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Frank Ruhl Libre" + }, + { + "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw73YVqQPxR2EUR_.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Frank Ruhl Libre" + }, + { + "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw4bZlqQPxR2EUR_.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Frank Ruhl Libre" + }, + { + "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw4iZlqQPxR2EUR_.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Frank Ruhl Libre" + }, + { + "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw5FZlqQPxR2EUR_.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Frank Ruhl Libre" + }, + { + "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw5sZlqQPxR2EUR_.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Frank Ruhl Libre" + } + ] + }, + { + "name": "Fraunces", + "fontFamily": "Fraunces, serif", + "slug": "wp-font-lib-fraunces", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxqjDvTShUtWNg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxujDvTShUtWNg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIc6RujDvTShUtWNg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxujDvTShUtWNg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIchRujDvTShUtWNg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcaRyjDvTShUtWNg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcUByjDvTShUtWNg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxyjDvTShUtWNg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcHhyjDvTShUtWNg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTP7Wp05GNi3k.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLTf7Wp05GNi3k.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1gVTf7Wp05GNi3k.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTf7Wp05GNi3k.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1h5Tf7Wp05GNi3k.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1iVSv7Wp05GNi3k.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1isSv7Wp05GNi3k.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLSv7Wp05GNi3k.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jiSv7Wp05GNi3k.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Fraunces" + } + ] + }, + { + "name": "Freckle Face", + "fontFamily": "Freckle Face, system-ui", + "slug": "wp-font-lib-freckle-face", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/freckleface/v15/AMOWz4SXrmKHCvXTohxY-YI0U1K2w9lb4g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Freckle Face" + } + ] + }, + { + "name": "Fredericka the Great", + "fontFamily": "Fredericka the Great, system-ui", + "slug": "wp-font-lib-fredericka-the-great", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/frederickathegreat/v16/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Skz7Ylch2L.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fredericka the Great" + } + ] + }, + { + "name": "Fredoka", + "fontFamily": "Fredoka, sans-serif", + "slug": "wp-font-lib-fredoka", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OryLMFuOLlNldbw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Fredoka" + }, + { + "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3O8SLMFuOLlNldbw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fredoka" + }, + { + "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OwyLMFuOLlNldbw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fredoka" + }, + { + "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OLyXMFuOLlNldbw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Fredoka" + }, + { + "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OFiXMFuOLlNldbw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fredoka" + } + ] + }, + { + "name": "Freehand", + "fontFamily": "Freehand, system-ui", + "slug": "wp-font-lib-freehand", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/freehand/v27/cIf-Ma5eqk01VjKTgAmBTmUOmZJk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Freehand" + } + ] + }, + { + "name": "Fresca", + "fontFamily": "Fresca, sans-serif", + "slug": "wp-font-lib-fresca", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fresca/v18/6ae94K--SKgCzbM2Gr0W13DKPA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fresca" + } + ] + }, + { + "name": "Frijole", + "fontFamily": "Frijole, system-ui", + "slug": "wp-font-lib-frijole", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/frijole/v14/uU9PCBUR8oakM2BQ7xPb3vyHmlI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Frijole" + } + ] + }, + { + "name": "Fruktur", + "fontFamily": "Fruktur, system-ui", + "slug": "wp-font-lib-fruktur", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fruktur/v27/SZc53FHsOru5QYsMfz3GkUrS8DI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fruktur" + }, + { + "src": "http://fonts.gstatic.com/s/fruktur/v27/SZc73FHsOru5QYsMTz_MlWjX4DJXgQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fruktur" + } + ] + }, + { + "name": "Fugaz One", + "fontFamily": "Fugaz One, system-ui", + "slug": "wp-font-lib-fugaz-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fugazone/v15/rax_HiWKp9EAITukFslMBBJek0vA8A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fugaz One" + } + ] + }, + { + "name": "Fuggles", + "fontFamily": "Fuggles, cursive", + "slug": "wp-font-lib-fuggles", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fuggles/v9/k3kQo8UEJOlD1hpOTd7iL0nAMaM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fuggles" + } + ] + }, + { + "name": "Fuzzy Bubbles", + "fontFamily": "Fuzzy Bubbles, cursive", + "slug": "wp-font-lib-fuzzy-bubbles", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fuzzybubbles/v5/6qLGKZMbrgv9pwtjPEVNV0F2NnP5Zxsreko.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fuzzy Bubbles" + }, + { + "src": "http://fonts.gstatic.com/s/fuzzybubbles/v5/6qLbKZMbrgv9pwtjPEVNV0F2Ds_WQxMAZkM1pn4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fuzzy Bubbles" + } + ] + }, + { + "name": "GFS Didot", + "fontFamily": "GFS Didot, serif", + "slug": "wp-font-lib-gfs-didot", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gfsdidot/v15/Jqzh5TybZ9vZMWFssvwiF-fGFSCGAA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "GFS Didot" + } + ] + }, + { + "name": "GFS Neohellenic", + "fontFamily": "GFS Neohellenic, sans-serif", + "slug": "wp-font-lib-gfs-neohellenic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIRdiDOrfiq0b7R8O1Iw9WLcY5TLahP46UDUw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "GFS Neohellenic" + }, + { + "src": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QITdiDOrfiq0b7R8O1Iw9WLcY5jL6JLwaATU91X.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "GFS Neohellenic" + }, + { + "src": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIUdiDOrfiq0b7R8O1Iw9WLcY5rkYdr644fWsRO9w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "GFS Neohellenic" + }, + { + "src": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIWdiDOrfiq0b7R8O1Iw9WLcY5jL5r37oQbeMFe985V.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "GFS Neohellenic" + } + ] + }, + { + "name": "Gabriela", + "fontFamily": "Gabriela, serif", + "slug": "wp-font-lib-gabriela", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gabriela/v17/qkBWXvsO6sreR8E-b_m-zrpHmRzC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gabriela" + } + ] + }, + { + "name": "Gaegu", + "fontFamily": "Gaegu, cursive", + "slug": "wp-font-lib-gaegu", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gaegu/v15/TuGSUVB6Up9NU57nifw74sdtBk0x.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Gaegu" + }, + { + "src": "http://fonts.gstatic.com/s/gaegu/v15/TuGfUVB6Up9NU6ZLodgzydtk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gaegu" + }, + { + "src": "http://fonts.gstatic.com/s/gaegu/v15/TuGSUVB6Up9NU573jvw74sdtBk0x.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gaegu" + } + ] + }, + { + "name": "Gafata", + "fontFamily": "Gafata, sans-serif", + "slug": "wp-font-lib-gafata", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gafata/v16/XRXV3I6Cn0VJKon4MuyAbsrVcA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gafata" + } + ] + }, + { + "name": "Gajraj One", + "fontFamily": "Gajraj One, system-ui", + "slug": "wp-font-lib-gajraj-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gajrajone/v3/1cX2aUDCDpXsuWVb1jIjr1GqhcitzeM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gajraj One" + } + ] + }, + { + "name": "Galada", + "fontFamily": "Galada, system-ui", + "slug": "wp-font-lib-galada", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/galada/v14/H4cmBXyGmcjXlUX-8iw-4Lqggw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Galada" + } + ] + }, + { + "name": "Galdeano", + "fontFamily": "Galdeano, sans-serif", + "slug": "wp-font-lib-galdeano", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/galdeano/v22/uU9MCBoQ4YOqOW1boDPx8PCOg0uX.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Galdeano" + } + ] + }, + { + "name": "Galindo", + "fontFamily": "Galindo, system-ui", + "slug": "wp-font-lib-galindo", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/galindo/v20/HI_KiYMeLqVKqwyuQ5HiRp-dhpQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Galindo" + } + ] + }, + { + "name": "Gamja Flower", + "fontFamily": "Gamja Flower, cursive", + "slug": "wp-font-lib-gamja-flower", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gamjaflower/v20/6NUR8FiKJg-Pa0rM6uN40Z4kyf9Fdty2ew.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gamja Flower" + } + ] + }, + { + "name": "Gantari", + "fontFamily": "Gantari, sans-serif", + "slug": "wp-font-lib-gantari", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOz3wa5GD2qnm.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gOj3wa5GD2qnm.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g1-Oj3wa5GD2qnm.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOj3wa5GD2qnm.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0SOj3wa5GD2qnm.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3-PT3wa5GD2qnm.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3HPT3wa5GD2qnm.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gPT3wa5GD2qnm.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2JPT3wa5GD2qnm.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWyYZWh37nmpWc.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVWzYZWh37nmpWc.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeYuzYZWh37nmpWc.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWzYZWh37nmpWc.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeeezYZWh37nmpWc.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeQu0YZWh37nmpWc.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeTK0YZWh37nmpWc.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVW0YZWh37nmpWc.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeXy0YZWh37nmpWc.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Gantari" + } + ] + }, + { + "name": "Gayathri", + "fontFamily": "Gayathri, sans-serif", + "slug": "wp-font-lib-gayathri", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gayathri/v15/MCoWzAb429DbBilWLLhc-pvSA_gA2W8.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Gayathri" + }, + { + "src": "http://fonts.gstatic.com/s/gayathri/v15/MCoQzAb429DbBilWLIA48J_wBugA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gayathri" + }, + { + "src": "http://fonts.gstatic.com/s/gayathri/v15/MCoXzAb429DbBilWLLiE37v4LfQJwHbn.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gayathri" + } + ] + }, + { + "name": "Gelasio", + "fontFamily": "Gelasio, serif", + "slug": "wp-font-lib-gelasio", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf9MaFfvUQxTTqSxCmrYGkHgIs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gelasio" + }, + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf_MaFfvUQxTTqS9CuhZEsCkIt9QQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Gelasio" + }, + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_N2CRGEsnIJkWL4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Gelasio" + }, + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZkGImmKBhSL7Y1Q.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Gelasio" + }, + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_PGFRGEsnIJkWL4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Gelasio" + }, + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZvGUmmKBhSL7Y1Q.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Gelasio" + }, + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_JWERGEsnIJkWL4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gelasio" + }, + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZ2GQmmKBhSL7Y1Q.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Gelasio" + } + ] + }, + { + "name": "Gemunu Libre", + "fontFamily": "Gemunu Libre, sans-serif", + "slug": "wp-font-lib-gemunu-libre", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iJPvSLeMXPIWA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Gemunu Libre" + }, + { + "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp00aJPvSLeMXPIWA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Gemunu Libre" + }, + { + "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0xiJPvSLeMXPIWA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gemunu Libre" + }, + { + "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0yqJPvSLeMXPIWA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Gemunu Libre" + }, + { + "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp08aOPvSLeMXPIWA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Gemunu Libre" + }, + { + "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0_-OPvSLeMXPIWA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gemunu Libre" + }, + { + "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iOPvSLeMXPIWA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Gemunu Libre" + } + ] + }, + { + "name": "Genos", + "fontFamily": "Genos, sans-serif", + "slug": "wp-font-lib-genos", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVqknorUK6K7ZsAg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVKkjorUK6K7ZsAg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwV9EjorUK6K7ZsAg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVqkjorUK6K7ZsAg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVmEjorUK6K7ZsAg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVdE_orUK6K7ZsAg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVTU_orUK6K7ZsAg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVKk_orUK6K7ZsAg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVA0_orUK6K7ZsAg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA70i-CbN8Ard7.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA7ki-CbN8Ard7.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgte7ki-CbN8Ard7.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA7ki-CbN8Ard7.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsy7ki-CbN8Ard7.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgve6Ui-CbN8Ard7.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgvn6Ui-CbN8Ard7.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA6Ui-CbN8Ard7.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgup6Ui-CbN8Ard7.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Genos" + } + ] + }, + { + "name": "Gentium Book Plus", + "fontFamily": "Gentium Book Plus, serif", + "slug": "wp-font-lib-gentium-book-plus", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFL2-RHBgUK5fbjKxRpbBtJPyRpofKfdbLOrdPV.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gentium Book Plus" + }, + { + "src": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFN2-RHBgUK5fbjKxRpbBtJPyRpocKdf7bsqMPVZb4.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Gentium Book Plus" + }, + { + "src": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFO2-RHBgUK5fbjKxRpbBtJPyRpocojWpbGhs_cfKe1.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gentium Book Plus" + }, + { + "src": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFA2-RHBgUK5fbjKxRpbBtJPyRpocKdRwrDjMv-ebe1Els.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Gentium Book Plus" + } + ] + }, + { + "name": "Gentium Plus", + "fontFamily": "Gentium Plus, serif", + "slug": "wp-font-lib-gentium-plus", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gentiumplus/v2/Iurd6Ytw-oSPaZ00r2bNe8VpjJtM6G0t9w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gentium Plus" + }, + { + "src": "http://fonts.gstatic.com/s/gentiumplus/v2/IurD6Ytw-oSPaZ00r2bNe8VZjpFIymg9957e.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Gentium Plus" + }, + { + "src": "http://fonts.gstatic.com/s/gentiumplus/v2/IurC6Ytw-oSPaZ00r2bNe8VRMLRo4EYx_ofHsw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gentium Plus" + }, + { + "src": "http://fonts.gstatic.com/s/gentiumplus/v2/IurA6Ytw-oSPaZ00r2bNe8VZjqn05Uw13ILXs-h6.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Gentium Plus" + } + ] + }, + { + "name": "Geo", + "fontFamily": "Geo, sans-serif", + "slug": "wp-font-lib-geo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/geo/v19/CSRz4zRZlufVL3BmQjlCbQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Geo" + }, + { + "src": "http://fonts.gstatic.com/s/geo/v19/CSRx4zRZluflLXpiYDxSbf8r.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Geo" + } + ] + }, + { + "name": "Geologica", + "fontFamily": "Geologica, sans-serif", + "slug": "wp-font-lib-geologica", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqDx_qQ-MYAXWnqFs.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Geologica" + }, + { + "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD5_rQ-MYAXWnqFs.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Geologica" + }, + { + "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD0HrQ-MYAXWnqFs.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Geologica" + }, + { + "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqDx_rQ-MYAXWnqFs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Geologica" + }, + { + "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqDy3rQ-MYAXWnqFs.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Geologica" + }, + { + "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD8HsQ-MYAXWnqFs.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Geologica" + }, + { + "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD_jsQ-MYAXWnqFs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Geologica" + }, + { + "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD5_sQ-MYAXWnqFs.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Geologica" + }, + { + "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD7bsQ-MYAXWnqFs.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Geologica" + } + ] + }, + { + "name": "Georama", + "fontFamily": "Georama, sans-serif", + "slug": "wp-font-lib-georama", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvktmQsL5_tgbg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mvgtmQsL5_tgbg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5RPgtmQsL5_tgbg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvgtmQsL5_tgbg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5KPgtmQsL5_tgbg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5xP8tmQsL5_tgbg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5_f8tmQsL5_tgbg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mv8tmQsL5_tgbg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5s_8tmQsL5_tgbg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2wEPxf5wbh3T.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF2gEPxf5wbh3T.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rub2gEPxf5wbh3T.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2gEPxf5wbh3T.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rv32gEPxf5wbh3T.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsb3QEPxf5wbh3T.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsi3QEPxf5wbh3T.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF3QEPxf5wbh3T.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rts3QEPxf5wbh3T.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Georama" + } + ] + }, + { + "name": "Geostar", + "fontFamily": "Geostar, system-ui", + "slug": "wp-font-lib-geostar", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/geostar/v22/sykz-yx4n701VLOftSq9-trEvlQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Geostar" + } + ] + }, + { + "name": "Geostar Fill", + "fontFamily": "Geostar Fill, system-ui", + "slug": "wp-font-lib-geostar-fill", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/geostarfill/v22/AMOWz4SWuWiXFfjEohxQ9os0U1K2w9lb4g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Geostar Fill" + } + ] + }, + { + "name": "Germania One", + "fontFamily": "Germania One, system-ui", + "slug": "wp-font-lib-germania-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/germaniaone/v20/Fh4yPjrqIyv2ucM2qzBjeS3ezAJONau6ew.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Germania One" + } + ] + }, + { + "name": "Gideon Roman", + "fontFamily": "Gideon Roman, system-ui", + "slug": "wp-font-lib-gideon-roman", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gideonroman/v8/e3tmeuGrVOys8sxzZgWlmXoge0PWovdU4w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gideon Roman" + } + ] + }, + { + "name": "Gidugu", + "fontFamily": "Gidugu, sans-serif", + "slug": "wp-font-lib-gidugu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gidugu/v21/L0x8DFMkk1Uf6w3RvPCmRSlUig.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gidugu" + } + ] + }, + { + "name": "Gilda Display", + "fontFamily": "Gilda Display, serif", + "slug": "wp-font-lib-gilda-display", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gildadisplay/v14/t5tmIRoYMoaYG0WEOh7HwMeR7TnFrpOHYh4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gilda Display" + } + ] + }, + { + "name": "Girassol", + "fontFamily": "Girassol, system-ui", + "slug": "wp-font-lib-girassol", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/girassol/v17/JTUUjIo_-DK48laaNC9Nz2pJzxbi.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Girassol" + } + ] + }, + { + "name": "Give You Glory", + "fontFamily": "Give You Glory, cursive", + "slug": "wp-font-lib-give-you-glory", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/giveyouglory/v15/8QIQdiHOgt3vv4LR7ahjw9-XYc1zB4ZD6rwa.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Give You Glory" + } + ] + }, + { + "name": "Glass Antiqua", + "fontFamily": "Glass Antiqua, system-ui", + "slug": "wp-font-lib-glass-antiqua", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/glassantiqua/v20/xfu30Wr0Wn3NOQM2piC0uXOjnL_wN6fRUkY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Glass Antiqua" + } + ] + }, + { + "name": "Glegoo", + "fontFamily": "Glegoo, serif", + "slug": "wp-font-lib-glegoo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/glegoo/v14/_Xmt-HQyrTKWaw2Ji6mZAI91xw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Glegoo" + }, + { + "src": "http://fonts.gstatic.com/s/glegoo/v14/_Xmu-HQyrTKWaw2xN4a9CKRpzimMsg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Glegoo" + } + ] + }, + { + "name": "Gloock", + "fontFamily": "Gloock, serif", + "slug": "wp-font-lib-gloock", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gloock/v2/Iurb6YFw84WUY4N5jxylBrdRjQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gloock" + } + ] + }, + { + "name": "Gloria Hallelujah", + "fontFamily": "Gloria Hallelujah, cursive", + "slug": "wp-font-lib-gloria-hallelujah", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gloriahallelujah/v17/LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy3TKEvkCF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gloria Hallelujah" + } + ] + }, + { + "name": "Glory", + "fontFamily": "Glory, sans-serif", + "slug": "wp-font-lib-glory", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQwIiDpn-dDi9EOQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQQImDpn-dDi9EOQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQnomDpn-dDi9EOQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQwImDpn-dDi9EOQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQ8omDpn-dDi9EOQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQHo6Dpn-dDi9EOQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQJ46Dpn-dDi9EOQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQQI6Dpn-dDi9EOQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMo15XWZLCpUOaM6.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMq14nWZLCpUOaM6.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Glory" + } + ] + }, + { + "name": "Gluten", + "fontFamily": "Gluten, system-ui", + "slug": "wp-font-lib-gluten", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7B1Luni7ciJh.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb7R1Luni7ciJh.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8UF7R1Luni7ciJh.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7R1Luni7ciJh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vp7R1Luni7ciJh.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8WF6h1Luni7ciJh.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8W86h1Luni7ciJh.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb6h1Luni7ciJh.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xy6h1Luni7ciJh.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Gluten" + } + ] + }, + { + "name": "Goblin One", + "fontFamily": "Goblin One, system-ui", + "slug": "wp-font-lib-goblin-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/goblinone/v22/CSR64z1ZnOqZRjRCBVY_TOcATNt_pOU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Goblin One" + } + ] + }, + { + "name": "Gochi Hand", + "fontFamily": "Gochi Hand, cursive", + "slug": "wp-font-lib-gochi-hand", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gochihand/v19/hES06XlsOjtJsgCkx1PkTo71-n0nXWA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gochi Hand" + } + ] + }, + { + "name": "Goldman", + "fontFamily": "Goldman, system-ui", + "slug": "wp-font-lib-goldman", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/goldman/v16/pe0uMIWbN4JFplR2LDJ4Bt-7G98.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Goldman" + }, + { + "src": "http://fonts.gstatic.com/s/goldman/v16/pe0rMIWbN4JFplR2FI5XIteQB9Zra1U.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Goldman" + } + ] + }, + { + "name": "Golos Text", + "fontFamily": "Golos Text, sans-serif", + "slug": "wp-font-lib-golos-text", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVRRQ5cEr8zXcyx.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Golos Text" + }, + { + "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVjRQ5cEr8zXcyx.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Golos Text" + }, + { + "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plWPQg5cEr8zXcyx.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Golos Text" + }, + { + "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plW2Qg5cEr8zXcyx.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Golos Text" + }, + { + "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plXRQg5cEr8zXcyx.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Golos Text" + }, + { + "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plX4Qg5cEr8zXcyx.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Golos Text" + } + ] + }, + { + "name": "Gorditas", + "fontFamily": "Gorditas, system-ui", + "slug": "wp-font-lib-gorditas", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gorditas/v20/ll8_K2aTVD26DsPEtQDoDa4AlxYb.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gorditas" + }, + { + "src": "http://fonts.gstatic.com/s/gorditas/v20/ll84K2aTVD26DsPEtThUIooIvAoShA1i.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gorditas" + } + ] + }, + { + "name": "Gothic A1", + "fontFamily": "Gothic A1, sans-serif", + "slug": "wp-font-lib-gothic-a1", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR74z5ZnPydRjlCCwlCCMcqYtd2vfwk.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCpOYKSPl6tOU9Eg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCwOUKSPl6tOU9Eg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR94z5ZnPydRjlCCwl6bM0uQNJmvQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCmOQKSPl6tOU9Eg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCtOMKSPl6tOU9Eg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC0OIKSPl6tOU9Eg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCzOEKSPl6tOU9Eg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC6OAKSPl6tOU9Eg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + } + ] + }, + { + "name": "Gotu", + "fontFamily": "Gotu, sans-serif", + "slug": "wp-font-lib-gotu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gotu/v14/o-0FIpksx3QOlH0Lioh6-hU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gotu" + } + ] + }, + { + "name": "Goudy Bookletter 1911", + "fontFamily": "Goudy Bookletter 1911, serif", + "slug": "wp-font-lib-goudy-bookletter-1911", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/goudybookletter1911/v15/sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5tRbXZ4IXAA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Goudy Bookletter 1911" + } + ] + }, + { + "name": "Gowun Batang", + "fontFamily": "Gowun Batang, serif", + "slug": "wp-font-lib-gowun-batang", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gowunbatang/v7/ijwSs5nhRMIjYsdSgcMa3wRhXLH-yuAtLw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gowun Batang" + }, + { + "src": "http://fonts.gstatic.com/s/gowunbatang/v7/ijwNs5nhRMIjYsdSgcMa3wRZ4J7awssxJii23w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gowun Batang" + } + ] + }, + { + "name": "Gowun Dodum", + "fontFamily": "Gowun Dodum, sans-serif", + "slug": "wp-font-lib-gowun-dodum", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gowundodum/v7/3Jn5SD_00GqwlBnWc1TUJF0FfORL0fNy.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gowun Dodum" + } + ] + }, + { + "name": "Graduate", + "fontFamily": "Graduate, system-ui", + "slug": "wp-font-lib-graduate", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/graduate/v13/C8cg4cs3o2n15t_2YxgR6X2NZAn2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Graduate" + } + ] + }, + { + "name": "Grand Hotel", + "fontFamily": "Grand Hotel, cursive", + "slug": "wp-font-lib-grand-hotel", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/grandhotel/v14/7Au7p_IgjDKdCRWuR1azpmQNEl0O0kEx.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Grand Hotel" + } + ] + }, + { + "name": "Grandstander", + "fontFamily": "Grandstander, system-ui", + "slug": "wp-font-lib-grandstander", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1-_D3jWttFGmQk.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9--D3jWttFGmQk.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQDwG-D3jWttFGmQk.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1--D3jWttFGmQk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD22-D3jWttFGmQk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD4G5D3jWttFGmQk.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD7i5D3jWttFGmQk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9-5D3jWttFGmQk.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD_a5D3jWttFGmQk.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zrcsvNDiQlBYQ.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzvcsvNDiQlBYQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9uTvcsvNDiQlBYQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zvcsvNDiQlBYQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf91TvcsvNDiQlBYQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9OTzcsvNDiQlBYQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ADzcsvNDiQlBYQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzzcsvNDiQlBYQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9TjzcsvNDiQlBYQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Grandstander" + } + ] + }, + { + "name": "Grape Nuts", + "fontFamily": "Grape Nuts, cursive", + "slug": "wp-font-lib-grape-nuts", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/grapenuts/v2/syk2-yF4iLM2RfKj4F7k3tLvol2RN1E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Grape Nuts" + } + ] + }, + { + "name": "Gravitas One", + "fontFamily": "Gravitas One, system-ui", + "slug": "wp-font-lib-gravitas-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gravitasone/v15/5h1diZ4hJ3cblKy3LWakKQmaDWRNr3DzbQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gravitas One" + } + ] + }, + { + "name": "Great Vibes", + "fontFamily": "Great Vibes, cursive", + "slug": "wp-font-lib-great-vibes", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/greatvibes/v15/RWmMoKWR9v4ksMfaWd_JN-XCg6UKDXlq.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Great Vibes" + } + ] + }, + { + "name": "Grechen Fuemen", + "fontFamily": "Grechen Fuemen, cursive", + "slug": "wp-font-lib-grechen-fuemen", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/grechenfuemen/v7/vEFI2_tHEQ4d5ObgKxBzZh0MAWgc-NaXXq7H.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Grechen Fuemen" + } + ] + }, + { + "name": "Grenze", + "fontFamily": "Grenze, serif", + "slug": "wp-font-lib-grenze", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZRFGb7hR12BxqPm2IjuAkalnmd.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZXFGb7hR12BxqH_VpHsg04k2md0kI.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPN0MDkicWn2CEyw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vrrky0SvWWUy1uW.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPU0ADkicWn2CEyw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqPkC0SvWWUy1uW.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZTFGb7hR12Bxq3_2gnmgwKlg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZRFGb7hR12BxqH_WIjuAkalnmd.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPC0EDkicWn2CEyw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VrXkS0SvWWUy1uW.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPJ0YDkicWn2CEyw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vr7li0SvWWUy1uW.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPQ0cDkicWn2CEyw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vqfly0SvWWUy1uW.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPX0QDkicWn2CEyw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqDlC0SvWWUy1uW.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPe0UDkicWn2CEyw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqnlS0SvWWUy1uW.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Grenze" + } + ] + }, + { + "name": "Grenze Gotisch", + "fontFamily": "Grenze Gotisch, system-ui", + "slug": "wp-font-lib-grenze-gotisch", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz5UcICdYPSd_w.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rz9UcICdYPSd_w.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5cT9UcICdYPSd_w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz9UcICdYPSd_w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5HT9UcICdYPSd_w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i58ThUcICdYPSd_w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5yDhUcICdYPSd_w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rzhUcICdYPSd_w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5hjhUcICdYPSd_w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + } + ] + }, + { + "name": "Grey Qo", + "fontFamily": "Grey Qo, cursive", + "slug": "wp-font-lib-grey-qo", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/greyqo/v7/BXRrvF_Nmv_TyXxNDOtQ9Wf0QcE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Grey Qo" + } + ] + }, + { + "name": "Griffy", + "fontFamily": "Griffy, system-ui", + "slug": "wp-font-lib-griffy", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/griffy/v22/FwZa7-ox2FQh9kfwSNSEwM2zpA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Griffy" + } + ] + }, + { + "name": "Gruppo", + "fontFamily": "Gruppo, sans-serif", + "slug": "wp-font-lib-gruppo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gruppo/v17/WwkfxPmzE06v_ZWFWXDAOIEQUQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gruppo" + } + ] + }, + { + "name": "Gudea", + "fontFamily": "Gudea, sans-serif", + "slug": "wp-font-lib-gudea", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gudea/v15/neIFzCqgsI0mp-CP9IGON7Ez.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gudea" + }, + { + "src": "http://fonts.gstatic.com/s/gudea/v15/neILzCqgsI0mp9CN_oWsMqEzSJQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Gudea" + }, + { + "src": "http://fonts.gstatic.com/s/gudea/v15/neIIzCqgsI0mp9gz26WGHK06UY30.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gudea" + } + ] + }, + { + "name": "Gugi", + "fontFamily": "Gugi, system-ui", + "slug": "wp-font-lib-gugi", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gugi/v13/A2BVn5dXywshVA6A9DEfgqM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gugi" + } + ] + }, + { + "name": "Gulzar", + "fontFamily": "Gulzar, serif", + "slug": "wp-font-lib-gulzar", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gulzar/v8/Wnz6HAc9eB3HB2ILYTwZqg_MPQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gulzar" + } + ] + }, + { + "name": "Gupter", + "fontFamily": "Gupter, serif", + "slug": "wp-font-lib-gupter", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gupter/v14/2-cm9JNmxJqPO1QUYZa_Wu_lpA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gupter" + }, + { + "src": "http://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qslb-bUsT5rZhaZg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Gupter" + }, + { + "src": "http://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qs3bmbUsT5rZhaZg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gupter" + } + ] + }, + { + "name": "Gurajada", + "fontFamily": "Gurajada, serif", + "slug": "wp-font-lib-gurajada", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gurajada/v15/FwZY7-Qx308m-l-0Kd6A4sijpFu_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gurajada" + } + ] + }, + { + "name": "Gwendolyn", + "fontFamily": "Gwendolyn, cursive", + "slug": "wp-font-lib-gwendolyn", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gwendolyn/v5/qkBXXvoO_M3CSss-d7ee5JRLkAXbMQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gwendolyn" + }, + { + "src": "http://fonts.gstatic.com/s/gwendolyn/v5/qkBSXvoO_M3CSss-d7emWLtvmC7HONiSFQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gwendolyn" + } + ] + }, + { + "name": "Habibi", + "fontFamily": "Habibi, serif", + "slug": "wp-font-lib-habibi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/habibi/v21/CSR-4zFWkuqcTTNCShJeZOYySQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Habibi" + } + ] + }, + { + "name": "Hachi Maru Pop", + "fontFamily": "Hachi Maru Pop, cursive", + "slug": "wp-font-lib-hachi-maru-pop", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hachimarupop/v17/HI_TiYoRLqpLrEiMAuO9Ysfz7rW1EM_btd8u.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hachi Maru Pop" + } + ] + }, + { + "name": "Hahmlet", + "fontFamily": "Hahmlet, serif", + "slug": "wp-font-lib-hahmlet", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKOdjobsO-aVxn.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKONjobsO-aVxn.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RgUONjobsO-aVxn.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKONjobsO-aVxn.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4Rh4ONjobsO-aVxn.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RiUP9jobsO-aVxn.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RitP9jobsO-aVxn.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKP9jobsO-aVxn.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjjP9jobsO-aVxn.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + } + ] + }, + { + "name": "Halant", + "fontFamily": "Halant, serif", + "slug": "wp-font-lib-halant", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2Pbsvc_pCmwZqcwdRXg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Halant" + }, + { + "src": "http://fonts.gstatic.com/s/halant/v14/u-4-0qaujRI2PbsX39Jmky12eg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Halant" + }, + { + "src": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvK_tCmwZqcwdRXg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Halant" + }, + { + "src": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvB_xCmwZqcwdRXg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Halant" + }, + { + "src": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvY_1CmwZqcwdRXg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Halant" + } + ] + }, + { + "name": "Hammersmith One", + "fontFamily": "Hammersmith One, sans-serif", + "slug": "wp-font-lib-hammersmith-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hammersmithone/v17/qWcyB624q4L_C4jGQ9IK0O_dFlnbshsks4MRXw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hammersmith One" + } + ] + }, + { + "name": "Hanalei", + "fontFamily": "Hanalei, system-ui", + "slug": "wp-font-lib-hanalei", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hanalei/v23/E21n_dD8iufIjBRHXzgmVydREus.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hanalei" + } + ] + }, + { + "name": "Hanalei Fill", + "fontFamily": "Hanalei Fill, system-ui", + "slug": "wp-font-lib-hanalei-fill", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hanaleifill/v22/fC1mPYtObGbfyQznIaQzPQiMVwLBplm9aw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hanalei Fill" + } + ] + }, + { + "name": "Handlee", + "fontFamily": "Handlee, cursive", + "slug": "wp-font-lib-handlee", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/handlee/v14/-F6xfjBsISg9aMakDmr6oilJ3ik.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Handlee" + } + ] + }, + { + "name": "Hanken Grotesk", + "fontFamily": "Hanken Grotesk, sans-serif", + "slug": "wp-font-lib-hanken-grotesk", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2da4fpNzXhRKA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcM2Za4fpNzXhRKA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Nc7WZa4fpNzXhRKA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2Za4fpNzXhRKA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcgWZa4fpNzXhRKA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcbWFa4fpNzXhRKA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcVGFa4fpNzXhRKA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcM2Fa4fpNzXhRKA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcGmFa4fpNzXhRKA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWyo_BJ731BKMSK.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUyovBJ731BKMSK.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyXsovBJ731BKMSK.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWyovBJ731BKMSK.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWAovBJ731BKMSK.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyVspfBJ731BKMSK.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyVVpfBJ731BKMSK.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUypfBJ731BKMSK.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUbpfBJ731BKMSK.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + } + ] + }, + { + "name": "Hanuman", + "fontFamily": "Hanuman, serif", + "slug": "wp-font-lib-hanuman", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJzdNvD15HhpJJBQMLdPKNiaRpFvg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Hanuman" + }, + { + "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQAr_HIlMZRNcp0o.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hanuman" + }, + { + "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJxdNvD15HhpJJBeKbXOIFneRo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hanuman" + }, + { + "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQBr4HIlMZRNcp0o.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hanuman" + }, + { + "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQCL6HIlMZRNcp0o.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Hanuman" + } + ] + }, + { + "name": "Happy Monkey", + "fontFamily": "Happy Monkey, system-ui", + "slug": "wp-font-lib-happy-monkey", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/happymonkey/v14/K2F2fZZcl-9SXwl5F_C4R_OABwD2bWqVjw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Happy Monkey" + } + ] + }, + { + "name": "Harmattan", + "fontFamily": "Harmattan, sans-serif", + "slug": "wp-font-lib-harmattan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/harmattan/v19/goksH6L2DkFvVvRp9XpTS0CjkP1Yog.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Harmattan" + }, + { + "src": "http://fonts.gstatic.com/s/harmattan/v19/gokpH6L2DkFvVvRp9Xprv2mHmNZEq6TTFw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Harmattan" + }, + { + "src": "http://fonts.gstatic.com/s/harmattan/v19/gokpH6L2DkFvVvRp9Xprk26HmNZEq6TTFw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Harmattan" + }, + { + "src": "http://fonts.gstatic.com/s/harmattan/v19/gokpH6L2DkFvVvRp9Xpr92-HmNZEq6TTFw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Harmattan" + } + ] + }, + { + "name": "Headland One", + "fontFamily": "Headland One, serif", + "slug": "wp-font-lib-headland-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/headlandone/v16/yYLu0hHR2vKnp89Tk1TCq3Tx0PlTeZ3mJA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Headland One" + } + ] + }, + { + "name": "Heebo", + "fontFamily": "Heebo, sans-serif", + "slug": "wp-font-lib-heebo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiS2cckOnz02SXQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSycckOnz02SXQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1E1yycckOnz02SXQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSycckOnz02SXQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EuyycckOnz02SXQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EVyucckOnz02SXQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EbiucckOnz02SXQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSucckOnz02SXQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EICucckOnz02SXQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Heebo" + } + ] + }, + { + "name": "Henny Penny", + "fontFamily": "Henny Penny, system-ui", + "slug": "wp-font-lib-henny-penny", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hennypenny/v17/wXKvE3UZookzsxz_kjGSfMQqt3M7tMDT.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Henny Penny" + } + ] + }, + { + "name": "Hepta Slab", + "fontFamily": "Hepta Slab, serif", + "slug": "wp-font-lib-hepta-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5jfbY5B0NBkz.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV5zfbY5B0NBkz.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvlL5zfbY5B0NBkz.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5zfbY5B0NBkz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvkn5zfbY5B0NBkz.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvnL4DfbY5B0NBkz.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvny4DfbY5B0NBkz.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV4DfbY5B0NBkz.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvm84DfbY5B0NBkz.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + } + ] + }, + { + "name": "Herr Von Muellerhoff", + "fontFamily": "Herr Von Muellerhoff, cursive", + "slug": "wp-font-lib-herr-von-muellerhoff", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/herrvonmuellerhoff/v16/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c6_qJY3QPQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Herr Von Muellerhoff" + } + ] + }, + { + "name": "Hi Melody", + "fontFamily": "Hi Melody, cursive", + "slug": "wp-font-lib-hi-melody", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/himelody/v13/46ktlbP8Vnz0pJcqCTbEf29E31BBGA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hi Melody" + } + ] + }, + { + "name": "Hina Mincho", + "fontFamily": "Hina Mincho, serif", + "slug": "wp-font-lib-hina-mincho", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hinamincho/v9/2sDaZGBRhpXa2Jjz5w5LAGW8KbkVZTHR.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hina Mincho" + } + ] + }, + { + "name": "Hind", + "fontFamily": "Hind, sans-serif", + "slug": "wp-font-lib-hind", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfMJaIRuYjDpf5Vw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hind" + }, + { + "src": "http://fonts.gstatic.com/s/hind/v16/5aU69_a8oxmIRG5yBROzkDM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hind" + }, + { + "src": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfJpbIRuYjDpf5Vw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hind" + }, + { + "src": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfLZcIRuYjDpf5Vw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hind" + }, + { + "src": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfNJdIRuYjDpf5Vw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hind" + } + ] + }, + { + "name": "Hind Guntur", + "fontFamily": "Hind Guntur, sans-serif", + "slug": "wp-font-lib-hind-guntur", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yGn1czn9zaj5Ju.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hind Guntur" + }, + { + "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKvE3UZrok56nvamSuJd8Qqt3M7tMDT.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hind Guntur" + }, + { + "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zenlczn9zaj5Ju.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hind Guntur" + }, + { + "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zymVczn9zaj5Ju.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hind Guntur" + }, + { + "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yWmFczn9zaj5Ju.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hind Guntur" + } + ] + }, + { + "name": "Hind Madurai", + "fontFamily": "Hind Madurai, sans-serif", + "slug": "wp-font-lib-hind-madurai", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfXaUnecsoMJ0b_g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hind Madurai" + }, + { + "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xx0e2p98ZvDXdZQIOcpqjn8Y0DceA0OQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hind Madurai" + }, + { + "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfBaQnecsoMJ0b_g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hind Madurai" + }, + { + "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfKaMnecsoMJ0b_g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hind Madurai" + }, + { + "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfTaInecsoMJ0b_g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hind Madurai" + } + ] + }, + { + "name": "Hind Siliguri", + "fontFamily": "Hind Siliguri, sans-serif", + "slug": "wp-font-lib-hind-siliguri", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRDf44uEfKiGvxts.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hind Siliguri" + }, + { + "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwTs5juQtsyLLR5jN4cxBEofJvQxuk0Nig.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hind Siliguri" + }, + { + "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRG_54uEfKiGvxts.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hind Siliguri" + }, + { + "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoREP-4uEfKiGvxts.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hind Siliguri" + }, + { + "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRCf_4uEfKiGvxts.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hind Siliguri" + } + ] + }, + { + "name": "Hind Vadodara", + "fontFamily": "Hind Vadodara, sans-serif", + "slug": "wp-font-lib-hind-vadodara", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSDn3iXM0oSOL2Yw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hind Vadodara" + }, + { + "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neINzCKvrIcn5pbuuuriV9tTcJXfrXsfvSo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hind Vadodara" + }, + { + "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSGH2iXM0oSOL2Yw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hind Vadodara" + }, + { + "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSE3xiXM0oSOL2Yw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hind Vadodara" + }, + { + "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSCnwiXM0oSOL2Yw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hind Vadodara" + } + ] + }, + { + "name": "Holtwood One SC", + "fontFamily": "Holtwood One SC, serif", + "slug": "wp-font-lib-holtwood-one-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/holtwoodonesc/v16/yYLx0hLR0P-3vMFSk1TCq3Txg5B3cbb6LZttyg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Holtwood One SC" + } + ] + }, + { + "name": "Homemade Apple", + "fontFamily": "Homemade Apple, cursive", + "slug": "wp-font-lib-homemade-apple", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/homemadeapple/v18/Qw3EZQFXECDrI2q789EKQZJob3x9Vnksi4M7.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Homemade Apple" + } + ] + }, + { + "name": "Homenaje", + "fontFamily": "Homenaje, sans-serif", + "slug": "wp-font-lib-homenaje", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/homenaje/v16/FwZY7-Q-xVAi_l-6Ld6A4sijpFu_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Homenaje" + } + ] + }, + { + "name": "Hubballi", + "fontFamily": "Hubballi, system-ui", + "slug": "wp-font-lib-hubballi", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hubballi/v4/o-0JIpUj3WIZ1RFN56B7yBBNYuSF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hubballi" + } + ] + }, + { + "name": "Hurricane", + "fontFamily": "Hurricane, cursive", + "slug": "wp-font-lib-hurricane", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hurricane/v5/pe0sMIuULZxTolZ5YldyAv2-C99ycg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hurricane" + } + ] + }, + { + "name": "IBM Plex Mono", + "fontFamily": "IBM Plex Mono, monospace", + "slug": "wp-font-lib-ibm-plex-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6pfjptAgt5VM-kVkqdyU8n3kwq0n1hj-sNFQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6rfjptAgt5VM-kVkqdyU8n1ioStndlre4dFcFh.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3uAL8ldPg-IUDNg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSGlZFh8ARHNh4zg.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3oQI8ldPg-IUDNg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSflVFh8ARHNh4zg.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F63fjptAgt5VM-kVkqdyU8n5igg1l9kn-s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6pfjptAgt5VM-kVkqdyU8n1ioq0n1hj-sNFQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3twJ8ldPg-IUDNg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSJlRFh8ARHNh4zg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3vAO8ldPg-IUDNg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSClNFh8ARHNh4zg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3pQP8ldPg-IUDNg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSblJFh8ARHNh4zg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "IBM Plex Mono" + } + ] + }, + { + "name": "IBM Plex Sans", + "fontFamily": "IBM Plex Sans, sans-serif", + "slug": "wp-font-lib-ibm-plex-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKjbLeEKxIedbzDw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX8KVElMYYaJe8bpLHnCwDKhdTmdKZMW9PjD3N8.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjR7_MIZmdd_qFmo.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTm2Idscf3vBmpl8A.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjXr8MIZmdd_qFmo.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRscf3vBmpl8A.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYXgKVElMYYaJe8bpLHnCwDKtdbUFI5NadY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKhdTeEKxIedbzDw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjSL9MIZmdd_qFmo.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTm5IVscf3vBmpl8A.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjQ76MIZmdd_qFmo.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJscf3vBmpl8A.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjWr7MIZmdd_qFmo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINscf3vBmpl8A.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans" + } + ] + }, + { + "name": "IBM Plex Sans Arabic", + "fontFamily": "IBM Plex Sans Arabic, sans-serif", + "slug": "wp-font-lib-ibm-plex-sans-arabic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3MZRtWPQCuHme67tEYUIx3Kh0PHR9N6YNe3PC5eMlAMg0.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPy_dCTVsVJKxTs.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOW_tCTVsVJKxTs.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3CZRtWPQCuHme67tEYUIx3Kh0PHR9N6bs61vSbfdlA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPO_9CTVsVJKxTs.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPi-NCTVsVJKxTs.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOG-dCTVsVJKxTs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Arabic" + } + ] + }, + { + "name": "IBM Plex Sans Condensed", + "fontFamily": "IBM Plex Sans Condensed, sans-serif", + "slug": "wp-font-lib-ibm-plex-sans-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY7KyKvBgYsMDhM.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8hN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8M_LhakJHhOgBg.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5m6Yvrr4cFFwq5.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8GPqpYMnEhq5H1w.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4C6ovrr4cFFwq5.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8AfppYMnEhq5H1w.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbauwq_jhJsM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYasyKvBgYsMDhM.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5a64vrr4cFFwq5.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8F_opYMnEhq5H1w.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY527Ivrr4cFFwq5.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8HPvpYMnEhq5H1w.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4S7Yvrr4cFFwq5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8BfupYMnEhq5H1w.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans Condensed" + } + ] + }, + { + "name": "IBM Plex Sans Devanagari", + "fontFamily": "IBM Plex Sans Devanagari, sans-serif", + "slug": "wp-font-lib-ibm-plex-sans-devanagari", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXB3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HMUjwUcjwCEQq.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HnWnQe-b8AV0z0w.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H-WrQe-b8AV0z0w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXH3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O__VUL0c83gCA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HoWvQe-b8AV0z0w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HjWzQe-b8AV0z0w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H6W3Qe-b8AV0z0w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Devanagari" + } + ] + }, + { + "name": "IBM Plex Sans Hebrew", + "fontFamily": "IBM Plex Sans Hebrew, sans-serif", + "slug": "wp-font-lib-ibm-plex-sans-hebrew", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa4qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEXB-l0VqDaM7C4.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVt230_hjqF9Tc2.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUJ2H0_hjqF9Tc2.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa2qYENg9Kw1mpLpO0bGM5lfHAAZHhDXH2l8Fk3rSaM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVR2X0_hjqF9Tc2.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEV93n0_hjqF9Tc2.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUZ330_hjqF9Tc2.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Hebrew" + } + ] + }, + { + "name": "IBM Plex Sans JP", + "fontFamily": "IBM Plex Sans JP, sans-serif", + "slug": "wp-font-lib-ibm-plex-sans-jp", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XLDn9KbTDf6_f7dISNqYf_tvPT7E7yjPB7twdmHQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7OLTrNpVuw5_BAM.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7IbQrNpVuw5_BAM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XNDn9KbTDf6_f7dISNqYf_tvPT1Cr4iNJ-pwc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7N7RrNpVuw5_BAM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7PLWrNpVuw5_BAM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7JbXrNpVuw5_BAM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans JP" + } + ] + }, + { + "name": "IBM Plex Sans KR", + "fontFamily": "IBM Plex Sans KR, sans-serif", + "slug": "wp-font-lib-ibm-plex-sans-kr", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFM2-VJISZe3O_rc3ZVYh4aTwNOyra_X5zCpMrMfA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyhqef7bsqMPVZb4.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyn6df7bsqMPVZb4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFK2-VJISZe3O_rc3ZVYh4aTwNO8tK1W77HtMo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyiacf7bsqMPVZb4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOygqbf7bsqMPVZb4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOym6af7bsqMPVZb4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans KR" + } + ] + }, + { + "name": "IBM Plex Sans Thai", + "fontFamily": "IBM Plex Sans Thai, sans-serif", + "slug": "wp-font-lib-ibm-plex-sans-thai", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JNje1VVIzcq1HzJq2AEdo2Tj_qvLqEatYlR8ZKUqcX.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqExvcFbehGW74OXw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEovQFbehGW74OXw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JPje1VVIzcq1HzJq2AEdo2Tj_qvLq8DtwhZcNaUg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE-vUFbehGW74OXw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE1vIFbehGW74OXw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEsvMFbehGW74OXw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai" + } + ] + }, + { + "name": "IBM Plex Sans Thai Looped", + "fontFamily": "IBM Plex Sans Thai Looped, sans-serif", + "slug": "wp-font-lib-ibm-plex-sans-thai-looped", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss5AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_HaKpHOtFCQ76Q.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_NqrhFmDGC0i8Cc.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_L6ohFmDGC0i8Cc.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss_AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30LxBKAoFGoBCQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_OaphFmDGC0i8Cc.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_MquhFmDGC0i8Cc.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_K6vhFmDGC0i8Cc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai Looped" + } + ] + }, + { + "name": "IBM Plex Serif", + "fontFamily": "IBM Plex Serif, serif", + "slug": "wp-font-lib-ibm-plex-serif", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizBREVNn1dOx-zrZ2X3pZvkTi182zIZj1bIkNo.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizHREVNn1dOx-zrZ2X3pZvkTiUa41YTi3TNgNq55w.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3Q-hIzoVrBicOg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4_oyq17jjNOg_oc.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi20-RIzoVrBicOg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa454xq17jjNOg_oc.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizDREVNn1dOx-zrZ2X3pZvkThUY0TY7ikbI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizBREVNn1dOx-zrZ2X3pZvkTiUa2zIZj1bIkNo.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3s-BIzoVrBicOg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa48Ywq17jjNOg_oc.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3A_xIzoVrBicOg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4-o3q17jjNOg_oc.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi2k_hIzoVrBicOg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4442q17jjNOg_oc.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "IBM Plex Serif" + } + ] + }, + { + "name": "IM Fell DW Pica", + "fontFamily": "IM Fell DW Pica, serif", + "slug": "wp-font-lib-im-fell-dw-pica", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfelldwpica/v16/2sDGZGRQotv9nbn2qSl0TxXVYNw9ZAPUvi88MQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell DW Pica" + }, + { + "src": "http://fonts.gstatic.com/s/imfelldwpica/v16/2sDEZGRQotv9nbn2qSl0TxXVYNwNZgnQnCosMXm0.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IM Fell DW Pica" + } + ] + }, + { + "name": "IM Fell DW Pica SC", + "fontFamily": "IM Fell DW Pica SC, serif", + "slug": "wp-font-lib-im-fell-dw-pica-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfelldwpicasc/v21/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW-BiKEUiBGA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell DW Pica SC" + } + ] + }, + { + "name": "IM Fell Double Pica", + "fontFamily": "IM Fell Double Pica, serif", + "slug": "wp-font-lib-im-fell-double-pica", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfelldoublepica/v14/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0S1UL5Ayp0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell Double Pica" + }, + { + "src": "http://fonts.gstatic.com/s/imfelldoublepica/v14/3XF0EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0a_VJxF2p2G8g.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IM Fell Double Pica" + } + ] + }, + { + "name": "IM Fell Double Pica SC", + "fontFamily": "IM Fell Double Pica SC, serif", + "slug": "wp-font-lib-im-fell-double-pica-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfelldoublepicasc/v21/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4Y0Eeru2dGg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell Double Pica SC" + } + ] + }, + { + "name": "IM Fell English", + "fontFamily": "IM Fell English, serif", + "slug": "wp-font-lib-im-fell-english", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfellenglish/v14/Ktk1ALSLW8zDe0rthJysWrnLsAz3F6mZVY9Y5w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell English" + }, + { + "src": "http://fonts.gstatic.com/s/imfellenglish/v14/Ktk3ALSLW8zDe0rthJysWrnLsAzHFaOdd4pI59zg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IM Fell English" + } + ] + }, + { + "name": "IM Fell English SC", + "fontFamily": "IM Fell English SC, serif", + "slug": "wp-font-lib-im-fell-english-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfellenglishsc/v16/a8IENpD3CDX-4zrWfr1VY879qFF05pZLO4gOg0shzA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell English SC" + } + ] + }, + { + "name": "IM Fell French Canon", + "fontFamily": "IM Fell French Canon, serif", + "slug": "wp-font-lib-im-fell-french-canon", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coVPt1ozoPz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell French Canon" + }, + { + "src": "http://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6gfiNtDWYfYc-tDiyiw08rrghJszkK6foXNNlKy5PzzrU.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IM Fell French Canon" + } + ] + }, + { + "name": "IM Fell French Canon SC", + "fontFamily": "IM Fell French Canon SC, serif", + "slug": "wp-font-lib-im-fell-french-canon-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfellfrenchcanonsc/v22/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3c0UBCVIVqH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell French Canon SC" + } + ] + }, + { + "name": "IM Fell Great Primer", + "fontFamily": "IM Fell Great Primer, serif", + "slug": "wp-font-lib-im-fell-great-primer", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorXvDo3SQY1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell Great Primer" + }, + { + "src": "http://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6UNwSJtayYxOkbYFsT6hMsLzX7u85rJrrVtj4VTBY1N6U.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IM Fell Great Primer" + } + ] + }, + { + "name": "IM Fell Great Primer SC", + "fontFamily": "IM Fell Great Primer SC, serif", + "slug": "wp-font-lib-im-fell-great-primer-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfellgreatprimersc/v21/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf9BXz0s8FG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell Great Primer SC" + } + ] + }, + { + "name": "Ibarra Real Nova", + "fontFamily": "Ibarra Real Nova, serif", + "slug": "wp-font-lib-ibarra-real-nova", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdg5MDtVT9TWIvS.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ibarra Real Nova" + }, + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdS5MDtVT9TWIvS.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Ibarra Real Nova" + }, + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXe-48DtVT9TWIvS.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Ibarra Real Nova" + }, + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXeH48DtVT9TWIvS.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Ibarra Real Nova" + }, + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopyiuXztxXZvSkTo.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Ibarra Real Nova" + }, + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopxquXztxXZvSkTo.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Ibarra Real Nova" + }, + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop_apXztxXZvSkTo.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Ibarra Real Nova" + }, + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop8-pXztxXZvSkTo.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Ibarra Real Nova" + } + ] + }, + { + "name": "Iceberg", + "fontFamily": "Iceberg, system-ui", + "slug": "wp-font-lib-iceberg", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/iceberg/v20/8QIJdijAiM7o-qnZuIgOq7jkAOw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Iceberg" + } + ] + }, + { + "name": "Iceland", + "fontFamily": "Iceland, system-ui", + "slug": "wp-font-lib-iceland", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/iceland/v16/rax9HiuFsdMNOnWPWKxGADBbg0s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Iceland" + } + ] + }, + { + "name": "Imbue", + "fontFamily": "Imbue, serif", + "slug": "wp-font-lib-imbue", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iWfOsNNK-Q4xY.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iXfOsNNK-Q4xY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP5aXfOsNNK-Q4xY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iXfOsNNK-Q4xY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP_qXfOsNNK-Q4xY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPxaQfOsNNK-Q4xY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPy-QfOsNNK-Q4xY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iQfOsNNK-Q4xY.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP2GQfOsNNK-Q4xY.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Imbue" + } + ] + }, + { + "name": "Imperial Script", + "fontFamily": "Imperial Script, cursive", + "slug": "wp-font-lib-imperial-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imperialscript/v3/5DCPAKrpzy_H98IV2ISnZBbGrVNvPenlvttWNg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Imperial Script" + } + ] + }, + { + "name": "Imprima", + "fontFamily": "Imprima, sans-serif", + "slug": "wp-font-lib-imprima", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imprima/v18/VEMxRoN7sY3yuy-7-oWHyDzktPo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Imprima" + } + ] + }, + { + "name": "Inconsolata", + "fontFamily": "Inconsolata, monospace", + "slug": "wp-font-lib-inconsolata", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU8aRr8lleY2co.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + }, + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp9s8aRr8lleY2co.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + }, + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8aRr8lleY2co.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + }, + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp7c8aRr8lleY2co.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + }, + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp1s7aRr8lleY2co.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + }, + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp2I7aRr8lleY2co.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + }, + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU7aRr8lleY2co.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + }, + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lppyw7aRr8lleY2co.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + } + ] + }, + { + "name": "Inder", + "fontFamily": "Inder, sans-serif", + "slug": "wp-font-lib-inder", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inder/v14/w8gUH2YoQe8_4vq6pw-P3U4O.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inder" + } + ] + }, + { + "name": "Indie Flower", + "fontFamily": "Indie Flower, cursive", + "slug": "wp-font-lib-indie-flower", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/indieflower/v17/m8JVjfNVeKWVnh3QMuKkFcZlbkGG1dKEDw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Indie Flower" + } + ] + }, + { + "name": "Ingrid Darling", + "fontFamily": "Ingrid Darling, cursive", + "slug": "wp-font-lib-ingrid-darling", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ingriddarling/v2/LDIrapaJNxUtSuFdw-9yf4rCPsLOub458jGL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ingrid Darling" + } + ] + }, + { + "name": "Inika", + "fontFamily": "Inika, serif", + "slug": "wp-font-lib-inika", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inika/v21/rnCm-x5X3QP-phTHRcc2s2XH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inika" + }, + { + "src": "http://fonts.gstatic.com/s/inika/v21/rnCr-x5X3QP-pix7auM-mHnOSOuk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Inika" + } + ] + }, + { + "name": "Inknut Antiqua", + "fontFamily": "Inknut Antiqua, serif", + "slug": "wp-font-lib-inknut-antiqua", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2vwrj5bBoIYJNf.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Inknut Antiqua" + }, + { + "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GSYax7VC4ot_qNB4nYpBdaKXUD6pzxRwYB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inknut Antiqua" + }, + { + "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU33w7j5bBoIYJNf.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Inknut Antiqua" + }, + { + "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU3bxLj5bBoIYJNf.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Inknut Antiqua" + }, + { + "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2_xbj5bBoIYJNf.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Inknut Antiqua" + }, + { + "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2jxrj5bBoIYJNf.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Inknut Antiqua" + }, + { + "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2Hx7j5bBoIYJNf.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Inknut Antiqua" + } + ] + }, + { + "name": "Inria Sans", + "fontFamily": "Inria Sans, sans-serif", + "slug": "wp-font-lib-inria-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3ELaDQtFqeY3fX4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Inria Sans" + }, + { + "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAgQlPrcQybX4pQA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Inria Sans" + }, + { + "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRMTiqXYfZMCOiVj9kQ5O7yKQNute8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inria Sans" + }, + { + "src": "http://fonts.gstatic.com/s/inriasans/v14/ptROTiqXYfZMCOiVj9kQ1Oz4LSFrpe8uZA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Inria Sans" + }, + { + "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3FLdDQtFqeY3fX4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Inria Sans" + }, + { + "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAkQ5PrcQybX4pQA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Inria Sans" + } + ] + }, + { + "name": "Inria Serif", + "fontFamily": "Inria Serif, serif", + "slug": "wp-font-lib-inria-serif", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC14PYxPY3rXxEndZJAzN3wAVQjFhFyta3xN.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Inria Serif" + }, + { + "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC16PYxPY3rXxEndZJAzN3SuT4THjliPbmxN0_E.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Inria Serif" + }, + { + "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC1lPYxPY3rXxEndZJAzN0SsfSzNr0Ck.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inria Serif" + }, + { + "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC1nPYxPY3rXxEndZJAzN3SudyjvqlCkcmU.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Inria Serif" + }, + { + "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC14PYxPY3rXxEndZJAzN3wQUgjFhFyta3xN.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Inria Serif" + }, + { + "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC16PYxPY3rXxEndZJAzN3SuT5TAjliPbmxN0_E.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Inria Serif" + } + ] + }, + { + "name": "Inspiration", + "fontFamily": "Inspiration, cursive", + "slug": "wp-font-lib-inspiration", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inspiration/v3/x3dkckPPZa6L4wIg5cZOEvoGnSrlBBsy.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inspiration" + } + ] + }, + { + "name": "Instrument Sans", + "fontFamily": "Instrument Sans, sans-serif", + "slug": "wp-font-lib-instrument-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-Qf1mS0v3_7Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Instrument Sans" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npST3-Qf1mS0v3_7Y.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Instrument Sans" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQb_gf1mS0v3_7Y.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Instrument Sans" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gf1mS0v3_7Y.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Instrument Sans" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENuu-2kykN2u7YUwU.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Instrument Sans" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENut22kykN2u7YUwU.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Instrument Sans" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENujGxkykN2u7YUwU.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Instrument Sans" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENugixkykN2u7YUwU.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Instrument Sans" + } + ] + }, + { + "name": "Instrument Serif", + "fontFamily": "Instrument Serif, serif", + "slug": "wp-font-lib-instrument-serif", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/instrumentserif/v4/jizBRFtNs2ka5fXjeivQ4LroWlx-2zIZj1bIkNo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Instrument Serif" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentserif/v4/jizHRFtNs2ka5fXjeivQ4LroWlx-6zATi3TNgNq55w.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Instrument Serif" + } + ] + }, + { + "name": "Inter", + "fontFamily": "Inter, sans-serif", + "slug": "wp-font-lib-inter", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyeMZhrib2Bg-4.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyfMZhrib2Bg-4.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZhrib2Bg-4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZhrib2Bg-4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyYMZhrib2Bg-4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuBWYMZhrib2Bg-4.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Inter" + } + ] + }, + { + "name": "Inter Tight", + "fontFamily": "Inter Tight, sans-serif", + "slug": "wp-font-lib-inter-tight", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw6qXCRToK8EPg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjw-qXCRToK8EPg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjUQ-qXCRToK8EPg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qXCRToK8EPg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qXCRToK8EPg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqXCRToK8EPg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj6AiqXCRToK8EPg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjwiqXCRToK8EPg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjpgiqXCRToK8EPg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHi5XgqoUPvi5.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCHy5XgqoUPvi5.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0wcHy5XgqoUPvi5.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHy5XgqoUPvi5.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xwHy5XgqoUPvi5.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ycGC5XgqoUPvi5.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ylGC5XgqoUPvi5.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCGC5XgqoUPvi5.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zrGC5XgqoUPvi5.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + } + ] + }, + { + "name": "Irish Grover", + "fontFamily": "Irish Grover, system-ui", + "slug": "wp-font-lib-irish-grover", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/irishgrover/v23/buExpoi6YtLz2QW7LA4flVgf-P5Oaiw4cw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Irish Grover" + } + ] + }, + { + "name": "Island Moments", + "fontFamily": "Island Moments, cursive", + "slug": "wp-font-lib-island-moments", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/islandmoments/v3/NaPBcZfVGvBdxIt7Ar0qzkXJF-TGIohbZ6SY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Island Moments" + } + ] + }, + { + "name": "Istok Web", + "fontFamily": "Istok Web, sans-serif", + "slug": "wp-font-lib-istok-web", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/istokweb/v21/3qTvojGmgSyUukBzKslZAWF-9kIIaQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Istok Web" + }, + { + "src": "http://fonts.gstatic.com/s/istokweb/v21/3qTpojGmgSyUukBzKslpA2t61EcYaQ7F.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Istok Web" + }, + { + "src": "http://fonts.gstatic.com/s/istokweb/v21/3qTqojGmgSyUukBzKslhvU5a_mkUYBfcMw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Istok Web" + }, + { + "src": "http://fonts.gstatic.com/s/istokweb/v21/3qT0ojGmgSyUukBzKslpA1PG-2MQQhLMMygN.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Istok Web" + } + ] + }, + { + "name": "Italiana", + "fontFamily": "Italiana, serif", + "slug": "wp-font-lib-italiana", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/italiana/v16/QldNNTtLsx4E__B0XTmRY31Wx7Vv.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Italiana" + } + ] + }, + { + "name": "Italianno", + "fontFamily": "Italianno, cursive", + "slug": "wp-font-lib-italianno", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/italianno/v17/dg4n_p3sv6gCJkwzT6Rnj5YpQwM-gg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Italianno" + } + ] + }, + { + "name": "Itim", + "fontFamily": "Itim, cursive", + "slug": "wp-font-lib-itim", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/itim/v11/0nknC9ziJOYewARKkc7ZdwU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Itim" + } + ] + }, + { + "name": "Jacques Francois", + "fontFamily": "Jacques Francois, serif", + "slug": "wp-font-lib-jacques-francois", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jacquesfrancois/v20/ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcPqoeRWfbs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jacques Francois" + } + ] + }, + { + "name": "Jacques Francois Shadow", + "fontFamily": "Jacques Francois Shadow, system-ui", + "slug": "wp-font-lib-jacques-francois-shadow", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jacquesfrancoisshadow/v21/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8VsHuV5ULS.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jacques Francois Shadow" + } + ] + }, + { + "name": "Jaldi", + "fontFamily": "Jaldi, sans-serif", + "slug": "wp-font-lib-jaldi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jaldi/v12/or3sQ67z0_CI30NUZpD_B6g8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jaldi" + }, + { + "src": "http://fonts.gstatic.com/s/jaldi/v12/or3hQ67z0_CI33voSbT3LLQ1niPn.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Jaldi" + } + ] + }, + { + "name": "JetBrains Mono", + "fontFamily": "JetBrains Mono, monospace", + "slug": "wp-font-lib-jetbrains-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yK1jPVmUsaaDhw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKxjPVmUsaaDhw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8lqxjPVmUsaaDhw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjPVmUsaaDhw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8-qxjPVmUsaaDhw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8FqtjPVmUsaaDhw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tjPVmUsaaDhw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKtjPVmUsaaDhw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-Lf1OQk6OThxPA.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LflOQk6OThxPA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO_VflOQk6OThxPA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-LflOQk6OThxPA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-5flOQk6OThxPA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9VeVOQk6OThxPA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9seVOQk6OThxPA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LeVOQk6OThxPA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + } + ] + }, + { + "name": "Jim Nightshade", + "fontFamily": "Jim Nightshade, cursive", + "slug": "wp-font-lib-jim-nightshade", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jimnightshade/v20/PlIkFlu9Pb08Q8HLM1PxmB0g-OS4V3qKaMxD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jim Nightshade" + } + ] + }, + { + "name": "Joan", + "fontFamily": "Joan, serif", + "slug": "wp-font-lib-joan", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/joan/v2/ZXupe1oZsqWRbRdH8X1p_Ng.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Joan" + } + ] + }, + { + "name": "Jockey One", + "fontFamily": "Jockey One, sans-serif", + "slug": "wp-font-lib-jockey-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jockeyone/v16/HTxpL2g2KjCFj4x8WI6ArIb7HYOk4xc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jockey One" + } + ] + }, + { + "name": "Jolly Lodger", + "fontFamily": "Jolly Lodger, system-ui", + "slug": "wp-font-lib-jolly-lodger", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jollylodger/v20/BXRsvFTAh_bGkA1uQ48dlB3VWerT3ZyuqA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jolly Lodger" + } + ] + }, + { + "name": "Jomhuria", + "fontFamily": "Jomhuria, system-ui", + "slug": "wp-font-lib-jomhuria", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jomhuria/v18/Dxxp8j-TMXf-llKur2b1MOGbC3Dh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jomhuria" + } + ] + }, + { + "name": "Jomolhari", + "fontFamily": "Jomolhari, serif", + "slug": "wp-font-lib-jomolhari", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jomolhari/v14/EvONzA1M1Iw_CBd2hsQCF1IZKq5INg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jomolhari" + } + ] + }, + { + "name": "Josefin Sans", + "fontFamily": "Josefin Sans, sans-serif", + "slug": "wp-font-lib-josefin-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjRXMFrLgTsQV0.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_LjQXMFrLgTsQV0.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_GbQXMFrLgTsQV0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjQXMFrLgTsQV0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ArQXMFrLgTsQV0.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ObXXMFrLgTsQV0.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_N_XXMFrLgTsQV0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtINhKibpUV3MEQ.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTNIJhKibpUV3MEQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCT6oJhKibpUV3MEQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtIJhKibpUV3MEQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCThoJhKibpUV3MEQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTaoVhKibpUV3MEQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTU4VhKibpUV3MEQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Josefin Sans" + } + ] + }, + { + "name": "Josefin Slab", + "fontFamily": "Josefin Slab, serif", + "slug": "wp-font-lib-josefin-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71mtd3k3K6CcEyI.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W79msd3k3K6CcEyI.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W7wesd3k3K6CcEyI.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71msd3k3K6CcEyI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W72usd3k3K6CcEyI.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W74erd3k3K6CcEyI.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W776rd3k3K6CcEyI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzs9L4KZAyK43w.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvHzo9L4KZAyK43w.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvwTo9L4KZAyK43w.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzo9L4KZAyK43w.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvrTo9L4KZAyK43w.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvQT09L4KZAyK43w.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHveD09L4KZAyK43w.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Josefin Slab" + } + ] + }, + { + "name": "Jost", + "fontFamily": "Jost, sans-serif", + "slug": "wp-font-lib-jost", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJAVGPokMmuHL.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwjJQVGPokMmuHL.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mz9JQVGPokMmuHL.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJQVGPokMmuHL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myRJQVGPokMmuHL.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mx9IgVGPokMmuHL.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mxEIgVGPokMmuHL.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwjIgVGPokMmuHL.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwKIgVGPokMmuHL.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0ENI0un_HLMEo.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0FNI0un_HLMEo.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZrMFNI0un_HLMEo.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0FNI0un_HLMEo.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZt8FNI0un_HLMEo.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZjMCNI0un_HLMEo.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZgoCNI0un_HLMEo.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0CNI0un_HLMEo.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZkQCNI0un_HLMEo.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Jost" + } + ] + }, + { + "name": "Joti One", + "fontFamily": "Joti One, system-ui", + "slug": "wp-font-lib-joti-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jotione/v22/Z9XVDmdJQAmWm9TwaYTe4u2El6GC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Joti One" + } + ] + }, + { + "name": "Jua", + "fontFamily": "Jua, sans-serif", + "slug": "wp-font-lib-jua", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jua/v13/co3KmW9ljjAjc-DZCsKgsg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jua" + } + ] + }, + { + "name": "Judson", + "fontFamily": "Judson, serif", + "slug": "wp-font-lib-judson", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/judson/v19/FeVRS0Fbvbc14VxRD7N01bV7kg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Judson" + }, + { + "src": "http://fonts.gstatic.com/s/judson/v19/FeVTS0Fbvbc14VxhDblw97BrknZf.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Judson" + }, + { + "src": "http://fonts.gstatic.com/s/judson/v19/FeVSS0Fbvbc14Vxps5xQ3Z5nm29Gww.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Judson" + } + ] + }, + { + "name": "Julee", + "fontFamily": "Julee, cursive", + "slug": "wp-font-lib-julee", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/julee/v25/TuGfUVB3RpZPQ6ZLodgzydtk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Julee" + } + ] + }, + { + "name": "Julius Sans One", + "fontFamily": "Julius Sans One, sans-serif", + "slug": "wp-font-lib-julius-sans-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/juliussansone/v14/1Pt2g8TAX_SGgBGUi0tGOYEga5W-xXEW6aGXHw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Julius Sans One" + } + ] + }, + { + "name": "Junge", + "fontFamily": "Junge, serif", + "slug": "wp-font-lib-junge", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/junge/v20/gokgH670Gl1lUqAdvhB7SnKm.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Junge" + } + ] + }, + { + "name": "Jura", + "fontFamily": "Jura, sans-serif", + "slug": "wp-font-lib-jura", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP0D7auhTfmrH_rt.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Jura" + }, + { + "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP1d7auhTfmrH_rt.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jura" + }, + { + "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP1v7auhTfmrH_rt.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Jura" + }, + { + "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP2D6quhTfmrH_rt.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Jura" + }, + { + "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP266quhTfmrH_rt.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Jura" + } + ] + }, + { + "name": "Just Another Hand", + "fontFamily": "Just Another Hand, cursive", + "slug": "wp-font-lib-just-another-hand", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/justanotherhand/v19/845CNN4-AJyIGvIou-6yJKyptyOpOcr_BmmlS5aw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Just Another Hand" + } + ] + }, + { + "name": "Just Me Again Down Here", + "fontFamily": "Just Me Again Down Here, cursive", + "slug": "wp-font-lib-just-me-again-down-here", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/justmeagaindownhere/v24/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwHvqDwc_fg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Just Me Again Down Here" + } + ] + }, + { + "name": "K2D", + "fontFamily": "K2D, sans-serif", + "slug": "wp-font-lib-k2d", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aRnpF2V0ErE6UpvrIw74NL.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7afnpF2V0EjdZ1NtLYS6pNLAjk.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Erv4QJlJw85ppSGw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3hlZY4xJ9CGyAa.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Er24cJlJw85ppSGw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2FlpY4xJ9CGyAa.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aTnpF2V0ETd68tnLcg7w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aRnpF2V0EjdaUpvrIw74NL.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Erg4YJlJw85ppSGw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3dl5Y4xJ9CGyAa.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Err4EJlJw85ppSGw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3xkJY4xJ9CGyAa.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Ery4AJlJw85ppSGw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2VkZY4xJ9CGyAa.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Er14MJlJw85ppSGw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2JkpY4xJ9CGyAa.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "K2D" + } + ] + }, + { + "name": "Kadwa", + "fontFamily": "Kadwa, serif", + "slug": "wp-font-lib-kadwa", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kadwa/v10/rnCm-x5V0g7iphTHRcc2s2XH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kadwa" + }, + { + "src": "http://fonts.gstatic.com/s/kadwa/v10/rnCr-x5V0g7ipix7auM-mHnOSOuk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kadwa" + } + ] + }, + { + "name": "Kaisei Decol", + "fontFamily": "Kaisei Decol, serif", + "slug": "wp-font-lib-kaisei-decol", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrwmSqP45sidWf3QmfFW6iyW1EP22OjoA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kaisei Decol" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iKr3gr00i_qb57kA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kaisei Decol" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iK534r00i_qb57kA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kaisei Decol" + } + ] + }, + { + "name": "Kaisei HarunoUmi", + "fontFamily": "Kaisei HarunoUmi, serif", + "slug": "wp-font-lib-kaisei-harunoumi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_RiZQSLqBQoAHhK_C6N_nzy_jcGsv5sM8u3mk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kaisei HarunoUmi" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcIj_QlMcFwmC9FAU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kaisei HarunoUmi" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcInfWlMcFwmC9FAU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kaisei HarunoUmi" + } + ] + }, + { + "name": "Kaisei Opti", + "fontFamily": "Kaisei Opti, serif", + "slug": "wp-font-lib-kaisei-opti", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldKNThJphYb8_g6c2nlIFle7KlmxuHx.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kaisei Opti" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGGqxY1u7f34DYwn.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kaisei Opti" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGHiw41u7f34DYwn.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kaisei Opti" + } + ] + }, + { + "name": "Kaisei Tokumin", + "fontFamily": "Kaisei Tokumin, serif", + "slug": "wp-font-lib-kaisei-tokumin", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8sN5wdZg7xCwuMsylww2ZiQkJf1l0pj946.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kaisei Tokumin" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnqr_3khpMIzeI6v.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kaisei Tokumin" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnrj-XkhpMIzeI6v.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kaisei Tokumin" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnr_-nkhpMIzeI6v.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Kaisei Tokumin" + } + ] + }, + { + "name": "Kalam", + "fontFamily": "Kalam, cursive", + "slug": "wp-font-lib-kalam", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtD6GgLLmCUItqGt.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kalam" + }, + { + "src": "http://fonts.gstatic.com/s/kalam/v16/YA9dr0Wd4kDdMuhWMibDszkB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kalam" + }, + { + "src": "http://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtDqHQLLmCUItqGt.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kalam" + } + ] + }, + { + "name": "Kameron", + "fontFamily": "Kameron, serif", + "slug": "wp-font-lib-kameron", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kameron/v15/vm82dR7vXErQxuznsL4wL-XIYH8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kameron" + }, + { + "src": "http://fonts.gstatic.com/s/kameron/v15/vm8zdR7vXErQxuzniAIfC-3jfHb--NY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kameron" + } + ] + }, + { + "name": "Kanit", + "fontFamily": "Kanit, sans-serif", + "slug": "wp-font-lib-kanit", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKX-Go6G5tXcr72GwWKcaxALFs.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKV-Go6G5tXcraQI2GAdY5FPFtrGw.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr5aOiWgX6BJNUJy.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI82hVaRrMFJyAu4.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4-OSWgX6BJNUJy.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI6miVaRrMFJyAu4.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKZ-Go6G5tXcoaSEQGodLxA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKX-Go6G5tXcraQGwWKcaxALFs.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr5mOCWgX6BJNUJy.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI_GjVaRrMFJyAu4.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr5KPyWgX6BJNUJy.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI92kVaRrMFJyAu4.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4uPiWgX6BJNUJy.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI7mlVaRrMFJyAu4.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4yPSWgX6BJNUJy.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI6WmVaRrMFJyAu4.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4WPCWgX6BJNUJy.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI4GnVaRrMFJyAu4.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Kanit" + } + ] + }, + { + "name": "Kantumruy Pro", + "fontFamily": "Kantumruy Pro, sans-serif", + "slug": "wp-font-lib-kantumruy-pro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urUs0M34dR6dW.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg3urEs0M34dR6dW.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg0wrEs0M34dR6dW.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urEs0M34dR6dW.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1crEs0M34dR6dW.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2wq0s0M34dR6dW.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2Jq0s0M34dR6dW.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N2OXo_QrdWlcU.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7yN3OXo_QrdWlcU.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7_13OXo_QrdWlcU.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N3OXo_QrdWlcU.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim75F3OXo_QrdWlcU.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim731wOXo_QrdWlcU.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim70RwOXo_QrdWlcU.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Kantumruy Pro" + } + ] + }, + { + "name": "Karantina", + "fontFamily": "Karantina, system-ui", + "slug": "wp-font-lib-karantina", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxXCgf-P5Oaiw4cw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Karantina" + }, + { + "src": "http://fonts.gstatic.com/s/karantina/v11/buE0po24ccnh31GVMABJ8AA78NVSYw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Karantina" + }, + { + "src": "http://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxTC8f-P5Oaiw4cw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Karantina" + } + ] + }, + { + "name": "Karla", + "fontFamily": "Karla, sans-serif", + "slug": "wp-font-lib-karla", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJqqFENLR7fHGw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDppqqFENLR7fHGw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqqFENLR7fHGw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDypqqFENLR7fHGw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDJp2qFENLR7fHGw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDH52qFENLR7fHGw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJ2qFENLR7fHGw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCV0lPZbLXGxGR.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNkcV0lPZbLXGxGR.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlCV0lPZbLXGxGR.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlwV0lPZbLXGxGR.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmcUElPZbLXGxGR.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmlUElPZbLXGxGR.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCUElPZbLXGxGR.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Karla" + } + ] + }, + { + "name": "Karma", + "fontFamily": "Karma, serif", + "slug": "wp-font-lib-karma", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjDY8Z_uqzGQC_-.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Karma" + }, + { + "src": "http://fonts.gstatic.com/s/karma/v16/va9I4kzAzMZRGIBvS-J3kbDP.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Karma" + }, + { + "src": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLibYsZ_uqzGQC_-.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Karma" + }, + { + "src": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLi3ZcZ_uqzGQC_-.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Karma" + }, + { + "src": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjTZMZ_uqzGQC_-.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Karma" + } + ] + }, + { + "name": "Katibeh", + "fontFamily": "Katibeh, system-ui", + "slug": "wp-font-lib-katibeh", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/katibeh/v17/ZGjXol5MQJog4bxDaC1RVDNdGDs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Katibeh" + } + ] + }, + { + "name": "Kaushan Script", + "fontFamily": "Kaushan Script, cursive", + "slug": "wp-font-lib-kaushan-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kaushanscript/v14/vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kaushan Script" + } + ] + }, + { + "name": "Kavivanar", + "fontFamily": "Kavivanar, cursive", + "slug": "wp-font-lib-kavivanar", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kavivanar/v18/o-0IIpQgyXYSwhxP7_Jb4j5Ba_2c7A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kavivanar" + } + ] + }, + { + "name": "Kavoon", + "fontFamily": "Kavoon, system-ui", + "slug": "wp-font-lib-kavoon", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kavoon/v21/pxiFyp4_scRYhlU4NLr6f1pdEQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kavoon" + } + ] + }, + { + "name": "Kdam Thmor Pro", + "fontFamily": "Kdam Thmor Pro, sans-serif", + "slug": "wp-font-lib-kdam-thmor-pro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kdamthmorpro/v1/EJRPQgAzVdcI-Qdvt34jzurnGA7_j89I8ZWb.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kdam Thmor Pro" + } + ] + }, + { + "name": "Keania One", + "fontFamily": "Keania One, system-ui", + "slug": "wp-font-lib-keania-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/keaniaone/v21/zOL54pXJk65E8pXardnuycRuv-hHkOs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Keania One" + } + ] + }, + { + "name": "Kelly Slab", + "fontFamily": "Kelly Slab, system-ui", + "slug": "wp-font-lib-kelly-slab", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kellyslab/v15/-W_7XJX0Rz3cxUnJC5t6TkMBf50kbiM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kelly Slab" + } + ] + }, + { + "name": "Kenia", + "fontFamily": "Kenia, system-ui", + "slug": "wp-font-lib-kenia", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kenia/v24/jizURE5PuHQH9qCONUGswfGM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kenia" + } + ] + }, + { + "name": "Khand", + "fontFamily": "Khand, sans-serif", + "slug": "wp-font-lib-khand", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bL5cFE3ZwaH__-C.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Khand" + }, + { + "src": "http://fonts.gstatic.com/s/khand/v17/TwMA-IINQlQQ0YpVWHU_TBqO.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Khand" + }, + { + "src": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bKhcVE3ZwaH__-C.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Khand" + }, + { + "src": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bKNdlE3ZwaH__-C.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Khand" + }, + { + "src": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bLpd1E3ZwaH__-C.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Khand" + } + ] + }, + { + "name": "Khmer", + "fontFamily": "Khmer, system-ui", + "slug": "wp-font-lib-khmer", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/khmer/v25/MjQImit_vPPwpF-BpN2EeYmD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Khmer" + } + ] + }, + { + "name": "Khula", + "fontFamily": "Khula, sans-serif", + "slug": "wp-font-lib-khula", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-ljCvUrC59XwXD.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Khula" + }, + { + "src": "http://fonts.gstatic.com/s/khula/v12/OpNCnoEOns3V7FcJpA_chzJ0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Khula" + }, + { + "src": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G_RiivUrC59XwXD.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Khula" + }, + { + "src": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-1iyvUrC59XwXD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Khula" + }, + { + "src": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-piCvUrC59XwXD.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Khula" + } + ] + }, + { + "name": "Kings", + "fontFamily": "Kings, cursive", + "slug": "wp-font-lib-kings", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kings/v5/8AtnGsK4O5CYXU_Iq6GSPaHS.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kings" + } + ] + }, + { + "name": "Kirang Haerang", + "fontFamily": "Kirang Haerang, system-ui", + "slug": "wp-font-lib-kirang-haerang", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kiranghaerang/v20/E21-_dn_gvvIjhYON1lpIU4-bcqvWPaJq4no.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kirang Haerang" + } + ] + }, + { + "name": "Kite One", + "fontFamily": "Kite One, sans-serif", + "slug": "wp-font-lib-kite-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kiteone/v22/70lQu7shLnA_E02vyq1b6HnGO4uA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kite One" + } + ] + }, + { + "name": "Kiwi Maru", + "fontFamily": "Kiwi Maru, serif", + "slug": "wp-font-lib-kiwi-maru", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gNCi0Vxn9R5ShnA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kiwi Maru" + }, + { + "src": "http://fonts.gstatic.com/s/kiwimaru/v14/R70YjykGkuuDep-hRg6YmACQXzLhTg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kiwi Maru" + }, + { + "src": "http://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gbCm0Vxn9R5ShnA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kiwi Maru" + } + ] + }, + { + "name": "Klee One", + "fontFamily": "Klee One, cursive", + "slug": "wp-font-lib-klee-one", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kleeone/v7/LDIxapCLNRc6A8oT4q4AOeekWPrP.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Klee One" + }, + { + "src": "http://fonts.gstatic.com/s/kleeone/v7/LDI2apCLNRc6A8oT4pbYF8Osc-bGkqIw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Klee One" + } + ] + }, + { + "name": "Knewave", + "fontFamily": "Knewave, system-ui", + "slug": "wp-font-lib-knewave", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/knewave/v14/sykz-yx0lLcxQaSItSq9-trEvlQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Knewave" + } + ] + }, + { + "name": "KoHo", + "fontFamily": "KoHo, sans-serif", + "slug": "wp-font-lib-koho", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPuE1WJ75JoKhHys.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNisssJ_zIqCkDyvqZA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPoU2WJ75JoKhHys.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNiss1JzzIqCkDyvqZA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2F-fZ5fmddNBikefJbSOos.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FwfZ5fmddNNisUeLTXKou4Bg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPt03WJ75JoKhHys.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissjJ3zIqCkDyvqZA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPvEwWJ75JoKhHys.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissoJrzIqCkDyvqZA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPpUxWJ75JoKhHys.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissxJvzIqCkDyvqZA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "KoHo" + } + ] + }, + { + "name": "Kodchasan", + "fontFamily": "Kodchasan, sans-serif", + "slug": "wp-font-lib-kodchasan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeR1Cggeqo3eMeoA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUlIgOCs_-YOoIgN.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeI1Oggeqo3eMeoA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUksg-Cs_-YOoIgN.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXxaUPOAJv9sG4I-DJmj3uEicG01A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX3aUPOAJv9sG4I-DJWjXGAq8Sk1PoH.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJee1Kggeqo3eMeoA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUl0guCs_-YOoIgN.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeV1Wggeqo3eMeoA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUlYheCs_-YOoIgN.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeM1Sggeqo3eMeoA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUk8hOCs_-YOoIgN.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Kodchasan" + } + ] + }, + { + "name": "Koh Santepheap", + "fontFamily": "Koh Santepheap, system-ui", + "slug": "wp-font-lib-koh-santepheap", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMfW3p6SJbwyGj2rBZyeOrTjNuFHVyTtjNJUWU.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Koh Santepheap" + }, + { + "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtNP3y5mD9ASHz5.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Koh Santepheap" + }, + { + "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMdW3p6SJbwyGj2rBZyeOrTjOPhF1ixsyNJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Koh Santepheap" + }, + { + "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtdOHy5mD9ASHz5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Koh Santepheap" + }, + { + "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtlOny5mD9ASHz5.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Koh Santepheap" + } + ] + }, + { + "name": "Kolker Brush", + "fontFamily": "Kolker Brush, cursive", + "slug": "wp-font-lib-kolker-brush", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kolkerbrush/v3/iJWDBXWRZjfKWdvmzwvvog3-7KJ6x8qNUQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kolker Brush" + } + ] + }, + { + "name": "Konkhmer Sleokchher", + "fontFamily": "Konkhmer Sleokchher, system-ui", + "slug": "wp-font-lib-konkhmer-sleokchher", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/konkhmersleokchher/v2/_Xmw-GE-rjmabA_M-aPOZOsCrUv825LFI3507E0d-W0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Konkhmer Sleokchher" + } + ] + }, + { + "name": "Kosugi", + "fontFamily": "Kosugi, sans-serif", + "slug": "wp-font-lib-kosugi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kosugi/v15/pxiFyp4_v8FCjlI4NLr6f1pdEQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kosugi" + } + ] + }, + { + "name": "Kosugi Maru", + "fontFamily": "Kosugi Maru, sans-serif", + "slug": "wp-font-lib-kosugi-maru", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kosugimaru/v14/0nksC9PgP_wGh21A2KeqGiTqivr9iBq_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kosugi Maru" + } + ] + }, + { + "name": "Kotta One", + "fontFamily": "Kotta One, serif", + "slug": "wp-font-lib-kotta-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kottaone/v20/S6u_w41LXzPc_jlfNWqPHA3s5dwt7w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kotta One" + } + ] + }, + { + "name": "Koulen", + "fontFamily": "Koulen, system-ui", + "slug": "wp-font-lib-koulen", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/koulen/v25/AMOQz46as3KIBPeWgnA9kuYMUg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Koulen" + } + ] + }, + { + "name": "Kranky", + "fontFamily": "Kranky, system-ui", + "slug": "wp-font-lib-kranky", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kranky/v24/hESw6XVgJzlPsFnMpheEZo_H_w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kranky" + } + ] + }, + { + "name": "Kreon", + "fontFamily": "Kreon, serif", + "slug": "wp-font-lib-kreon", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvPNimejUfp2dWNg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kreon" + }, + { + "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvYtimejUfp2dWNg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kreon" + }, + { + "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvUNimejUfp2dWNg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kreon" + }, + { + "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvvN-mejUfp2dWNg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Kreon" + }, + { + "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2Dnvhd-mejUfp2dWNg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kreon" + } + ] + }, + { + "name": "Kristi", + "fontFamily": "Kristi, cursive", + "slug": "wp-font-lib-kristi", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kristi/v17/uK_y4ricdeU6zwdRCh0TMv6EXw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kristi" + } + ] + }, + { + "name": "Krona One", + "fontFamily": "Krona One, sans-serif", + "slug": "wp-font-lib-krona-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kronaone/v14/jAnEgHdjHcjgfIb1ZcUCMY-h3cWkWg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Krona One" + } + ] + }, + { + "name": "Krub", + "fontFamily": "Krub, sans-serif", + "slug": "wp-font-lib-krub", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZo47KLF4R6gWaf8.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQiwLByQ4oTef_6gQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZuo4KLF4R6gWaf8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQipLNyQ4oTef_6gQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlLdRyC6CRYXkYQDLlTW6E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlFdRyC6CRYbkQaCJtWS6EPcA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZrI5KLF4R6gWaf8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi_LJyQ4oTef_6gQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZp4-KLF4R6gWaf8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi0LVyQ4oTef_6gQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZvo_KLF4R6gWaf8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQitLRyQ4oTef_6gQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Krub" + } + ] + }, + { + "name": "Kufam", + "fontFamily": "Kufam, sans-serif", + "slug": "wp-font-lib-kufam", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3lqk7qQCJHvIwYg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3pKk7qQCJHvIwYg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3SK47qQCJHvIwYg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3ca47qQCJHvIwYg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3Fq47qQCJHvIwYg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3P647qQCJHvIwYg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXurT6gqNPPcgYp0i.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXurh6gqNPPcgYp0i.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXuoN7QqNPPcgYp0i.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXuo07QqNPPcgYp0i.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXupT7QqNPPcgYp0i.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXup67QqNPPcgYp0i.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Kufam" + } + ] + }, + { + "name": "Kulim Park", + "fontFamily": "Kulim Park, sans-serif", + "slug": "wp-font-lib-kulim-park", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjJYNwa5aZbUvGjU.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUKa9QYZcqCjVVUA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjPIOwa5aZbUvGjU.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUTaxQYZcqCjVVUA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN79secq3hflz1Uu3IwtF4m5aZxebw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN59secq3hflz1Uu3IwhFws4YR0abw2Aw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjIYIwa5aZbUvGjU.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUOapQYZcqCjVVUA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjOIJwa5aZbUvGjU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUXatQYZcqCjVVUA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Kulim Park" + } + ] + }, + { + "name": "Kumar One", + "fontFamily": "Kumar One, system-ui", + "slug": "wp-font-lib-kumar-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kumarone/v18/bMr1mS-P958wYi6YaGeGNO6WU3oT0g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kumar One" + } + ] + }, + { + "name": "Kumar One Outline", + "fontFamily": "Kumar One Outline, system-ui", + "slug": "wp-font-lib-kumar-one-outline", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kumaroneoutline/v17/Noao6VH62pyLP0fsrZ-v18wlUEcX9zDwRQu8EGKF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kumar One Outline" + } + ] + }, + { + "name": "Kumbh Sans", + "fontFamily": "Kumbh Sans, sans-serif", + "slug": "wp-font-lib-kumbh-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQkZcA8bTuUkqaLg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQEZYA8bTuUkqaLg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQz5YA8bTuUkqaLg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQkZYA8bTuUkqaLg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQo5YA8bTuUkqaLg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQT5EA8bTuUkqaLg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQdpEA8bTuUkqaLg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQEZEA8bTuUkqaLg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQOJEA8bTuUkqaLg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + } + ] + }, + { + "name": "Kurale", + "fontFamily": "Kurale, serif", + "slug": "wp-font-lib-kurale", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kurale/v11/4iCs6KV9e9dXjho6eAT3v02QFg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kurale" + } + ] + }, + { + "name": "La Belle Aurore", + "fontFamily": "La Belle Aurore, cursive", + "slug": "wp-font-lib-la-belle-aurore", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/labelleaurore/v16/RrQIbot8-mNYKnGNDkWlocovHeIIG-eFNVmULg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "La Belle Aurore" + } + ] + }, + { + "name": "Labrada", + "fontFamily": "Labrada, serif", + "slug": "wp-font-lib-labrada", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VTSgM4QPdUej17.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9XTSwM4QPdUej17.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9UNSwM4QPdUej17.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VTSwM4QPdUej17.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VhSwM4QPdUej17.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9WNTAM4QPdUej17.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9W0TAM4QPdUej17.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9XTTAM4QPdUej17.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9X6TAM4QPdUej17.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCOt6SvN2fy17-dE.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCGt7SvN2fy17-dE.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCLV7SvN2fy17-dE.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCOt7SvN2fy17-dE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCNl7SvN2fy17-dE.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCDV8SvN2fy17-dE.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCAx8SvN2fy17-dE.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCGt8SvN2fy17-dE.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCEJ8SvN2fy17-dE.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Labrada" + } + ] + }, + { + "name": "Lacquer", + "fontFamily": "Lacquer, system-ui", + "slug": "wp-font-lib-lacquer", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lacquer/v15/EYqzma1QwqpG4_BBB7-AXhttQ5I.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lacquer" + } + ] + }, + { + "name": "Laila", + "fontFamily": "Laila, sans-serif", + "slug": "wp-font-lib-laila", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLzxogNAh14nVcfe.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Laila" + }, + { + "src": "http://fonts.gstatic.com/s/laila/v13/LYjMdG_8nE8jDIRdiidIrEIu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Laila" + }, + { + "src": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLypowNAh14nVcfe.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Laila" + }, + { + "src": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLyFpANAh14nVcfe.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Laila" + }, + { + "src": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLzhpQNAh14nVcfe.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Laila" + } + ] + }, + { + "name": "Lakki Reddy", + "fontFamily": "Lakki Reddy, cursive", + "slug": "wp-font-lib-lakki-reddy", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lakkireddy/v19/S6u5w49MUSzD9jlCPmvLZQfox9k97-xZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lakki Reddy" + } + ] + }, + { + "name": "Lalezar", + "fontFamily": "Lalezar, system-ui", + "slug": "wp-font-lib-lalezar", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lalezar/v14/zrfl0HLVx-HwTP82UaDyIiL0RCg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lalezar" + } + ] + }, + { + "name": "Lancelot", + "fontFamily": "Lancelot, system-ui", + "slug": "wp-font-lib-lancelot", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lancelot/v23/J7acnppxBGtQEulG4JY4xJ9CGyAa.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lancelot" + } + ] + }, + { + "name": "Langar", + "fontFamily": "Langar, system-ui", + "slug": "wp-font-lib-langar", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/langar/v27/kJEyBukW7AIlgjGVrTVZ99sqrQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Langar" + } + ] + }, + { + "name": "Lateef", + "fontFamily": "Lateef, serif", + "slug": "wp-font-lib-lateef", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0bjygbqTb9nQ-RA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lateef" + }, + { + "src": "http://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0Cj-gbqTb9nQ-RA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lateef" + }, + { + "src": "http://fonts.gstatic.com/s/lateef/v29/hESw6XVnNCxEvkbMpheEZo_H_w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lateef" + }, + { + "src": "http://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0Uj6gbqTb9nQ-RA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lateef" + }, + { + "src": "http://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0fjmgbqTb9nQ-RA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lateef" + }, + { + "src": "http://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0GjigbqTb9nQ-RA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lateef" + }, + { + "src": "http://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0BjugbqTb9nQ-RA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lateef" + } + ] + }, + { + "name": "Lato", + "fontFamily": "Lato, sans-serif", + "slug": "wp-font-lib-lato", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHh30wWyWrFCbw7A.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u-w4BMUTPHjxsIPy-vNiPg7MU0.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh7USew-FGC_p9dw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI9w2PHA3s5dwt7w.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxk6XweuBCY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxswWyWrFCbw7A.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Lato" + } + ] + }, + { + "name": "Lavishly Yours", + "fontFamily": "Lavishly Yours, cursive", + "slug": "wp-font-lib-lavishly-yours", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lavishlyyours/v2/jizDREVIvGwH5OjiZmX9r5z_WxUY0TY7ikbI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lavishly Yours" + } + ] + }, + { + "name": "League Gothic", + "fontFamily": "League Gothic, sans-serif", + "slug": "wp-font-lib-league-gothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/leaguegothic/v6/qFdR35CBi4tvBz81xy7WG7ep-BQAY7Krj7feObpH_-amidQ6Q9hn.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "League Gothic" + } + ] + }, + { + "name": "League Script", + "fontFamily": "League Script, cursive", + "slug": "wp-font-lib-league-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/leaguescript/v24/CSR54zpSlumSWj9CGVsoBZdeaNNUuOwkC2s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "League Script" + } + ] + }, + { + "name": "League Spartan", + "fontFamily": "League Spartan, sans-serif", + "slug": "wp-font-lib-league-spartan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oXpBMdcFguczA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoTpBMdcFguczA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITpBMdcFguczA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTpBMdcFguczA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMzITpBMdcFguczA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMIIPpBMdcFguczA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPpBMdcFguczA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoPpBMdcFguczA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMV4PpBMdcFguczA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "League Spartan" + } + ] + }, + { + "name": "Leckerli One", + "fontFamily": "Leckerli One, cursive", + "slug": "wp-font-lib-leckerli-one", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/leckerlione/v16/V8mCoQH8VCsNttEnxnGQ-1itLZxcBtItFw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Leckerli One" + } + ] + }, + { + "name": "Ledger", + "fontFamily": "Ledger, serif", + "slug": "wp-font-lib-ledger", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ledger/v16/j8_q6-HK1L3if_sxm8DwHTBhHw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ledger" + } + ] + }, + { + "name": "Lekton", + "fontFamily": "Lekton, sans-serif", + "slug": "wp-font-lib-lekton", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lekton/v17/SZc43FDmLaWmWpBeXxfonUPL6Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lekton" + }, + { + "src": "http://fonts.gstatic.com/s/lekton/v17/SZc63FDmLaWmWpBuXR3sv0bb6StO.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Lekton" + }, + { + "src": "http://fonts.gstatic.com/s/lekton/v17/SZc73FDmLaWmWpBm4zjMlWjX4DJXgQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lekton" + } + ] + }, + { + "name": "Lemon", + "fontFamily": "Lemon, system-ui", + "slug": "wp-font-lib-lemon", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lemon/v15/HI_EiYEVKqRMq0jBSZXAQ4-d.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lemon" + } + ] + }, + { + "name": "Lemonada", + "fontFamily": "Lemonada, system-ui", + "slug": "wp-font-lib-lemonada", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGJOt2mfWc3Z2pTg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lemonada" + }, + { + "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGeut2mfWc3Z2pTg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lemonada" + }, + { + "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGSOt2mfWc3Z2pTg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lemonada" + }, + { + "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGpOx2mfWc3Z2pTg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lemonada" + }, + { + "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGnex2mfWc3Z2pTg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lemonada" + } + ] + }, + { + "name": "Lexend", + "fontFamily": "Lexend, sans-serif", + "slug": "wp-font-lib-lexend", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsX_LBte6KuGEo.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sW_LBte6KuGEo.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC2UW_LBte6KuGEo.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsW_LBte6KuGEo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCwkW_LBte6KuGEo.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC-UR_LBte6KuGEo.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC9wR_LBte6KuGEo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sR_LBte6KuGEo.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC5IR_LBte6KuGEo.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend" + } + ] + }, + { + "name": "Lexend Deca", + "fontFamily": "Lexend Deca, sans-serif", + "slug": "wp-font-lib-lexend-deca", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48MxArBPCqLNflg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cM1ArBPCqLNflg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4rs1ArBPCqLNflg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48M1ArBPCqLNflg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4ws1ArBPCqLNflg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4LspArBPCqLNflg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4F8pArBPCqLNflg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cMpArBPCqLNflg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4WcpArBPCqLNflg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + } + ] + }, + { + "name": "Lexend Exa", + "fontFamily": "Lexend Exa, sans-serif", + "slug": "wp-font-lib-lexend-exa", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7T6bHHJ8BRq0b.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7TqbHHJ8BRq0b.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9qlTqbHHJ8BRq0b.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9rJTqbHHJ8BRq0b.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9ocSabHHJ8BRq0b.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7SabHHJ8BRq0b.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9pSSabHHJ8BRq0b.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + } + ] + }, + { + "name": "Lexend Giga", + "fontFamily": "Lexend Giga, sans-serif", + "slug": "wp-font-lib-lexend-giga", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LmE68oo6eepYQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWLiE68oo6eepYQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRChriE68oo6eepYQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LiE68oo6eepYQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC6riE68oo6eepYQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCBr-E68oo6eepYQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCP7-E68oo6eepYQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWL-E68oo6eepYQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCcb-E68oo6eepYQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + } + ] + }, + { + "name": "Lexend Mega", + "fontFamily": "Lexend Mega, sans-serif", + "slug": "wp-font-lib-lexend-mega", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fivveyiq9EqQw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcfmvveyiq9EqQw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLr_mvveyiq9EqQw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fmvveyiq9EqQw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLw_mvveyiq9EqQw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLL_6vveyiq9EqQw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLFv6vveyiq9EqQw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcf6vveyiq9EqQw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLWP6vveyiq9EqQw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + } + ] + }, + { + "name": "Lexend Peta", + "fontFamily": "Lexend Peta, sans-serif", + "slug": "wp-font-lib-lexend-peta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SFyW1YuRTsnfw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSByW1YuRTsnfw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRtyByW1YuRTsnfw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SByW1YuRTsnfw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR2yByW1YuRTsnfw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRNydyW1YuRTsnfw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRDidyW1YuRTsnfw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSdyW1YuRTsnfw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRQCdyW1YuRTsnfw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + } + ] + }, + { + "name": "Lexend Tera", + "fontFamily": "Lexend Tera, sans-serif", + "slug": "wp-font-lib-lexend-tera", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zITdpz0fYxcrQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzMTdpz0fYxcrQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMuTMTdpz0fYxcrQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zMTdpz0fYxcrQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM1TMTdpz0fYxcrQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMOTQTdpz0fYxcrQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMADQTdpz0fYxcrQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzQTdpz0fYxcrQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMTjQTdpz0fYxcrQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + } + ] + }, + { + "name": "Lexend Zetta", + "fontFamily": "Lexend Zetta, sans-serif", + "slug": "wp-font-lib-lexend-zetta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bH0z5jbs8qbts.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bG0z5jbs8qbts.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy4jG0z5jbs8qbts.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bG0z5jbs8qbts.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy-TG0z5jbs8qbts.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCywjB0z5jbs8qbts.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCyzHB0z5jbs8qbts.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bB0z5jbs8qbts.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy3_B0z5jbs8qbts.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + } + ] + }, + { + "name": "Libre Barcode 128", + "fontFamily": "Libre Barcode 128, system-ui", + "slug": "wp-font-lib-libre-barcode-128", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebarcode128/v26/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A_gMk0izH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Barcode 128" + } + ] + }, + { + "name": "Libre Barcode 128 Text", + "fontFamily": "Libre Barcode 128 Text, system-ui", + "slug": "wp-font-lib-libre-barcode-128-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebarcode128text/v26/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cV3Y6M90w4k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Barcode 128 Text" + } + ] + }, + { + "name": "Libre Barcode 39", + "fontFamily": "Libre Barcode 39, system-ui", + "slug": "wp-font-lib-libre-barcode-39", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebarcode39/v19/-nFnOHM08vwC6h8Li1eQnP_AHzI2K_d709jy92k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Barcode 39" + } + ] + }, + { + "name": "Libre Barcode 39 Extended", + "fontFamily": "Libre Barcode 39 Extended, system-ui", + "slug": "wp-font-lib-libre-barcode-39-extended", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebarcode39extended/v25/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNRCOZ1GOBw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Barcode 39 Extended" + } + ] + }, + { + "name": "Libre Barcode 39 Extended Text", + "fontFamily": "Libre Barcode 39 Extended Text, system-ui", + "slug": "wp-font-lib-libre-barcode-39-extended-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebarcode39extendedtext/v25/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68fLIiPopNNA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Barcode 39 Extended Text" + } + ] + }, + { + "name": "Libre Barcode 39 Text", + "fontFamily": "Libre Barcode 39 Text, system-ui", + "slug": "wp-font-lib-libre-barcode-39-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebarcode39text/v26/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-031RRL-9rYaw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Barcode 39 Text" + } + ] + }, + { + "name": "Libre Barcode EAN13 Text", + "fontFamily": "Libre Barcode EAN13 Text, system-ui", + "slug": "wp-font-lib-libre-barcode-ean13-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebarcodeean13text/v19/wlpigxXFDU1_oCu9nfZytgIqSG0XRcJm_OQiB96PAGEki52WfA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Barcode EAN13 Text" + } + ] + }, + { + "name": "Libre Baskerville", + "fontFamily": "Libre Baskerville, serif", + "slug": "wp-font-lib-libre-baskerville", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNeYRI4CN2V.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Baskerville" + }, + { + "src": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxYaDc2V2ro.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Libre Baskerville" + }, + { + "src": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjYwI8Gcw6Oi.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Libre Baskerville" + } + ] + }, + { + "name": "Libre Bodoni", + "fontFamily": "Libre Bodoni, serif", + "slug": "wp-font-lib-libre-bodoni", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6I1fwWzZcOb3U3s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Bodoni" + }, + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6L9fwWzZcOb3U3s.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Libre Bodoni" + }, + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6FNYwWzZcOb3U3s.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Libre Bodoni" + }, + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6GpYwWzZcOb3U3s.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Libre Bodoni" + }, + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcKS_TdMTyQ3syLg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Libre Bodoni" + }, + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcGy_TdMTyQ3syLg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Libre Bodoni" + }, + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUc9yjTdMTyQ3syLg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Libre Bodoni" + }, + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUczijTdMTyQ3syLg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Libre Bodoni" + } + ] + }, + { + "name": "Libre Caslon Display", + "fontFamily": "Libre Caslon Display, serif", + "slug": "wp-font-lib-libre-caslon-display", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librecaslondisplay/v14/TuGOUUFxWphYQ6YI6q9Xp61FQzxDRKmzr2lRdRhtCC4d.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Caslon Display" + } + ] + }, + { + "name": "Libre Caslon Text", + "fontFamily": "Libre Caslon Text, serif", + "slug": "wp-font-lib-libre-caslon-text", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT878IGsGw1aF1JU10PUbTvNNaDMcq_3eNrHgO1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Caslon Text" + }, + { + "src": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT678IGsGw1aF1JU10PUbTvNNaDMfq91-dJGxO1q9o.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Libre Caslon Text" + }, + { + "src": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT578IGsGw1aF1JU10PUbTvNNaDMfID8sdjNR-8ssPt.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Libre Caslon Text" + } + ] + }, + { + "name": "Libre Franklin", + "fontFamily": "Libre Franklin, sans-serif", + "slug": "wp-font-lib-libre-franklin", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsSUB9rIb-JH1g.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsWUB9rIb-JH1g.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhcMWUB9rIb-JH1g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsWUB9rIb-JH1g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhHMWUB9rIb-JH1g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduh8MKUB9rIb-JH1g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhycKUB9rIb-JH1g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsKUB9rIb-JH1g.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhh8KUB9rIb-JH1g.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RdDMTedX1sGE.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8RNDMTedX1sGE.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oYiRNDMTedX1sGE.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RNDMTedX1sGE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZORNDMTedX1sGE.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oaiQ9DMTedX1sGE.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oabQ9DMTedX1sGE.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8Q9DMTedX1sGE.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05obVQ9DMTedX1sGE.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + } + ] + }, + { + "name": "Licorice", + "fontFamily": "Licorice, cursive", + "slug": "wp-font-lib-licorice", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/licorice/v3/t5tjIR8TMomTCAyjNk23hqLgzCHu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Licorice" + } + ] + }, + { + "name": "Life Savers", + "fontFamily": "Life Savers, system-ui", + "slug": "wp-font-lib-life-savers", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lifesavers/v18/ZXuie1UftKKabUQMgxAal_lrFgpbuNvB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Life Savers" + }, + { + "src": "http://fonts.gstatic.com/s/lifesavers/v18/ZXu_e1UftKKabUQMgxAal8HXOS5Tk8fIpPRW.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Life Savers" + }, + { + "src": "http://fonts.gstatic.com/s/lifesavers/v18/ZXu_e1UftKKabUQMgxAal8HLOi5Tk8fIpPRW.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Life Savers" + } + ] + }, + { + "name": "Lilita One", + "fontFamily": "Lilita One, system-ui", + "slug": "wp-font-lib-lilita-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lilitaone/v13/i7dPIFZ9Zz-WBtRtedDbUEZ2RFq7AwU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lilita One" + } + ] + }, + { + "name": "Lily Script One", + "fontFamily": "Lily Script One, system-ui", + "slug": "wp-font-lib-lily-script-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lilyscriptone/v15/LhW9MV7ZMfIPdMxeBjBvFN8SXLS4gsSjQNsRMg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lily Script One" + } + ] + }, + { + "name": "Limelight", + "fontFamily": "Limelight, system-ui", + "slug": "wp-font-lib-limelight", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/limelight/v17/XLYkIZL7aopJVbZJHDuYPeNGrnY2TA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Limelight" + } + ] + }, + { + "name": "Linden Hill", + "fontFamily": "Linden Hill, serif", + "slug": "wp-font-lib-linden-hill", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lindenhill/v22/-F61fjxoKSg9Yc3hZgO8ygFI7CwC009k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Linden Hill" + }, + { + "src": "http://fonts.gstatic.com/s/lindenhill/v22/-F63fjxoKSg9Yc3hZgO8yjFK5igg1l9kn-s.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Linden Hill" + } + ] + }, + { + "name": "Literata", + "fontFamily": "Literata, serif", + "slug": "wp-font-lib-literata", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG_F_bcTWCWp8g.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbE-_F_bcTWCWp8g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbBG_F_bcTWCWp8g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbCO_F_bcTWCWp8g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbM-4F_bcTWCWp8g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbPa4F_bcTWCWp8g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG4F_bcTWCWp8g.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbLi4F_bcTWCWp8g.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7XWSUKTt8iVow.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8obXWSUKTt8iVow.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8_7XWSUKTt8iVow.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8zbXWSUKTt8iVow.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8IbLWSUKTt8iVow.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8GLLWSUKTt8iVow.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7LWSUKTt8iVow.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8VrLWSUKTt8iVow.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Literata" + } + ] + }, + { + "name": "Liu Jian Mao Cao", + "fontFamily": "Liu Jian Mao Cao, cursive", + "slug": "wp-font-lib-liu-jian-mao-cao", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/liujianmaocao/v15/~ChIKEExpdSBKaWFuIE1hbyBDYW8gACoECAEYAQ==.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Liu Jian Mao Cao" + } + ] + }, + { + "name": "Livvic", + "fontFamily": "Livvic, sans-serif", + "slug": "wp-font-lib-livvic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCr-x1S2hzjrlffC-M-mHnOSOuk.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCt-x1S2hzjrlfXbdtakn3sTfukQHs.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffp8IeslfCQfK9WQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdv2s13GY_etWWIJ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffw8EeslfCQfK9WQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbduSsF3GY_etWWIJ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCp-x1S2hzjrlfnb-k6unzeSA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCr-x1S2hzjrlfXbeM-mHnOSOuk.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffm8AeslfCQfK9WQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdvKsV3GY_etWWIJ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlfft8ceslfCQfK9WQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdvmtl3GY_etWWIJ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlff08YeslfCQfK9WQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbduCt13GY_etWWIJ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlff68QeslfCQfK9WQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdu6tV3GY_etWWIJ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Livvic" + } + ] + }, + { + "name": "Lobster", + "fontFamily": "Lobster, system-ui", + "slug": "wp-font-lib-lobster", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lobster/v28/neILzCirqoswsqX9_oWsMqEzSJQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lobster" + } + ] + }, + { + "name": "Lobster Two", + "fontFamily": "Lobster Two, system-ui", + "slug": "wp-font-lib-lobster-two", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lobstertwo/v18/BngMUXZGTXPUvIoyV6yN59fK7KSJ4ACD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lobster Two" + }, + { + "src": "http://fonts.gstatic.com/s/lobstertwo/v18/BngOUXZGTXPUvIoyV6yN5-fI5qCr5RCDY_k.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Lobster Two" + }, + { + "src": "http://fonts.gstatic.com/s/lobstertwo/v18/BngRUXZGTXPUvIoyV6yN5-92w4CByxyKeuDp.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lobster Two" + }, + { + "src": "http://fonts.gstatic.com/s/lobstertwo/v18/BngTUXZGTXPUvIoyV6yN5-fI3hyEwRiof_DpXMY.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Lobster Two" + } + ] + }, + { + "name": "Londrina Outline", + "fontFamily": "Londrina Outline, system-ui", + "slug": "wp-font-lib-londrina-outline", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/londrinaoutline/v23/C8c44dM8vmb14dfsZxhetg3pDH-SfuoxrSKMDvI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Londrina Outline" + } + ] + }, + { + "name": "Londrina Shadow", + "fontFamily": "Londrina Shadow, system-ui", + "slug": "wp-font-lib-londrina-shadow", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/londrinashadow/v22/oPWX_kB4kOQoWNJmjxLV5JuoCUlXRlaSxkrMCQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Londrina Shadow" + } + ] + }, + { + "name": "Londrina Sketch", + "fontFamily": "Londrina Sketch, system-ui", + "slug": "wp-font-lib-londrina-sketch", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/londrinasketch/v21/c4m41npxGMTnomOHtRU68eIJn8qfWWn5Pos6CA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Londrina Sketch" + } + ] + }, + { + "name": "Londrina Solid", + "fontFamily": "Londrina Solid, system-ui", + "slug": "wp-font-lib-londrina-solid", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/londrinasolid/v15/flUjRq6sw40kQEJxWNgkLuudGfs9KBYesZHhV64.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Londrina Solid" + }, + { + "src": "http://fonts.gstatic.com/s/londrinasolid/v15/flUiRq6sw40kQEJxWNgkLuudGfv1CjY0n53oTrcL.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Londrina Solid" + }, + { + "src": "http://fonts.gstatic.com/s/londrinasolid/v15/flUhRq6sw40kQEJxWNgkLuudGcNZIhI8tIHh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Londrina Solid" + }, + { + "src": "http://fonts.gstatic.com/s/londrinasolid/v15/flUiRq6sw40kQEJxWNgkLuudGfvdDzY0n53oTrcL.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Londrina Solid" + } + ] + }, + { + "name": "Long Cang", + "fontFamily": "Long Cang, cursive", + "slug": "wp-font-lib-long-cang", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/longcang/v17/LYjAdGP8kkgoTec8zkRgrXArXN7HWQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Long Cang" + } + ] + }, + { + "name": "Lora", + "fontFamily": "Lora, serif", + "slug": "wp-font-lib-lora", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787weuyJGmKxemMeZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lora" + }, + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787wsuyJGmKxemMeZ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lora" + }, + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787zAvCJGmKxemMeZ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lora" + }, + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787z5vCJGmKxemMeZ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lora" + }, + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFkqh8ndeZzZ0.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Lora" + }, + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-PgFkqh8ndeZzZ0.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Lora" + }, + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-BQCkqh8ndeZzZ0.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Lora" + }, + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-C0Ckqh8ndeZzZ0.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Lora" + } + ] + }, + { + "name": "Love Light", + "fontFamily": "Love Light, cursive", + "slug": "wp-font-lib-love-light", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lovelight/v3/t5tlIR0TNJyZWimpNAXDjKbCyTHuspo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Love Light" + } + ] + }, + { + "name": "Love Ya Like A Sister", + "fontFamily": "Love Ya Like A Sister, system-ui", + "slug": "wp-font-lib-love-ya-like-a-sister", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/loveyalikeasister/v16/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be78nZcsGGycA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Love Ya Like A Sister" + } + ] + }, + { + "name": "Loved by the King", + "fontFamily": "Loved by the King, cursive", + "slug": "wp-font-lib-loved-by-the-king", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lovedbytheking/v17/Gw6gwdP76VDVJNXerebZxUMeRXUF2PiNlXFu2R64.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Loved by the King" + } + ] + }, + { + "name": "Lovers Quarrel", + "fontFamily": "Lovers Quarrel, cursive", + "slug": "wp-font-lib-lovers-quarrel", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/loversquarrel/v21/Yq6N-LSKXTL-5bCy8ksBzpQ_-zAsY7pO6siz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lovers Quarrel" + } + ] + }, + { + "name": "Luckiest Guy", + "fontFamily": "Luckiest Guy, system-ui", + "slug": "wp-font-lib-luckiest-guy", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/luckiestguy/v18/_gP_1RrxsjcxVyin9l9n_j2RStR3qDpraA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Luckiest Guy" + } + ] + }, + { + "name": "Lusitana", + "fontFamily": "Lusitana, serif", + "slug": "wp-font-lib-lusitana", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lusitana/v13/CSR84z9ShvucWzsMKxhaRuMiSct_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lusitana" + }, + { + "src": "http://fonts.gstatic.com/s/lusitana/v13/CSR74z9ShvucWzsMKyDmaccqYtd2vfwk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lusitana" + } + ] + }, + { + "name": "Lustria", + "fontFamily": "Lustria, serif", + "slug": "wp-font-lib-lustria", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lustria/v13/9oRONYodvDEyjuhOrCg5MtPyAcg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lustria" + } + ] + }, + { + "name": "Luxurious Roman", + "fontFamily": "Luxurious Roman, system-ui", + "slug": "wp-font-lib-luxurious-roman", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/luxuriousroman/v4/buEupou_ZcP1w0yTKxJJokVSmbpqYgckeo9RMw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Luxurious Roman" + } + ] + }, + { + "name": "Luxurious Script", + "fontFamily": "Luxurious Script, cursive", + "slug": "wp-font-lib-luxurious-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/luxuriousscript/v5/ahcCv9e7yydulT32KZ0rBIoD7DzMg0rOby1JtYk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Luxurious Script" + } + ] + }, + { + "name": "M PLUS 1", + "fontFamily": "M PLUS 1, sans-serif", + "slug": "wp-font-lib-m-plus-1", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSe78nZcsGGycA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51Sa78nZcsGGycA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Cya78nZcsGGycA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSa78nZcsGGycA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Zya78nZcsGGycA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5iyG78nZcsGGycA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5siG78nZcsGGycA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51SG78nZcsGGycA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5_CG78nZcsGGycA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + } + ] + }, + { + "name": "M PLUS 1 Code", + "fontFamily": "M PLUS 1 Code, sans-serif", + "slug": "wp-font-lib-m-plus-1-code", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0XHpapwmdZhY.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "M PLUS 1 Code" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7gN0HHpapwmdZhY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "M PLUS 1 Code" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7jT0HHpapwmdZhY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "M PLUS 1 Code" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0HHpapwmdZhY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "M PLUS 1 Code" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7i_0HHpapwmdZhY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "M PLUS 1 Code" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hT13HpapwmdZhY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "M PLUS 1 Code" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hq13HpapwmdZhY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "M PLUS 1 Code" + } + ] + }, + { + "name": "M PLUS 1p", + "fontFamily": "M PLUS 1p, sans-serif", + "slug": "wp-font-lib-m-plus-1p", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tleuShHdiFyPFzBRrQnDQAUW3aq-5N.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "M PLUS 1p" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQVBYge0PWovdU4w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "M PLUS 1p" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tjeuShHdiFyPFzBRro-D4Ec2jKqw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "M PLUS 1p" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQDBcge0PWovdU4w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "M PLUS 1p" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQRBEge0PWovdU4w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "M PLUS 1p" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQWBIge0PWovdU4w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "M PLUS 1p" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQfBMge0PWovdU4w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "M PLUS 1p" + } + ] + }, + { + "name": "M PLUS 2", + "fontFamily": "M PLUS 2, sans-serif", + "slug": "wp-font-lib-m-plus-2", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa-VxlqHrzNgAw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwua6VxlqHrzNgAw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwZ66VxlqHrzNgAw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa6VxlqHrzNgAw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwC66VxlqHrzNgAw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw56mVxlqHrzNgAw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw3qmVxlqHrzNgAw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwuamVxlqHrzNgAw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwkKmVxlqHrzNgAw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + } + ] + }, + { + "name": "M PLUS Code Latin", + "fontFamily": "M PLUS Code Latin, sans-serif", + "slug": "wp-font-lib-m-plus-code-latin", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbB6i5MqF9TRwg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "M PLUS Code Latin" + }, + { + "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1MbA6i5MqF9TRwg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "M PLUS Code Latin" + }, + { + "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1BjA6i5MqF9TRwg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "M PLUS Code Latin" + }, + { + "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbA6i5MqF9TRwg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "M PLUS Code Latin" + }, + { + "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1HTA6i5MqF9TRwg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "M PLUS Code Latin" + }, + { + "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1JjH6i5MqF9TRwg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "M PLUS Code Latin" + }, + { + "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1KHH6i5MqF9TRwg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "M PLUS Code Latin" + } + ] + }, + { + "name": "M PLUS Rounded 1c", + "fontFamily": "M PLUS Rounded 1c, sans-serif", + "slug": "wp-font-lib-m-plus-rounded-1c", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGCAYIAV6gnpUpoWwNkYvrugw9RuM3ixLsg6-av1x0.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "M PLUS Rounded 1c" + }, + { + "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0q5psKxeqmzgRK.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "M PLUS Rounded 1c" + }, + { + "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWGzr8C7vav.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "M PLUS Rounded 1c" + }, + { + "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM1y55sKxeqmzgRK.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "M PLUS Rounded 1c" + }, + { + "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM064ZsKxeqmzgRK.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "M PLUS Rounded 1c" + }, + { + "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0m4psKxeqmzgRK.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "M PLUS Rounded 1c" + }, + { + "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0C45sKxeqmzgRK.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "M PLUS Rounded 1c" + } + ] + }, + { + "name": "Ma Shan Zheng", + "fontFamily": "Ma Shan Zheng, cursive", + "slug": "wp-font-lib-ma-shan-zheng", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mashanzheng/v10/NaPecZTRCLxvwo41b4gvzkXaRMTsDIRSfr0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ma Shan Zheng" + } + ] + }, + { + "name": "Macondo", + "fontFamily": "Macondo, system-ui", + "slug": "wp-font-lib-macondo", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/macondo/v21/RrQQboN9-iB1IXmOS2XO0LBBd4Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Macondo" + } + ] + }, + { + "name": "Macondo Swash Caps", + "fontFamily": "Macondo Swash Caps, system-ui", + "slug": "wp-font-lib-macondo-swash-caps", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/macondoswashcaps/v20/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Oekoa_mm5bA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Macondo Swash Caps" + } + ] + }, + { + "name": "Mada", + "fontFamily": "Mada, sans-serif", + "slug": "wp-font-lib-mada", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFlOkHkw2-m9x2iC.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mada" + }, + { + "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFmQkHkw2-m9x2iC.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mada" + }, + { + "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFnOkHkw2-m9x2iC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mada" + }, + { + "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFn8kHkw2-m9x2iC.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mada" + }, + { + "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFkQl3kw2-m9x2iC.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mada" + }, + { + "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFkpl3kw2-m9x2iC.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mada" + }, + { + "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFlOl3kw2-m9x2iC.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Mada" + }, + { + "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFlnl3kw2-m9x2iC.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Mada" + } + ] + }, + { + "name": "Magra", + "fontFamily": "Magra, sans-serif", + "slug": "wp-font-lib-magra", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/magra/v14/uK_94ruaZus72k5xIDMfO-ed.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Magra" + }, + { + "src": "http://fonts.gstatic.com/s/magra/v14/uK_w4ruaZus72nbNDxcXEPuUX1ow.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Magra" + } + ] + }, + { + "name": "Maiden Orange", + "fontFamily": "Maiden Orange, system-ui", + "slug": "wp-font-lib-maiden-orange", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/maidenorange/v25/kJE1BuIX7AUmhi2V4m08kb1XjOZdCZS8FY8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Maiden Orange" + } + ] + }, + { + "name": "Maitree", + "fontFamily": "Maitree, serif", + "slug": "wp-font-lib-maitree", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklhGNWJGovLdh6OE.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Maitree" + }, + { + "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklnWOWJGovLdh6OE.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Maitree" + }, + { + "src": "http://fonts.gstatic.com/s/maitree/v10/MjQGmil5tffhpBrkrtmmfJmDoL4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Maitree" + }, + { + "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrkli2PWJGovLdh6OE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Maitree" + }, + { + "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklgGIWJGovLdh6OE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Maitree" + }, + { + "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklmWJWJGovLdh6OE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Maitree" + } + ] + }, + { + "name": "Major Mono Display", + "fontFamily": "Major Mono Display, monospace", + "slug": "wp-font-lib-major-mono-display", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/majormonodisplay/v13/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLCn2QIndPww.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Major Mono Display" + } + ] + }, + { + "name": "Mako", + "fontFamily": "Mako, sans-serif", + "slug": "wp-font-lib-mako", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mako/v18/H4coBX6Mmc_Z0ST09g478Lo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mako" + } + ] + }, + { + "name": "Mali", + "fontFamily": "Mali, cursive", + "slug": "wp-font-lib-mali", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QOLlKlRaJdbWgdY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8wlVQIfTTkdbJYA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QIbmKlRaJdbWgdY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8plZQIfTTkdbJYA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0ba2SRONuN4eCrODlxxOd8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bU2SRONuN4SCjECn50Kd_PmA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QN7nKlRaJdbWgdY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8_ldQIfTTkdbJYA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QPLgKlRaJdbWgdY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj80lBQIfTTkdbJYA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QJbhKlRaJdbWgdY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8tlFQIfTTkdbJYA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Mali" + } + ] + }, + { + "name": "Mallanna", + "fontFamily": "Mallanna, sans-serif", + "slug": "wp-font-lib-mallanna", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mallanna/v13/hv-Vlzx-KEQb84YaDGwzEzRwVvJ-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mallanna" + } + ] + }, + { + "name": "Mandali", + "fontFamily": "Mandali, sans-serif", + "slug": "wp-font-lib-mandali", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mandali/v14/LhWlMVbYOfASNfNUVFk1ZPdcKtA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mandali" + } + ] + }, + { + "name": "Manjari", + "fontFamily": "Manjari, sans-serif", + "slug": "wp-font-lib-manjari", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/manjari/v9/k3kSo8UPMOBO2w1UdbroK2vFIaOV8A.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Manjari" + }, + { + "src": "http://fonts.gstatic.com/s/manjari/v9/k3kQo8UPMOBO2w1UTd7iL0nAMaM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Manjari" + }, + { + "src": "http://fonts.gstatic.com/s/manjari/v9/k3kVo8UPMOBO2w1UdWLNC0HrLaqM6Q4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Manjari" + } + ] + }, + { + "name": "Manrope", + "fontFamily": "Manrope, sans-serif", + "slug": "wp-font-lib-manrope", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59FO_F87jxeN7B.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Manrope" + }, + { + "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk6jFO_F87jxeN7B.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Manrope" + }, + { + "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_F87jxeN7B.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Manrope" + }, + { + "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_F87jxeN7B.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Manrope" + }, + { + "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_F87jxeN7B.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Manrope" + }, + { + "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_F87jxeN7B.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Manrope" + }, + { + "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_F87jxeN7B.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Manrope" + } + ] + }, + { + "name": "Mansalva", + "fontFamily": "Mansalva, cursive", + "slug": "wp-font-lib-mansalva", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mansalva/v12/aWB4m0aacbtDfvq5NJllI47vdyBg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mansalva" + } + ] + }, + { + "name": "Manuale", + "fontFamily": "Manuale, serif", + "slug": "wp-font-lib-manuale", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeG6e7wD1TB_JHHY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHke7wD1TB_JHHY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHWe7wD1TB_JHHY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeE6fLwD1TB_JHHY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeEDfLwD1TB_JHHY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeFkfLwD1TB_JHHY.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOApA3zRdIWHYr8M.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOFRA3zRdIWHYr8M.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOGZA3zRdIWHYr8M.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOIpH3zRdIWHYr8M.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOLNH3zRdIWHYr8M.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsONRH3zRdIWHYr8M.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Manuale" + } + ] + }, + { + "name": "Marcellus", + "fontFamily": "Marcellus, serif", + "slug": "wp-font-lib-marcellus", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/marcellus/v13/wEO_EBrOk8hQLDvIAF8FUfAL3EsHiA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Marcellus" + } + ] + }, + { + "name": "Marcellus SC", + "fontFamily": "Marcellus SC, serif", + "slug": "wp-font-lib-marcellus-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/marcellussc/v13/ke8iOgUHP1dg-Rmi6RWjbLEPgdydGKikhA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Marcellus SC" + } + ] + }, + { + "name": "Marck Script", + "fontFamily": "Marck Script, cursive", + "slug": "wp-font-lib-marck-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/marckscript/v17/nwpTtK2oNgBA3Or78gapdwuCzyI-aMPF7Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Marck Script" + } + ] + }, + { + "name": "Margarine", + "fontFamily": "Margarine, system-ui", + "slug": "wp-font-lib-margarine", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/margarine/v22/qkBXXvoE6trLT9Y7YLye5JRLkAXbMQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Margarine" + } + ] + }, + { + "name": "Marhey", + "fontFamily": "Marhey, system-ui", + "slug": "wp-font-lib-marhey", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBZVwO2cXiGevOMw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Marhey" + }, + { + "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBctwO2cXiGevOMw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Marhey" + }, + { + "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBflwO2cXiGevOMw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Marhey" + }, + { + "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBRV3O2cXiGevOMw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Marhey" + }, + { + "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBSx3O2cXiGevOMw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Marhey" + } + ] + }, + { + "name": "Markazi Text", + "fontFamily": "Markazi Text, serif", + "slug": "wp-font-lib-markazi-text", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQT4MlBekmJLo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Markazi Text" + }, + { + "src": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtcaQT4MlBekmJLo.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Markazi Text" + }, + { + "src": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtSqXT4MlBekmJLo.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Markazi Text" + }, + { + "src": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtROXT4MlBekmJLo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Markazi Text" + } + ] + }, + { + "name": "Marko One", + "fontFamily": "Marko One, serif", + "slug": "wp-font-lib-marko-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/markoone/v22/9Btq3DFG0cnVM5lw1haaKpUfrHPzUw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Marko One" + } + ] + }, + { + "name": "Marmelad", + "fontFamily": "Marmelad, sans-serif", + "slug": "wp-font-lib-marmelad", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/marmelad/v18/Qw3eZQdSHj_jK2e-8tFLG-YMC0R8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Marmelad" + } + ] + }, + { + "name": "Martel", + "fontFamily": "Martel, serif", + "slug": "wp-font-lib-martel", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVqekahRbX9vnDzw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Martel" + }, + { + "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVzeoahRbX9vnDzw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Martel" + }, + { + "src": "http://fonts.gstatic.com/s/martel/v10/PN_xRfK9oXHga0XtYcI-jT3L_w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Martel" + }, + { + "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVuewahRbX9vnDzw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Martel" + }, + { + "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV3e0ahRbX9vnDzw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Martel" + }, + { + "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVwe4ahRbX9vnDzw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Martel" + }, + { + "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV5e8ahRbX9vnDzw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Martel" + } + ] + }, + { + "name": "Martel Sans", + "fontFamily": "Martel Sans, sans-serif", + "slug": "wp-font-lib-martel-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAX5suHFUknqMxQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Martel Sans" + }, + { + "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBz5cuHFUknqMxQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Martel Sans" + }, + { + "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GsssGi7VdzDgKjM-4d8ijfze-PPlUu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Martel Sans" + }, + { + "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAH48uHFUknqMxQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Martel Sans" + }, + { + "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBj4suHFUknqMxQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Martel Sans" + }, + { + "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hB_4cuHFUknqMxQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Martel Sans" + }, + { + "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBb4MuHFUknqMxQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Martel Sans" + } + ] + }, + { + "name": "Martian Mono", + "fontFamily": "Martian Mono, monospace", + "slug": "wp-font-lib-martian-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qus6WD75kdpF2.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + }, + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY3qu86WD75kdpF2.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + }, + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY00u86WD75kdpF2.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + }, + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qu86WD75kdpF2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + }, + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1Yu86WD75kdpF2.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + }, + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY20vM6WD75kdpF2.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + }, + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY2NvM6WD75kdpF2.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + }, + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY3qvM6WD75kdpF2.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + } + ] + }, + { + "name": "Marvel", + "fontFamily": "Marvel, sans-serif", + "slug": "wp-font-lib-marvel", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/marvel/v14/nwpVtKeoNgBV0qaIkV7ED366zg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Marvel" + }, + { + "src": "http://fonts.gstatic.com/s/marvel/v14/nwpXtKeoNgBV0qa4k1TALXuqzhA7.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Marvel" + }, + { + "src": "http://fonts.gstatic.com/s/marvel/v14/nwpWtKeoNgBV0qawLXHgB1WmxwkiYQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Marvel" + }, + { + "src": "http://fonts.gstatic.com/s/marvel/v14/nwpQtKeoNgBV0qa4k2x8Al-i5QwyYdrc.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Marvel" + } + ] + }, + { + "name": "Mate", + "fontFamily": "Mate, serif", + "slug": "wp-font-lib-mate", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mate/v15/m8JdjftRd7WZ2z28WoXSaLU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mate" + }, + { + "src": "http://fonts.gstatic.com/s/mate/v15/m8JTjftRd7WZ6z-2XqfXeLVdbw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Mate" + } + ] + }, + { + "name": "Mate SC", + "fontFamily": "Mate SC, serif", + "slug": "wp-font-lib-mate-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/matesc/v22/-nF8OGQ1-uoVr2wKyiXZ95OkJwA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mate SC" + } + ] + }, + { + "name": "Material Icons", + "fontFamily": "Material Icons, monospace", + "slug": "wp-font-lib-material-icons", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDsNZIhI8tIHh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Icons" + } + ] + }, + { + "name": "Material Icons Outlined", + "fontFamily": "Material Icons Outlined, monospace", + "slug": "wp-font-lib-material-icons-outlined", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialiconsoutlined/v109/gok-H7zzDkdnRel8-DQ6KAXJ69wP1tGnf4ZGhUcdl5GuI2Ze.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Icons Outlined" + } + ] + }, + { + "name": "Material Icons Round", + "fontFamily": "Material Icons Round, monospace", + "slug": "wp-font-lib-material-icons-round", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialiconsround/v108/LDItaoyNOAY6Uewc665JcIzCKsKc_M9flwmMq_fTTvg-.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Icons Round" + } + ] + }, + { + "name": "Material Icons Sharp", + "fontFamily": "Material Icons Sharp, monospace", + "slug": "wp-font-lib-material-icons-sharp", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialiconssharp/v109/oPWQ_lt5nv4pWNJpghLP75WiFR4kLh3kvmvSImEyc0vd.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Icons Sharp" + } + ] + }, + { + "name": "Material Icons Two Tone", + "fontFamily": "Material Icons Two Tone, monospace", + "slug": "wp-font-lib-material-icons-two-tone", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialiconstwotone/v112/hESh6WRmNCxEqUmNyh3JDeGxjVVyMg4tHGctNCu3NjDrH_77.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Icons Two Tone" + } + ] + }, + { + "name": "Material Symbols Outlined", + "fontFamily": "Material Symbols Outlined, monospace", + "slug": "wp-font-lib-material-symbols-outlined", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v114/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHeembd5zrTgt.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Material Symbols Outlined" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v114/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDAvHOembd5zrTgt.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Material Symbols Outlined" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v114/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDDxHOembd5zrTgt.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Material Symbols Outlined" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v114/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHOembd5zrTgt.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Symbols Outlined" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v114/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCdHOembd5zrTgt.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Material Symbols Outlined" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v114/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDBxG-embd5zrTgt.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Material Symbols Outlined" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v114/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDBIG-embd5zrTgt.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Material Symbols Outlined" + } + ] + }, + { + "name": "Material Symbols Rounded", + "fontFamily": "Material Symbols Rounded, monospace", + "slug": "wp-font-lib-material-symbols-rounded", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v113/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIekXxKJKJBjAa8.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Material Symbols Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v113/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rAelXxKJKJBjAa8.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Material Symbols Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v113/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rNmlXxKJKJBjAa8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Material Symbols Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v113/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIelXxKJKJBjAa8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Symbols Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v113/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rLWlXxKJKJBjAa8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Material Symbols Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v113/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rFmiXxKJKJBjAa8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Material Symbols Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v113/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rGCiXxKJKJBjAa8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Material Symbols Rounded" + } + ] + }, + { + "name": "Material Symbols Sharp", + "fontFamily": "Material Symbols Sharp, monospace", + "slug": "wp-font-lib-material-symbols-sharp", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v110/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLozCOJ1H7-knk.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Material Symbols Sharp" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v110/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxMLojCOJ1H7-knk.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Material Symbols Sharp" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v110/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxPVojCOJ1H7-knk.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Material Symbols Sharp" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v110/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLojCOJ1H7-knk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Symbols Sharp" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v110/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxO5ojCOJ1H7-knk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Material Symbols Sharp" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v110/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxNVpTCOJ1H7-knk.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Material Symbols Sharp" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v110/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxNspTCOJ1H7-knk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Material Symbols Sharp" + } + ] + }, + { + "name": "Maven Pro", + "fontFamily": "Maven Pro, sans-serif", + "slug": "wp-font-lib-maven-pro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8SX25nCpozp5GvU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Maven Pro" + }, + { + "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Rf25nCpozp5GvU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Maven Pro" + }, + { + "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8fvx5nCpozp5GvU.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Maven Pro" + }, + { + "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8cLx5nCpozp5GvU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Maven Pro" + }, + { + "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8aXx5nCpozp5GvU.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Maven Pro" + }, + { + "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Yzx5nCpozp5GvU.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Maven Pro" + } + ] + }, + { + "name": "McLaren", + "fontFamily": "McLaren, system-ui", + "slug": "wp-font-lib-mclaren", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mclaren/v14/2EbnL-ZuAXFqZFXISYYf8z2Yt_c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "McLaren" + } + ] + }, + { + "name": "Mea Culpa", + "fontFamily": "Mea Culpa, cursive", + "slug": "wp-font-lib-mea-culpa", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/meaculpa/v3/AMOTz4GcuWbEIuza8jsZms0QW3mqyg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mea Culpa" + } + ] + }, + { + "name": "Meddon", + "fontFamily": "Meddon, cursive", + "slug": "wp-font-lib-meddon", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/meddon/v20/kmK8ZqA2EgDNeHTZhBdB3y_Aow.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Meddon" + } + ] + }, + { + "name": "MedievalSharp", + "fontFamily": "MedievalSharp, system-ui", + "slug": "wp-font-lib-medievalsharp", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/medievalsharp/v24/EvOJzAlL3oU5AQl2mP5KdgptAq96MwvXLDk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "MedievalSharp" + } + ] + }, + { + "name": "Medula One", + "fontFamily": "Medula One, system-ui", + "slug": "wp-font-lib-medula-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/medulaone/v19/YA9Wr0qb5kjJM6l2V0yukiEqs7GtlvY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Medula One" + } + ] + }, + { + "name": "Meera Inimai", + "fontFamily": "Meera Inimai, sans-serif", + "slug": "wp-font-lib-meera-inimai", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/meerainimai/v12/845fNMM5EIqOW5MPuvO3ILep_2jDVevnLQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Meera Inimai" + } + ] + }, + { + "name": "Megrim", + "fontFamily": "Megrim, system-ui", + "slug": "wp-font-lib-megrim", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/megrim/v16/46kulbz5WjvLqJZlbWXgd0RY1g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Megrim" + } + ] + }, + { + "name": "Meie Script", + "fontFamily": "Meie Script, cursive", + "slug": "wp-font-lib-meie-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/meiescript/v21/_LOImzDK7erRjhunIspaMjxn5IXg0WDz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Meie Script" + } + ] + }, + { + "name": "Meow Script", + "fontFamily": "Meow Script, cursive", + "slug": "wp-font-lib-meow-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/meowscript/v5/0FlQVPqanlaJrtr8AnJ0ESch0_0CfDf1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Meow Script" + } + ] + }, + { + "name": "Merienda", + "fontFamily": "Merienda, cursive", + "slug": "wp-font-lib-merienda", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5JHhoSU78QGBV0A.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Merienda" + }, + { + "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5enhoSU78QGBV0A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Merienda" + }, + { + "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5SHhoSU78QGBV0A.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Merienda" + }, + { + "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5pH9oSU78QGBV0A.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Merienda" + }, + { + "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5nX9oSU78QGBV0A.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Merienda" + }, + { + "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5-n9oSU78QGBV0A.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Merienda" + }, + { + "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5039oSU78QGBV0A.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Merienda" + } + ] + }, + { + "name": "Merriweather", + "fontFamily": "Merriweather, serif", + "slug": "wp-font-lib-merriweather", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l521wRpX837pvjxPA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Merriweather" + }, + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7lXcf_hP3hPGWH.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Merriweather" + }, + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-440qyriQwlOrhSvowK_l5OeyxNV-bnrw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Merriweather" + }, + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4m0qyriQwlOrhSvowK_l5-eSZJdeP3r-Ho.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Merriweather" + }, + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52xwNpX837pvjxPA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Merriweather" + }, + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR71Wsf_hP3hPGWH.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Merriweather" + }, + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52_wFpX837pvjxPA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Merriweather" + }, + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7NWMf_hP3hPGWH.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Merriweather" + } + ] + }, + { + "name": "Merriweather Sans", + "fontFamily": "Merriweather Sans, sans-serif", + "slug": "wp-font-lib-merriweather-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZ_O4ljuEG7xFHnQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZou4ljuEG7xFHnQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZkO4ljuEG7xFHnQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZfOkljuEG7xFHnQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZRekljuEG7xFHnQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZIukljuEG7xFHnQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq2TzesCzRRXnaur.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3NzesCzRRXnaur.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3_zesCzRRXnaur.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0TyusCzRRXnaur.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0qyusCzRRXnaur.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq1NyusCzRRXnaur.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Merriweather Sans" + } + ] + }, + { + "name": "Metal", + "fontFamily": "Metal, system-ui", + "slug": "wp-font-lib-metal", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/metal/v28/lW-wwjUJIXTo7i3nnoQAUdN2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Metal" + } + ] + }, + { + "name": "Metal Mania", + "fontFamily": "Metal Mania, system-ui", + "slug": "wp-font-lib-metal-mania", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/metalmania/v22/RWmMoKWb4e8kqMfBUdPFJeXCg6UKDXlq.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Metal Mania" + } + ] + }, + { + "name": "Metamorphous", + "fontFamily": "Metamorphous, system-ui", + "slug": "wp-font-lib-metamorphous", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/metamorphous/v18/Wnz8HA03aAXcC39ZEX5y1330PCCthTsmaQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Metamorphous" + } + ] + }, + { + "name": "Metrophobic", + "fontFamily": "Metrophobic, sans-serif", + "slug": "wp-font-lib-metrophobic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/metrophobic/v23/sJoA3LZUhMSAPV_u0qwiAT-J737FPEEL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Metrophobic" + } + ] + }, + { + "name": "Michroma", + "fontFamily": "Michroma, sans-serif", + "slug": "wp-font-lib-michroma", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/michroma/v16/PN_zRfy9qWD8fEagAMg6rzjb_-Da.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Michroma" + } + ] + }, + { + "name": "Milonga", + "fontFamily": "Milonga, system-ui", + "slug": "wp-font-lib-milonga", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/milonga/v20/SZc53FHnIaK9W5kffz3GkUrS8DI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Milonga" + } + ] + }, + { + "name": "Miltonian", + "fontFamily": "Miltonian, system-ui", + "slug": "wp-font-lib-miltonian", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/miltonian/v26/zOL-4pbPn6Ne9JqTg9mr6e5As-FeiQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Miltonian" + } + ] + }, + { + "name": "Miltonian Tattoo", + "fontFamily": "Miltonian Tattoo, system-ui", + "slug": "wp-font-lib-miltonian-tattoo", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/miltoniantattoo/v28/EvOUzBRL0o0kCxF-lcMCQxlpVsA_FwP8MDBku-s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Miltonian Tattoo" + } + ] + }, + { + "name": "Mina", + "fontFamily": "Mina, sans-serif", + "slug": "wp-font-lib-mina", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mina/v11/-nFzOGc18vARrz9j7i3y65o.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mina" + }, + { + "src": "http://fonts.gstatic.com/s/mina/v11/-nF8OGc18vARl4NMyiXZ95OkJwA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mina" + } + ] + }, + { + "name": "Mingzat", + "fontFamily": "Mingzat, sans-serif", + "slug": "wp-font-lib-mingzat", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mingzat/v6/0QIgMX5C-o-oWWyvBttkm_mv670.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mingzat" + } + ] + }, + { + "name": "Miniver", + "fontFamily": "Miniver, system-ui", + "slug": "wp-font-lib-miniver", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/miniver/v21/eLGcP-PxIg-5H0vC770Cy8r8fWA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Miniver" + } + ] + }, + { + "name": "Miriam Libre", + "fontFamily": "Miriam Libre, sans-serif", + "slug": "wp-font-lib-miriam-libre", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/miriamlibre/v14/DdTh798HsHwubBAqfkcBTL_vYJn_Teun9g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Miriam Libre" + }, + { + "src": "http://fonts.gstatic.com/s/miriamlibre/v14/DdT-798HsHwubBAqfkcBTL_X3LbbRcC7_-Z7Hg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Miriam Libre" + } + ] + }, + { + "name": "Mirza", + "fontFamily": "Mirza, system-ui", + "slug": "wp-font-lib-mirza", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mirza/v15/co3ImWlikiN5EurdKMewsrvI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mirza" + }, + { + "src": "http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtIpAeO4mafBomDi.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mirza" + }, + { + "src": "http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtIFBuO4mafBomDi.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mirza" + }, + { + "src": "http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtJhB-O4mafBomDi.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mirza" + } + ] + }, + { + "name": "Miss Fajardose", + "fontFamily": "Miss Fajardose, cursive", + "slug": "wp-font-lib-miss-fajardose", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/missfajardose/v22/E21-_dn5gvrawDdPFVl-N0Ajb8qvWPaJq4no.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Miss Fajardose" + } + ] + }, + { + "name": "Mitr", + "fontFamily": "Mitr, sans-serif", + "slug": "wp-font-lib-mitr", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8fMZFJDUc1NECPY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mitr" + }, + { + "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8ZcaFJDUc1NECPY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mitr" + }, + { + "src": "http://fonts.gstatic.com/s/mitr/v11/pxiLypw5ucZFyTsyMJj_b1o.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mitr" + }, + { + "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8c8bFJDUc1NECPY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mitr" + }, + { + "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8eMcFJDUc1NECPY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mitr" + }, + { + "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8YcdFJDUc1NECPY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mitr" + } + ] + }, + { + "name": "Mochiy Pop One", + "fontFamily": "Mochiy Pop One, sans-serif", + "slug": "wp-font-lib-mochiy-pop-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mochiypopone/v7/QdVPSTA9Jh-gg-5XZP2UmU4O9kwwD3s6ZKAi.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mochiy Pop One" + } + ] + }, + { + "name": "Mochiy Pop P One", + "fontFamily": "Mochiy Pop P One, sans-serif", + "slug": "wp-font-lib-mochiy-pop-p-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mochiypoppone/v7/Ktk2AKuPeY_td1-h9LayHYWCjAqyN4O3WYZB_sU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mochiy Pop P One" + } + ] + }, + { + "name": "Modak", + "fontFamily": "Modak, system-ui", + "slug": "wp-font-lib-modak", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/modak/v18/EJRYQgs1XtIEsnMH8BVZ76KU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Modak" + } + ] + }, + { + "name": "Modern Antiqua", + "fontFamily": "Modern Antiqua, system-ui", + "slug": "wp-font-lib-modern-antiqua", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/modernantiqua/v22/NGStv5TIAUg6Iq_RLNo_2dp1sI1Ea2u0c3Gi.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Modern Antiqua" + } + ] + }, + { + "name": "Mogra", + "fontFamily": "Mogra, system-ui", + "slug": "wp-font-lib-mogra", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mogra/v19/f0X40eSs8c95TBo4DvLmxtnG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mogra" + } + ] + }, + { + "name": "Mohave", + "fontFamily": "Mohave, sans-serif", + "slug": "wp-font-lib-mohave", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdif_HvCQopLSvBk.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdnn_HvCQopLSvBk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdkv_HvCQopLSvBk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdqf4HvCQopLSvBk.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdp74HvCQopLSvBk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8qLOaprDXrBlSVw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G89rOaprDXrBlSVw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8xLOaprDXrBlSVw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8KLSaprDXrBlSVw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8EbSaprDXrBlSVw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Mohave" + } + ] + }, + { + "name": "Molengo", + "fontFamily": "Molengo, sans-serif", + "slug": "wp-font-lib-molengo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/molengo/v16/I_uuMpWeuBzZNBtQbbRQkiCvs5Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Molengo" + } + ] + }, + { + "name": "Molle", + "fontFamily": "Molle, cursive", + "slug": "wp-font-lib-molle", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/molle/v21/E21n_dL5hOXFhWEsXzgmVydREus.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Molle" + } + ] + }, + { + "name": "Monda", + "fontFamily": "Monda, sans-serif", + "slug": "wp-font-lib-monda", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/monda/v16/TK3tWkYFABsmjvpmNBsLvPdG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Monda" + }, + { + "src": "http://fonts.gstatic.com/s/monda/v16/TK3gWkYFABsmjsLaGz8Dl-tPKo2t.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Monda" + } + ] + }, + { + "name": "Monofett", + "fontFamily": "Monofett, monospace", + "slug": "wp-font-lib-monofett", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/monofett/v23/mFTyWbofw6zc9NtnW43SuRwr0VJ7.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Monofett" + } + ] + }, + { + "name": "Monomaniac One", + "fontFamily": "Monomaniac One, sans-serif", + "slug": "wp-font-lib-monomaniac-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/monomaniacone/v9/4iC06K17YctZjx50EU-QlwPmcqRnqYkB5kwI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Monomaniac One" + } + ] + }, + { + "name": "Monoton", + "fontFamily": "Monoton, system-ui", + "slug": "wp-font-lib-monoton", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/monoton/v15/5h1aiZUrOngCibe4fkbBQ2S7FU8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Monoton" + } + ] + }, + { + "name": "Monsieur La Doulaise", + "fontFamily": "Monsieur La Doulaise, cursive", + "slug": "wp-font-lib-monsieur-la-doulaise", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/monsieurladoulaise/v15/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5ewkEU4HTy.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Monsieur La Doulaise" + } + ] + }, + { + "name": "Montaga", + "fontFamily": "Montaga, serif", + "slug": "wp-font-lib-montaga", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/montaga/v13/H4cnBX2Ml8rCkEO_0gYQ7LO5mqc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Montaga" + } + ] + }, + { + "name": "Montagu Slab", + "fontFamily": "Montagu Slab, serif", + "slug": "wp-font-lib-montagu-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbE3P9Fs7bOSO7.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Montagu Slab" + }, + { + "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkBbEnP9Fs7bOSO7.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Montagu Slab" + }, + { + "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkCFEnP9Fs7bOSO7.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Montagu Slab" + }, + { + "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbEnP9Fs7bOSO7.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Montagu Slab" + }, + { + "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDpEnP9Fs7bOSO7.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Montagu Slab" + }, + { + "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkAFFXP9Fs7bOSO7.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Montagu Slab" + }, + { + "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkA8FXP9Fs7bOSO7.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Montagu Slab" + } + ] + }, + { + "name": "MonteCarlo", + "fontFamily": "MonteCarlo, cursive", + "slug": "wp-font-lib-montecarlo", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/montecarlo/v8/buEzpo6-f9X01GadLA0G0CoV_NxLeiw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "MonteCarlo" + } + ] + }, + { + "name": "Montez", + "fontFamily": "Montez, cursive", + "slug": "wp-font-lib-montez", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/montez/v18/845ZNMk5GoGIX8lm1LDeSd-R_g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Montez" + } + ] + }, + { + "name": "Montserrat", + "fontFamily": "Montserrat, sans-serif", + "slug": "wp-font-lib-montserrat", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw-Y3tcoqK5.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Ew-Y3tcoqK5.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Ew-Y3tcoqK5.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-Y3tcoqK5.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew-Y3tcoqK5.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w-Y3tcoqK5.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w-Y3tcoqK5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr70w-Y3tcoqK5.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC70w-Y3tcoqK5.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R8aX9-p7K5ILg.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR9aX9-p7K5ILg.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq_p9aX9-p7K5ILg.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R9aX9-p7K5ILg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9aX9-p7K5ILg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq3p6aX9-p7K5ILg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6aX9-p7K5ILg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR6aX9-p7K5ILg.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16aX9-p7K5ILg.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Montserrat" + } + ] + }, + { + "name": "Montserrat Alternates", + "fontFamily": "Montserrat Alternates, sans-serif", + "slug": "wp-font-lib-montserrat-alternates", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU0xiKfVKphL03l4.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTjWacfw6zH4dthXcyms1lPpC8I_b0juU057p-xIJxp1ml4imo.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xJIb1ALZH2mBhkw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8dAbxD-GVxk3Nd.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xQIX1ALZH2mBhkw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p95ArxD-GVxk3Nd.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J7K3RCJ1b0w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU057qfVKphL03l4.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xGIT1ALZH2mBhkw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8hA7xD-GVxk3Nd.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xNIP1ALZH2mBhkw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8NBLxD-GVxk3Nd.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xUIL1ALZH2mBhkw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9pBbxD-GVxk3Nd.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xTIH1ALZH2mBhkw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p91BrxD-GVxk3Nd.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xaID1ALZH2mBhkw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9RB7xD-GVxk3Nd.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + } + ] + }, + { + "name": "Montserrat Subrayada", + "fontFamily": "Montserrat Subrayada, sans-serif", + "slug": "wp-font-lib-montserrat-subrayada", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/montserratsubrayada/v17/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQE8LYuceqGT-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Montserrat Subrayada" + }, + { + "src": "http://fonts.gstatic.com/s/montserratsubrayada/v17/U9MM6c-o9H7PgjlTHThBnNHGVUORwteQQHe3TcMWg3j36Ebz.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Montserrat Subrayada" + } + ] + }, + { + "name": "Moo Lah Lah", + "fontFamily": "Moo Lah Lah, system-ui", + "slug": "wp-font-lib-moo-lah-lah", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/moolahlah/v3/dg4h_p_opKZOA0w1AYcm55wtYQYugjW4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Moo Lah Lah" + } + ] + }, + { + "name": "Moon Dance", + "fontFamily": "Moon Dance, cursive", + "slug": "wp-font-lib-moon-dance", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/moondance/v3/WBLgrEbUbFlYW9ekmGawe2XiKMiokE4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Moon Dance" + } + ] + }, + { + "name": "Moul", + "fontFamily": "Moul, system-ui", + "slug": "wp-font-lib-moul", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/moul/v25/nuF2D__FSo_3E-RYiJCy-00.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Moul" + } + ] + }, + { + "name": "Moulpali", + "fontFamily": "Moulpali, system-ui", + "slug": "wp-font-lib-moulpali", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/moulpali/v28/H4ckBXKMl9HagUWymyY6wr-wg763.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Moulpali" + } + ] + }, + { + "name": "Mountains of Christmas", + "fontFamily": "Mountains of Christmas, system-ui", + "slug": "wp-font-lib-mountains-of-christmas", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mountainsofchristmas/v20/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNamMPNpJpc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mountains of Christmas" + }, + { + "src": "http://fonts.gstatic.com/s/mountainsofchristmas/v20/3y9z6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eBGqJFPtCOp6IaEA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mountains of Christmas" + } + ] + }, + { + "name": "Mouse Memoirs", + "fontFamily": "Mouse Memoirs, sans-serif", + "slug": "wp-font-lib-mouse-memoirs", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mousememoirs/v14/t5tmIRoSNJ-PH0WNNgDYxdSb7TnFrpOHYh4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mouse Memoirs" + } + ] + }, + { + "name": "Mr Bedfort", + "fontFamily": "Mr Bedfort, cursive", + "slug": "wp-font-lib-mr-bedfort", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mrbedfort/v22/MQpR-WCtNZSWAdTMwBicliq0XZe_Iy8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mr Bedfort" + } + ] + }, + { + "name": "Mr Dafoe", + "fontFamily": "Mr Dafoe, cursive", + "slug": "wp-font-lib-mr-dafoe", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mrdafoe/v14/lJwE-pIzkS5NXuMMrGiqg7MCxz_C.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mr Dafoe" + } + ] + }, + { + "name": "Mr De Haviland", + "fontFamily": "Mr De Haviland, cursive", + "slug": "wp-font-lib-mr-de-haviland", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mrdehaviland/v14/OpNVnooIhJj96FdB73296ksbOj3C4ULVNTlB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mr De Haviland" + } + ] + }, + { + "name": "Mrs Saint Delafield", + "fontFamily": "Mrs Saint Delafield, cursive", + "slug": "wp-font-lib-mrs-saint-delafield", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mrssaintdelafield/v13/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cK4tLsubB2w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mrs Saint Delafield" + } + ] + }, + { + "name": "Mrs Sheppards", + "fontFamily": "Mrs Sheppards, cursive", + "slug": "wp-font-lib-mrs-sheppards", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mrssheppards/v21/PN_2Rfm9snC0XUGoEZhb91ig3vjxynMix4Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mrs Sheppards" + } + ] + }, + { + "name": "Ms Madi", + "fontFamily": "Ms Madi, cursive", + "slug": "wp-font-lib-ms-madi", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/msmadi/v2/HTxsL2UxNnOji5E1N-DPiI7QAYo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ms Madi" + } + ] + }, + { + "name": "Mukta", + "fontFamily": "Mukta, sans-serif", + "slug": "wp-font-lib-mukta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEOjFma-2HW7ZB_.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mukta" + }, + { + "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbFqj1ma-2HW7ZB_.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mukta" + }, + { + "src": "http://fonts.gstatic.com/s/mukta/v14/iJWKBXyXfDDVXYnGp32S0H3f.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mukta" + }, + { + "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEyjlma-2HW7ZB_.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mukta" + }, + { + "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEeiVma-2HW7ZB_.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mukta" + }, + { + "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbF6iFma-2HW7ZB_.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mukta" + }, + { + "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbFmi1ma-2HW7ZB_.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Mukta" + } + ] + }, + { + "name": "Mukta Mahee", + "fontFamily": "Mukta Mahee, sans-serif", + "slug": "wp-font-lib-mukta-mahee", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9MFcBoHJndqZCsW.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mukta Mahee" + }, + { + "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NhcxoHJndqZCsW.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mukta Mahee" + }, + { + "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXQ3IOIi0hcP8iVU67hA-vNWz4PDWtj.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mukta Mahee" + }, + { + "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9M5choHJndqZCsW.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mukta Mahee" + }, + { + "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9MVdRoHJndqZCsW.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mukta Mahee" + }, + { + "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NxdBoHJndqZCsW.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mukta Mahee" + }, + { + "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NtdxoHJndqZCsW.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Mukta Mahee" + } + ] + }, + { + "name": "Mukta Malar", + "fontFamily": "Mukta Malar, sans-serif", + "slug": "wp-font-lib-mukta-malar", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMwBtAB62ruoAZW.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mukta Malar" + }, + { + "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINUBdAB62ruoAZW.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mukta Malar" + }, + { + "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoXzAXyz8LOE2FpJMxZqLv4LfQJwHbn.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mukta Malar" + }, + { + "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMMBNAB62ruoAZW.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mukta Malar" + }, + { + "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMgA9AB62ruoAZW.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mukta Malar" + }, + { + "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINEAtAB62ruoAZW.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mukta Malar" + }, + { + "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINYAdAB62ruoAZW.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Mukta Malar" + } + ] + }, + { + "name": "Mukta Vaani", + "fontFamily": "Mukta Vaani, sans-serif", + "slug": "wp-font-lib-mukta-vaani", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXNV8BD-u97MW1a.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mukta Vaani" + }, + { + "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWpVMBD-u97MW1a.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mukta Vaani" + }, + { + "src": "http://fonts.gstatic.com/s/muktavaani/v13/3Jn5SD_-ynaxmxnEfVHPIF0FfORL0fNy.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mukta Vaani" + }, + { + "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXxVcBD-u97MW1a.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mukta Vaani" + }, + { + "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXdUsBD-u97MW1a.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mukta Vaani" + }, + { + "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGW5U8BD-u97MW1a.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mukta Vaani" + }, + { + "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWlUMBD-u97MW1a.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Mukta Vaani" + } + ] + }, + { + "name": "Mulish", + "fontFamily": "Mulish, sans-serif", + "slug": "wp-font-lib-mulish", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNRwaClGrw-PTY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexc1RwaClGrw-PTY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaClGrw-PTY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexaFRwaClGrw-PTY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexU1WwaClGrw-PTY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexXRWwaClGrw-PTY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNWwaClGrw-PTY.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexTpWwaClGrw-PTY.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeOvHp47LTZFwA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSd-OvHp47LTZFwA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSKeOvHp47LTZFwA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSG-OvHp47LTZFwA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsS9-SvHp47LTZFwA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSzuSvHp47LTZFwA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeSvHp47LTZFwA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSgOSvHp47LTZFwA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Mulish" + } + ] + }, + { + "name": "Murecho", + "fontFamily": "Murecho, sans-serif", + "slug": "wp-font-lib-murecho", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMo15XWZLCpUOaM6.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMq14nWZLCpUOaM6.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrC4nWZLCpUOaM6.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Murecho" + } + ] + }, + { + "name": "MuseoModerno", + "fontFamily": "MuseoModerno, system-ui", + "slug": "wp-font-lib-museomoderno", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZFuewajeKlCdo.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZEuewajeKlCdo.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMghEuewajeKlCdo.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZEuewajeKlCdo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMmREuewajeKlCdo.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMohDuewajeKlCdo.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMrFDuewajeKlCdo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZDuewajeKlCdo.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMv9DuewajeKlCdo.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa4QicCgGdrS3g.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0a8QicCgGdrS3g.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HD68QicCgGdrS3g.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa8QicCgGdrS3g.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HY68QicCgGdrS3g.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54Hj6gQicCgGdrS3g.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HtqgQicCgGdrS3g.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0agQicCgGdrS3g.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H-KgQicCgGdrS3g.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + } + ] + }, + { + "name": "My Soul", + "fontFamily": "My Soul, cursive", + "slug": "wp-font-lib-my-soul", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mysoul/v2/3XFqErcuy945_u6KF_Ulk2nnXf0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "My Soul" + } + ] + }, + { + "name": "Mynerve", + "fontFamily": "Mynerve, cursive", + "slug": "wp-font-lib-mynerve", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mynerve/v2/P5sCzZKPdNjb4jt7xCRuiZ-uydg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mynerve" + } + ] + }, + { + "name": "Mystery Quest", + "fontFamily": "Mystery Quest, system-ui", + "slug": "wp-font-lib-mystery-quest", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mysteryquest/v20/-nF6OG414u0E6k0wynSGlujRHwElD_9Qz9E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mystery Quest" + } + ] + }, + { + "name": "NTR", + "fontFamily": "NTR, sans-serif", + "slug": "wp-font-lib-ntr", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ntr/v15/RLpzK5Xy0ZjiGGhs5TA4bg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "NTR" + } + ] + }, + { + "name": "Nabla", + "fontFamily": "Nabla, system-ui", + "slug": "wp-font-lib-nabla", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nabla/v10/j8_D6-LI0Lvpe7Makz5UhJt9C3uqg_X_75gyGS4jAxsNIjrRNRBUFFR_198.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nabla" + } + ] + }, + { + "name": "Nanum Brush Script", + "fontFamily": "Nanum Brush Script, cursive", + "slug": "wp-font-lib-nanum-brush-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nanumbrushscript/v22/wXK2E2wfpokopxzthSqPbcR5_gVaxazyjqBr1lO97Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nanum Brush Script" + } + ] + }, + { + "name": "Nanum Gothic", + "fontFamily": "Nanum Gothic, sans-serif", + "slug": "wp-font-lib-nanum-gothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_3Rfi-oW3hYwmKDpxS7F_z_tLfxno73g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nanum Gothic" + }, + { + "src": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_oRfi-oW3hYwmKDpxS7F_LQv37zlEn14YEUQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Nanum Gothic" + }, + { + "src": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_oRfi-oW3hYwmKDpxS7F_LXv77zlEn14YEUQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Nanum Gothic" + } + ] + }, + { + "name": "Nanum Gothic Coding", + "fontFamily": "Nanum Gothic Coding, monospace", + "slug": "wp-font-lib-nanum-gothic-coding", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nanumgothiccoding/v19/8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6QxVs1X7tc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nanum Gothic Coding" + }, + { + "src": "http://fonts.gstatic.com/s/nanumgothiccoding/v19/8QIYdjzHisX_8vv59_xMxtPFW4IXROws8xgecsV88t5V9r4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Nanum Gothic Coding" + } + ] + }, + { + "name": "Nanum Myeongjo", + "fontFamily": "Nanum Myeongjo, serif", + "slug": "wp-font-lib-nanum-myeongjo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Btx3DZF0dXLMZlywRbVRNhxy1LreHQ8juyl.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nanum Myeongjo" + }, + { + "src": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Bty3DZF0dXLMZlywRbVRNhxy2pXV1A0pfCs5Kos.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Nanum Myeongjo" + }, + { + "src": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Bty3DZF0dXLMZlywRbVRNhxy2pLVFA0pfCs5Kos.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Nanum Myeongjo" + } + ] + }, + { + "name": "Nanum Pen Script", + "fontFamily": "Nanum Pen Script, cursive", + "slug": "wp-font-lib-nanum-pen-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nanumpenscript/v19/daaDSSYiLGqEal3MvdA_FOL_3FkN2z7-aMFCcTU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nanum Pen Script" + } + ] + }, + { + "name": "Neonderthaw", + "fontFamily": "Neonderthaw, cursive", + "slug": "wp-font-lib-neonderthaw", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/neonderthaw/v3/Iure6Yx5-oWVZI0r-17AeZZJprVA4XQ0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Neonderthaw" + } + ] + }, + { + "name": "Nerko One", + "fontFamily": "Nerko One, cursive", + "slug": "wp-font-lib-nerko-one", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nerkoone/v16/m8JQjfZSc7OXlB3ZMOjzcJ5BZmqa3A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nerko One" + } + ] + }, + { + "name": "Neucha", + "fontFamily": "Neucha, cursive", + "slug": "wp-font-lib-neucha", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/neucha/v17/q5uGsou0JOdh94bvugNsCxVEgA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Neucha" + } + ] + }, + { + "name": "Neuton", + "fontFamily": "Neuton, serif", + "slug": "wp-font-lib-neuton", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKAKkfegD5Drog6Q.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Neuton" + }, + { + "src": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKZKofegD5Drog6Q.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Neuton" + }, + { + "src": "http://fonts.gstatic.com/s/neuton/v19/UMBTrPtMoH62xUZyyII7civlBw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Neuton" + }, + { + "src": "http://fonts.gstatic.com/s/neuton/v19/UMBRrPtMoH62xUZCyog_UC71B6M5.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Neuton" + }, + { + "src": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKdK0fegD5Drog6Q.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Neuton" + }, + { + "src": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKaK4fegD5Drog6Q.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Neuton" + } + ] + }, + { + "name": "New Rocker", + "fontFamily": "New Rocker, system-ui", + "slug": "wp-font-lib-new-rocker", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/newrocker/v16/MwQzbhjp3-HImzcCU_cJkGMViblPtXs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "New Rocker" + } + ] + }, + { + "name": "New Tegomin", + "fontFamily": "New Tegomin, serif", + "slug": "wp-font-lib-new-tegomin", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/newtegomin/v10/SLXMc1fV7Gd9USdBAfPlqfN0Q3ptkDMN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "New Tegomin" + } + ] + }, + { + "name": "News Cycle", + "fontFamily": "News Cycle, sans-serif", + "slug": "wp-font-lib-news-cycle", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/newscycle/v23/CSR64z1Qlv-GDxkbKVQ_TOcATNt_pOU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "News Cycle" + }, + { + "src": "http://fonts.gstatic.com/s/newscycle/v23/CSR54z1Qlv-GDxkbKVQ_dFsvaNNUuOwkC2s.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "News Cycle" + } + ] + }, + { + "name": "Newsreader", + "fontFamily": "Newsreader, serif", + "slug": "wp-font-lib-newsreader", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-I_ADOxEPjCggA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wJo_ADOxEPjCggA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438weI_ADOxEPjCggA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wSo_ADOxEPjCggA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wpojADOxEPjCggA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wn4jADOxEPjCggA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-IjADOxEPjCggA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoT-ZAHDWwgECi.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMx2T-ZAHDWwgECi.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwoT-ZAHDWwgECi.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwaT-ZAHDWwgECi.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMz2SOZAHDWwgECi.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMzPSOZAHDWwgECi.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoSOZAHDWwgECi.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Newsreader" + } + ] + }, + { + "name": "Niconne", + "fontFamily": "Niconne, cursive", + "slug": "wp-font-lib-niconne", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/niconne/v15/w8gaH2QvRug1_rTfrQut2F4OuOo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Niconne" + } + ] + }, + { + "name": "Niramit", + "fontFamily": "Niramit, sans-serif", + "slug": "wp-font-lib-niramit", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVXx7tiiEr5_BdZ8.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiXimOq73EZZ_f6w.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVRh4tiiEr5_BdZ8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiOiqOq73EZZ_f6w.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_uuMpWdvgLdNxVLbbRQkiCvs5Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_usMpWdvgLdNxVLXbZalgKqo5bYbA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVUB5tiiEr5_BdZ8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiYiuOq73EZZ_f6w.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVWx-tiiEr5_BdZ8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiTiyOq73EZZ_f6w.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVQh_tiiEr5_BdZ8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiKi2Oq73EZZ_f6w.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Niramit" + } + ] + }, + { + "name": "Nixie One", + "fontFamily": "Nixie One, system-ui", + "slug": "wp-font-lib-nixie-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nixieone/v16/lW-8wjkKLXjg5y2o2uUoUOFzpS-yLw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nixie One" + } + ] + }, + { + "name": "Nobile", + "fontFamily": "Nobile, sans-serif", + "slug": "wp-font-lib-nobile", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nobile/v17/m8JTjflSeaOVl1i2XqfXeLVdbw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nobile" + }, + { + "src": "http://fonts.gstatic.com/s/nobile/v17/m8JRjflSeaOVl1iGXK3TWrBNb3OD.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Nobile" + }, + { + "src": "http://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iOqo7zcJ5BZmqa3A.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Nobile" + }, + { + "src": "http://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJUnc5RFRG-K3Mud.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Nobile" + }, + { + "src": "http://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iO4ojzcJ5BZmqa3A.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Nobile" + }, + { + "src": "http://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJVvdZRFRG-K3Mud.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Nobile" + } + ] + }, + { + "name": "Nokora", + "fontFamily": "Nokora, sans-serif", + "slug": "wp-font-lib-nokora", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nokora/v30/~CgoKBk5va29yYRhkIAAqBAgBGAE=.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Nokora" + }, + { + "src": "http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRisAiAAKgQIARgB.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Nokora" + }, + { + "src": "http://fonts.gstatic.com/s/nokora/v30/~CggKBk5va29yYSAAKgQIARgB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nokora" + }, + { + "src": "http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRi8BSAAKgQIARgB.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Nokora" + }, + { + "src": "http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRiEByAAKgQIARgB.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Nokora" + } + ] + }, + { + "name": "Norican", + "fontFamily": "Norican, cursive", + "slug": "wp-font-lib-norican", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/norican/v14/MwQ2bhXp1eSBqjkPGJJRtGs-lbA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Norican" + } + ] + }, + { + "name": "Nosifer", + "fontFamily": "Nosifer, system-ui", + "slug": "wp-font-lib-nosifer", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nosifer/v20/ZGjXol5JTp0g5bxZaC1RVDNdGDs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nosifer" + } + ] + }, + { + "name": "Notable", + "fontFamily": "Notable, sans-serif", + "slug": "wp-font-lib-notable", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notable/v14/gNMEW3N_SIqx-WX9-HMoFIez5MI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Notable" + } + ] + }, + { + "name": "Nothing You Could Do", + "fontFamily": "Nothing You Could Do, cursive", + "slug": "wp-font-lib-nothing-you-could-do", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nothingyoucoulddo/v15/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OJl1ol2Ymo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nothing You Could Do" + } + ] + }, + { + "name": "Noticia Text", + "fontFamily": "Noticia Text, serif", + "slug": "wp-font-lib-noticia-text", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/noticiatext/v15/VuJ2dNDF2Yv9qppOePKYRP1GYTFZt0rNpQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noticia Text" + }, + { + "src": "http://fonts.gstatic.com/s/noticiatext/v15/VuJodNDF2Yv9qppOePKYRP12YztdlU_dpSjt.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Noticia Text" + }, + { + "src": "http://fonts.gstatic.com/s/noticiatext/v15/VuJpdNDF2Yv9qppOePKYRP1-3R59v2HRrDH0eA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noticia Text" + }, + { + "src": "http://fonts.gstatic.com/s/noticiatext/v15/VuJrdNDF2Yv9qppOePKYRP12YwPhumvVjjTkeMnz.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Noticia Text" + } + ] + }, + { + "name": "Noto Color Emoji", + "fontFamily": "Noto Color Emoji, sans-serif", + "slug": "wp-font-lib-noto-color-emoji", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notocoloremoji/v25/Yq6P-KqIXTD0t4D9z1ESnKM3-HpFab5s79iz64w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Color Emoji" + } + ] + }, + { + "name": "Noto Emoji", + "fontFamily": "Noto Emoji, sans-serif", + "slug": "wp-font-lib-noto-emoji", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob_10jwvS-FGJCMY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Emoji" + }, + { + "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-r0jwvS-FGJCMY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Emoji" + }, + { + "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-Z0jwvS-FGJCMY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Emoji" + }, + { + "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob911TwvS-FGJCMY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Emoji" + }, + { + "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob9M1TwvS-FGJCMY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Emoji" + } + ] + }, + { + "name": "Noto Kufi Arabic", + "fontFamily": "Noto Kufi Arabic, sans-serif", + "slug": "wp-font-lib-noto-kufi-arabic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v3obPnLSmf5yD.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v34bPnLSmf5yD.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh4x34bPnLSmf5yD.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v34bPnLSmf5yD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5d34bPnLSmf5yD.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6x2IbPnLSmf5yD.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6I2IbPnLSmf5yD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v2IbPnLSmf5yD.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7G2IbPnLSmf5yD.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + } + ] + }, + { + "name": "Noto Music", + "fontFamily": "Noto Music, sans-serif", + "slug": "wp-font-lib-noto-music", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notomusic/v17/pe0rMIiSN5pO63htf1sxIteQB9Zra1U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Music" + } + ] + }, + { + "name": "Noto Naskh Arabic", + "fontFamily": "Noto Naskh Arabic, serif", + "slug": "wp-font-lib-noto-naskh-arabic", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwvc5krK0z9_Mnuw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Naskh Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwj85krK0z9_Mnuw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Naskh Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwY8lkrK0z9_Mnuw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Naskh Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwWslkrK0z9_Mnuw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Naskh Arabic" + } + ] + }, + { + "name": "Noto Nastaliq Urdu", + "fontFamily": "Noto Nastaliq Urdu, serif", + "slug": "wp-font-lib-noto-nastaliq-urdu", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qt_-DK2f2-_8mEw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Nastaliq Urdu" + }, + { + "src": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qu3-DK2f2-_8mEw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Nastaliq Urdu" + }, + { + "src": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3QgH5DK2f2-_8mEw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Nastaliq Urdu" + }, + { + "src": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qjj5DK2f2-_8mEw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Nastaliq Urdu" + } + ] + }, + { + "name": "Noto Rashi Hebrew", + "fontFamily": "Noto Rashi Hebrew, serif", + "slug": "wp-font-lib-noto-rashi-hebrew", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-DkRyq6Nf2pfA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-HkRyq6Nf2pfA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZWeHkRyq6Nf2pfA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-HkRyq6Nf2pfA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZNeHkRyq6Nf2pfA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ2ebkRyq6Nf2pfA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ4ObkRyq6Nf2pfA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-bkRyq6Nf2pfA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZrubkRyq6Nf2pfA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + } + ] + }, + { + "name": "Noto Sans", + "fontFamily": "Noto Sans, sans-serif", + "slug": "wp-font-lib-noto-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0OIpQlx3QUlC5A4PNjhjRFSfiM7HBj.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0MIpQlx3QUlC5A4PNr4AwhQ_yu6WBjJLE.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjKhVlY9aA5Wl6PQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AyNYtyEx2xqPaif.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjThZlY9aA5Wl6PQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AzpYdyEx2xqPaif.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0IIpQlx3QUlC5A4PNb4j5Ba_2c7A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0OIpQlx3QUlC5A4PNr4DRFSfiM7HBj.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjFhdlY9aA5Wl6PQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AyxYNyEx2xqPaif.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjOhBlY9aA5Wl6PQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AydZ9yEx2xqPaif.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjXhFlY9aA5Wl6PQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4Az5ZtyEx2xqPaif.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjQhJlY9aA5Wl6PQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AzlZdyEx2xqPaif.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjZhNlY9aA5Wl6PQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AzBZNyEx2xqPaif.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + } + ] + }, + { + "name": "Noto Sans Adlam", + "fontFamily": "Noto Sans Adlam, sans-serif", + "slug": "wp-font-lib-noto-sans-adlam", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufnv0TGnBZLwhuvk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufkn0TGnBZLwhuvk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufqXzTGnBZLwhuvk.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufpzzTGnBZLwhuvk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam" + } + ] + }, + { + "name": "Noto Sans Adlam Unjoined", + "fontFamily": "Noto Sans Adlam Unjoined, sans-serif", + "slug": "wp-font-lib-noto-sans-adlam-unjoined", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Ye35PMEe-E3slUg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam Unjoined" + }, + { + "src": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Yd_5PMEe-E3slUg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam Unjoined" + }, + { + "src": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YTP-PMEe-E3slUg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam Unjoined" + }, + { + "src": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YQr-PMEe-E3slUg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam Unjoined" + } + ] + }, + { + "name": "Noto Sans Anatolian Hieroglyphs", + "fontFamily": "Noto Sans Anatolian Hieroglyphs, sans-serif", + "slug": "wp-font-lib-noto-sans-anatolian-hieroglyphs", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansanatolianhieroglyphs/v14/ijw9s4roRME5LLRxjsRb8A0gKPSWq4BbDmHHu6j2pEtUJzZWXybIymc5QYo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Anatolian Hieroglyphs" + } + ] + }, + { + "name": "Noto Sans Arabic", + "fontFamily": "Noto Sans Arabic, sans-serif", + "slug": "wp-font-lib-noto-sans-arabic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyG2vu3CBFQLaig.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGyvu3CBFQLaig.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCflmyvu3CBFQLaig.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyGyvu3CBFQLaig.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCf-myvu3CBFQLaig.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfFmuvu3CBFQLaig.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfL2uvu3CBFQLaig.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGuvu3CBFQLaig.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfYWuvu3CBFQLaig.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + } + ] + }, + { + "name": "Noto Sans Armenian", + "fontFamily": "Noto Sans Armenian, sans-serif", + "slug": "wp-font-lib-noto-sans-armenian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxbq0iYy6zF3Eg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxb60iYy6zF3Eg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoqvb60iYy6zF3Eg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxb60iYy6zF3Eg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorDb60iYy6zF3Eg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoovaK0iYy6zF3Eg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLooWaK0iYy6zF3Eg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxaK0iYy6zF3Eg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopYaK0iYy6zF3Eg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + } + ] + }, + { + "name": "Noto Sans Avestan", + "fontFamily": "Noto Sans Avestan, sans-serif", + "slug": "wp-font-lib-noto-sans-avestan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansavestan/v20/bWti7ejKfBziStx7lIzKOLQZKhIJkyu9SASLji8U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Avestan" + } + ] + }, + { + "name": "Noto Sans Balinese", + "fontFamily": "Noto Sans Balinese, sans-serif", + "slug": "wp-font-lib-noto-sans-balinese", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov7fdhE5Vd222PPY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Balinese" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov4XdhE5Vd222PPY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Balinese" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov2nahE5Vd222PPY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Balinese" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov1DahE5Vd222PPY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Balinese" + } + ] + }, + { + "name": "Noto Sans Bamum", + "fontFamily": "Noto Sans Bamum, sans-serif", + "slug": "wp-font-lib-noto-sans-bamum", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEddO-_gLykxEkxA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bamum" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEeVO-_gLykxEkxA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bamum" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEQlJ-_gLykxEkxA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bamum" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPETBJ-_gLykxEkxA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bamum" + } + ] + }, + { + "name": "Noto Sans Bassa Vah", + "fontFamily": "Noto Sans Bassa Vah, sans-serif", + "slug": "wp-font-lib-noto-sans-bassa-vah", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MaAc6p34gH-GD7.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bassa Vah" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MoAc6p34gH-GD7.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bassa Vah" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4PEBs6p34gH-GD7.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bassa Vah" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4P9Bs6p34gH-GD7.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bassa Vah" + } + ] + }, + { + "name": "Noto Sans Batak", + "fontFamily": "Noto Sans Batak, sans-serif", + "slug": "wp-font-lib-noto-sans-batak", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbatak/v16/gok2H6TwAEdtF9N8-mdTCQvT-Zdgo4_PHuk74A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Batak" + } + ] + }, + { + "name": "Noto Sans Bengali", + "fontFamily": "Noto Sans Bengali, sans-serif", + "slug": "wp-font-lib-noto-sans-bengali", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolKudCk8izI0lc.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglLudCk8izI0lc.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmstdLudCk8izI0lc.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolLudCk8izI0lc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsrtLudCk8izI0lc.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsldMudCk8izI0lc.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6Kmsm5MudCk8izI0lc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglMudCk8izI0lc.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsiBMudCk8izI0lc.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + } + ] + }, + { + "name": "Noto Sans Bhaiksuki", + "fontFamily": "Noto Sans Bhaiksuki, sans-serif", + "slug": "wp-font-lib-noto-sans-bhaiksuki", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbhaiksuki/v15/UcC63EosKniBH4iELXATsSBWdvUHXxhj8rLUdU4wh9U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bhaiksuki" + } + ] + }, + { + "name": "Noto Sans Brahmi", + "fontFamily": "Noto Sans Brahmi, sans-serif", + "slug": "wp-font-lib-noto-sans-brahmi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbrahmi/v15/vEFK2-VODB8RrNDvZSUmQQIIByV18tK1W77HtMo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Brahmi" + } + ] + }, + { + "name": "Noto Sans Buginese", + "fontFamily": "Noto Sans Buginese, sans-serif", + "slug": "wp-font-lib-noto-sans-buginese", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbuginese/v18/esDM30ldNv-KYGGJpKGk18phe_7Da6_gtfuEXLmNtw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Buginese" + } + ] + }, + { + "name": "Noto Sans Buhid", + "fontFamily": "Noto Sans Buhid, sans-serif", + "slug": "wp-font-lib-noto-sans-buhid", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbuhid/v18/Dxxy8jiXMW75w3OmoDXVWJD7YwzAe6tgnaFoGA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Buhid" + } + ] + }, + { + "name": "Noto Sans Canadian Aboriginal", + "fontFamily": "Noto Sans Canadian Aboriginal, sans-serif", + "slug": "wp-font-lib-noto-sans-canadian-aboriginal", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLj_yAsg0q0uhQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2Ln_yAsg0q0uhQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigBrn_yAsg0q0uhQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLn_yAsg0q0uhQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigarn_yAsg0q0uhQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzighr7_yAsg0q0uhQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigv77_yAsg0q0uhQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2L7_yAsg0q0uhQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig8b7_yAsg0q0uhQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + } + ] + }, + { + "name": "Noto Sans Carian", + "fontFamily": "Noto Sans Carian, sans-serif", + "slug": "wp-font-lib-noto-sans-carian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscarian/v15/LDIpaoiONgYwA9Yc6f0gUILeMIOgs7ob9yGLmfI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Carian" + } + ] + }, + { + "name": "Noto Sans Caucasian Albanian", + "fontFamily": "Noto Sans Caucasian Albanian, sans-serif", + "slug": "wp-font-lib-noto-sans-caucasian-albanian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscaucasianalbanian/v16/nKKA-HM_FYFRJvXzVXaANsU0VzsAc46QGOkWytlTs-TXrYDmoVmRSZo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Caucasian Albanian" + } + ] + }, + { + "name": "Noto Sans Chakma", + "fontFamily": "Noto Sans Chakma, sans-serif", + "slug": "wp-font-lib-noto-sans-chakma", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanschakma/v17/Y4GQYbJ8VTEp4t3MKJSMjg5OIzhi4JjTQhYBeYo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Chakma" + } + ] + }, + { + "name": "Noto Sans Cham", + "fontFamily": "Noto Sans Cham, sans-serif", + "slug": "wp-font-lib-noto-sans-cham", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcER0cv7GykboaLg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRwcv7GykboaLg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcTxwcv7GykboaLg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcERwcv7GykboaLg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcIxwcv7GykboaLg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfczxscv7GykboaLg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfc9hscv7GykboaLg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRscv7GykboaLg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcuBscv7GykboaLg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + } + ] + }, + { + "name": "Noto Sans Cherokee", + "fontFamily": "Noto Sans Cherokee, sans-serif", + "slug": "wp-font-lib-noto-sans-cherokee", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5ODkm5rAffjl0.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5PDkm5rAffjl0.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWnBPDkm5rAffjl0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5PDkm5rAffjl0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWhxPDkm5rAffjl0.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWvBIDkm5rAffjl0.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWslIDkm5rAffjl0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5IDkm5rAffjl0.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWodIDkm5rAffjl0.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + } + ] + }, + { + "name": "Noto Sans Chorasmian", + "fontFamily": "Noto Sans Chorasmian, sans-serif", + "slug": "wp-font-lib-noto-sans-chorasmian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanschorasmian/v1/MQpL-X6uKMC7ROPLwRnI9ULxK_7NVkf8S5vyoH7w4g9b.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Chorasmian" + } + ] + }, + { + "name": "Noto Sans Coptic", + "fontFamily": "Noto Sans Coptic, sans-serif", + "slug": "wp-font-lib-noto-sans-coptic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscoptic/v17/iJWfBWmUZi_OHPqn4wq6kgqumOEd78u_VG0xR4Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Coptic" + } + ] + }, + { + "name": "Noto Sans Cuneiform", + "fontFamily": "Noto Sans Cuneiform, sans-serif", + "slug": "wp-font-lib-noto-sans-cuneiform", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscuneiform/v15/bMrrmTWK7YY-MF22aHGGd7H8PhJtvBDWgb9JlRQueeQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cuneiform" + } + ] + }, + { + "name": "Noto Sans Cypriot", + "fontFamily": "Noto Sans Cypriot, sans-serif", + "slug": "wp-font-lib-noto-sans-cypriot", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscypriot/v15/8AtzGta9PYqQDjyp79a6f8Cj-3a3cxIsK5MPpahF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cypriot" + } + ] + }, + { + "name": "Noto Sans Deseret", + "fontFamily": "Noto Sans Deseret, sans-serif", + "slug": "wp-font-lib-noto-sans-deseret", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansdeseret/v15/MwQsbgPp1eKH6QsAVuFb9AZM6MMr2Vq9ZnJSZtQG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Deseret" + } + ] + }, + { + "name": "Noto Sans Devanagari", + "fontFamily": "Noto Sans Devanagari, sans-serif", + "slug": "wp-font-lib-noto-sans-devanagari", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQky-AzoFoW4Ow.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQly-AzoFoW4Ow.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlSoly-AzoFoW4Ow.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQly-AzoFoW4Ow.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlUYly-AzoFoW4Ow.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Alaoiy-AzoFoW4Ow.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlZMiy-AzoFoW4Ow.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQiy-AzoFoW4Ow.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Ald0iy-AzoFoW4Ow.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + } + ] + }, + { + "name": "Noto Sans Display", + "fontFamily": "Noto Sans Display, sans-serif", + "slug": "wp-font-lib-noto-sans-display", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cLVTGQ2iHrvWM.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cKVTGQ2iHrvWM.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_ykKVTGQ2iHrvWM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cKVTGQ2iHrvWM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_0UKVTGQ2iHrvWM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_6kNVTGQ2iHrvWM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_5ANVTGQ2iHrvWM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cNVTGQ2iHrvWM.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_94NVTGQ2iHrvWM.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXOa3gPurWM9uQ.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXKa3gPurWM9uQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9J43Ka3gPurWM9uQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXKa3gPurWM9uQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9Jj3Ka3gPurWM9uQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JY3Wa3gPurWM9uQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JWnWa3gPurWM9uQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXWa3gPurWM9uQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JFHWa3gPurWM9uQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + } + ] + }, + { + "name": "Noto Sans Duployan", + "fontFamily": "Noto Sans Duployan, sans-serif", + "slug": "wp-font-lib-noto-sans-duployan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansduployan/v16/gokzH7nwAEdtF9N8-mdTDx_X9JM5wsvrFsIn6WYDvA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Duployan" + } + ] + }, + { + "name": "Noto Sans Egyptian Hieroglyphs", + "fontFamily": "Noto Sans Egyptian Hieroglyphs, sans-serif", + "slug": "wp-font-lib-noto-sans-egyptian-hieroglyphs", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansegyptianhieroglyphs/v26/vEF42-tODB8RrNDvZSUmRhcQHzx1s7y_F9-j3qSzEcbEYindSVK8xRg7iw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Egyptian Hieroglyphs" + } + ] + }, + { + "name": "Noto Sans Elbasan", + "fontFamily": "Noto Sans Elbasan, sans-serif", + "slug": "wp-font-lib-noto-sans-elbasan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanselbasan/v16/-F6rfiZqLzI2JPCgQBnw400qp1trvHdlre4dFcFh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Elbasan" + } + ] + }, + { + "name": "Noto Sans Elymaic", + "fontFamily": "Noto Sans Elymaic, sans-serif", + "slug": "wp-font-lib-noto-sans-elymaic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanselymaic/v15/UqyKK9YTJW5liNMhTMqe9vUFP65ZD4AjWOT0zi2V.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Elymaic" + } + ] + }, + { + "name": "Noto Sans Ethiopic", + "fontFamily": "Noto Sans Ethiopic, sans-serif", + "slug": "wp-font-lib-noto-sans-ethiopic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OKqDjwmfeaY9u.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OK6DjwmfeaY9u.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T34QK6DjwmfeaY9u.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OK6DjwmfeaY9u.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T358K6DjwmfeaY9u.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36QLKDjwmfeaY9u.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36pLKDjwmfeaY9u.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OLKDjwmfeaY9u.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37nLKDjwmfeaY9u.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + } + ] + }, + { + "name": "Noto Sans Georgian", + "fontFamily": "Noto Sans Georgian, sans-serif", + "slug": "wp-font-lib-noto-sans-georgian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzVj-f5WK0OQV.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptnzFj-f5WK0OQV.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpu5zFj-f5WK0OQV.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzFj-f5WK0OQV.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvVzFj-f5WK0OQV.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdps5y1j-f5WK0OQV.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpsAy1j-f5WK0OQV.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptny1j-f5WK0OQV.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptOy1j-f5WK0OQV.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + } + ] + }, + { + "name": "Noto Sans Glagolitic", + "fontFamily": "Noto Sans Glagolitic, sans-serif", + "slug": "wp-font-lib-noto-sans-glagolitic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansglagolitic/v15/1q2ZY4-BBFBst88SU_tOj4J-4yuNF_HI4ERK4Amu7nM1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Glagolitic" + } + ] + }, + { + "name": "Noto Sans Gothic", + "fontFamily": "Noto Sans Gothic, sans-serif", + "slug": "wp-font-lib-noto-sans-gothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansgothic/v15/TuGKUUVzXI5FBtUq5a8bj6wRbzxTFMX40kFQRx0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gothic" + } + ] + }, + { + "name": "Noto Sans Grantha", + "fontFamily": "Noto Sans Grantha, sans-serif", + "slug": "wp-font-lib-noto-sans-grantha", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansgrantha/v17/3y976akwcCjmsU8NDyrKo3IQfQ4o-r8cFeulHc6N.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Grantha" + } + ] + }, + { + "name": "Noto Sans Gujarati", + "fontFamily": "Noto Sans Gujarati, sans-serif", + "slug": "wp-font-lib-noto-sans-gujarati", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFgPM_OdiEH0s.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpFwPM_OdiEH0s.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_z3FwPM_OdiEH0s.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFwPM_OdiEH0s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ybFwPM_OdiEH0s.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_x3EAPM_OdiEH0s.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_xOEAPM_OdiEH0s.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpEAPM_OdiEH0s.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wAEAPM_OdiEH0s.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + } + ] + }, + { + "name": "Noto Sans Gunjala Gondi", + "fontFamily": "Noto Sans Gunjala Gondi, sans-serif", + "slug": "wp-font-lib-noto-sans-gunjala-gondi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansgunjalagondi/v15/bWto7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5hcVXYMTK4q1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gunjala Gondi" + } + ] + }, + { + "name": "Noto Sans Gurmukhi", + "fontFamily": "Noto Sans Gurmukhi, sans-serif", + "slug": "wp-font-lib-noto-sans-gurmukhi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1Oe3bxZ_trdp7h.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OenbxZ_trdp7h.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG0QenbxZ_trdp7h.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1OenbxZ_trdp7h.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG18enbxZ_trdp7h.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2QfXbxZ_trdp7h.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2pfXbxZ_trdp7h.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OfXbxZ_trdp7h.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3nfXbxZ_trdp7h.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + } + ] + }, + { + "name": "Noto Sans HK", + "fontFamily": "Noto Sans HK, sans-serif", + "slug": "wp-font-lib-noto-sans-hk", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKO-GM_FYFRJvXzVXaAPe9ZUHp1MOv2ObB7.otf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans HK" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZmFhTHMX6MKliqQ.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans HK" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKQ-GM_FYFRJvXzVXaAPe9hMnB3Eu7mOQ.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans HK" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZwFlTHMX6MKliqQ.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans HK" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZiF9THMX6MKliqQ.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans HK" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZsF1THMX6MKliqQ.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans HK" + } + ] + }, + { + "name": "Noto Sans Hanifi Rohingya", + "fontFamily": "Noto Sans Hanifi Rohingya, sans-serif", + "slug": "wp-font-lib-noto-sans-hanifi-rohingya", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYY4j6vvcudK8rN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hanifi Rohingya" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYq4j6vvcudK8rN.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hanifi Rohingya" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIbG5T6vvcudK8rN.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hanifi Rohingya" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIb_5T6vvcudK8rN.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hanifi Rohingya" + } + ] + }, + { + "name": "Noto Sans Hanunoo", + "fontFamily": "Noto Sans Hanunoo, sans-serif", + "slug": "wp-font-lib-noto-sans-hanunoo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanshanunoo/v17/f0Xs0fCv8dxkDWlZSoXOj6CphMloFsEsEpgL_ix2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hanunoo" + } + ] + }, + { + "name": "Noto Sans Hatran", + "fontFamily": "Noto Sans Hatran, sans-serif", + "slug": "wp-font-lib-noto-sans-hatran", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanshatran/v15/A2BBn4Ne0RgnVF3Lnko-0sOBIfL_mM83r1nwzDs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hatran" + } + ] + }, + { + "name": "Noto Sans Hebrew", + "fontFamily": "Noto Sans Hebrew, sans-serif", + "slug": "wp-font-lib-noto-sans-hebrew", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4utoiJltutR2g.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX94qtoiJltutR2g.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXKYqtoiJltutR2g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4qtoiJltutR2g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXRYqtoiJltutR2g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXqY2toiJltutR2g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXkI2toiJltutR2g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX942toiJltutR2g.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX3o2toiJltutR2g.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + } + ] + }, + { + "name": "Noto Sans Imperial Aramaic", + "fontFamily": "Noto Sans Imperial Aramaic, sans-serif", + "slug": "wp-font-lib-noto-sans-imperial-aramaic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansimperialaramaic/v15/a8IMNpjwKmHXpgXbMIsbTc_kvks91LlLetBr5itQrtdml3YfPNno.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Imperial Aramaic" + } + ] + }, + { + "name": "Noto Sans Indic Siyaq Numbers", + "fontFamily": "Noto Sans Indic Siyaq Numbers, sans-serif", + "slug": "wp-font-lib-noto-sans-indic-siyaq-numbers", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansindicsiyaqnumbers/v15/6xK5dTJFKcWIu4bpRBjRZRpsIYHabOeZ8UZLubTzpXNHKx2WPOpVd5Iu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Indic Siyaq Numbers" + } + ] + }, + { + "name": "Noto Sans Inscriptional Pahlavi", + "fontFamily": "Noto Sans Inscriptional Pahlavi, sans-serif", + "slug": "wp-font-lib-noto-sans-inscriptional-pahlavi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansinscriptionalpahlavi/v15/ll8UK3GaVDuxR-TEqFPIbsR79Xxz9WEKbwsjpz7VklYlC7FCVtqVOAYK0QA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Inscriptional Pahlavi" + } + ] + }, + { + "name": "Noto Sans Inscriptional Parthian", + "fontFamily": "Noto Sans Inscriptional Parthian, sans-serif", + "slug": "wp-font-lib-noto-sans-inscriptional-parthian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansinscriptionalparthian/v16/k3k7o-IMPvpLmixcA63oYi-yStDkgXuXncL7dzfW3P4TAJ2yklBJ2jNkLlLr.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Inscriptional Parthian" + } + ] + }, + { + "name": "Noto Sans JP", + "fontFamily": "Noto Sans JP, sans-serif", + "slug": "wp-font-lib-noto-sans-jp", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEi75vY0rw-oME.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFJEj75vY0rw-oME.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFE8j75vY0rw-oME.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEj75vY0rw-oME.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFCMj75vY0rw-oME.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFM8k75vY0rw-oME.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFPYk75vY0rw-oME.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFJEk75vY0rw-oME.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFLgk75vY0rw-oME.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + } + ] + }, + { + "name": "Noto Sans Javanese", + "fontFamily": "Noto Sans Javanese, sans-serif", + "slug": "wp-font-lib-noto-sans-javanese", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxJnkFFliZYWj4O8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Javanese" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxKvkFFliZYWj4O8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Javanese" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxEfjFFliZYWj4O8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Javanese" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxH7jFFliZYWj4O8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Javanese" + } + ] + }, + { + "name": "Noto Sans KR", + "fontFamily": "Noto Sans KR, sans-serif", + "slug": "wp-font-lib-noto-sans-kr", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby6FmXiEBPT4ITbgNA5CgmOsn7uwpYcuH8y.otf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOelzI7rgQsWYrzw.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskr/v27/PbykFmXiEBPT4ITbgNA5Cgm20HTs4JMMuA.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOIl3I7rgQsWYrzw.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOalvI7rgQsWYrzw.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOUlnI7rgQsWYrzw.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans KR" + } + ] + }, + { + "name": "Noto Sans Kaithi", + "fontFamily": "Noto Sans Kaithi, sans-serif", + "slug": "wp-font-lib-noto-sans-kaithi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskaithi/v16/buEtppS9f8_vkXadMBJJu0tWjLwjQi0KdoZIKlo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kaithi" + } + ] + }, + { + "name": "Noto Sans Kannada", + "fontFamily": "Noto Sans Kannada, sans-serif", + "slug": "wp-font-lib-noto-sans-kannada", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvMzSIMLsPKrkY.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvNzSIMLsPKrkY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrGXNzSIMLsPKrkY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvNzSIMLsPKrkY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrAnNzSIMLsPKrkY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrOXKzSIMLsPKrkY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrNzKzSIMLsPKrkY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvKzSIMLsPKrkY.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrJLKzSIMLsPKrkY.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + } + ] + }, + { + "name": "Noto Sans Kayah Li", + "fontFamily": "Noto Sans Kayah Li, sans-serif", + "slug": "wp-font-lib-noto-sans-kayah-li", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WCc3CZH4EXLuKVM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kayah Li" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WBU3CZH4EXLuKVM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kayah Li" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WPkwCZH4EXLuKVM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kayah Li" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WMAwCZH4EXLuKVM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kayah Li" + } + ] + }, + { + "name": "Noto Sans Kharoshthi", + "fontFamily": "Noto Sans Kharoshthi, sans-serif", + "slug": "wp-font-lib-noto-sans-kharoshthi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskharoshthi/v16/Fh4qPiLjKS30-P4-pGMMXCCfvkc5Vd7KE5z4rFyx5mR1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kharoshthi" + } + ] + }, + { + "name": "Noto Sans Khmer", + "fontFamily": "Noto Sans Khmer, sans-serif", + "slug": "wp-font-lib-noto-sans-khmer", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAZz4kAbrddiA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNAJz4kAbrddiA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYvTAJz4kAbrddiA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAJz4kAbrddiA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYu_AJz4kAbrddiA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtTB5z4kAbrddiA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtqB5z4kAbrddiA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNB5z4kAbrddiA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYskB5z4kAbrddiA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + } + ] + }, + { + "name": "Noto Sans Khojki", + "fontFamily": "Noto Sans Khojki, sans-serif", + "slug": "wp-font-lib-noto-sans-khojki", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskhojki/v16/-nFnOHM29Oofr2wohFbTuPPKVWpmK_d709jy92k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khojki" + } + ] + }, + { + "name": "Noto Sans Khudawadi", + "fontFamily": "Noto Sans Khudawadi, sans-serif", + "slug": "wp-font-lib-noto-sans-khudawadi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskhudawadi/v16/fdNi9t6ZsWBZ2k5ltHN73zZ5hc8HANlHIjRnVVXz9MY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khudawadi" + } + ] + }, + { + "name": "Noto Sans Lao", + "fontFamily": "Noto Sans Lao, sans-serif", + "slug": "wp-font-lib-noto-sans-lao", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccfdf5MK3riB2w.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cbdf5MK3riB2w.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4L8bdf5MK3riB2w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccbdf5MK3riB2w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4Q8bdf5MK3riB2w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4r8Hdf5MK3riB2w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4lsHdf5MK3riB2w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cHdf5MK3riB2w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt42MHdf5MK3riB2w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + } + ] + }, + { + "name": "Noto Sans Lao Looped", + "fontFamily": "Noto Sans Lao Looped, sans-serif", + "slug": "wp-font-lib-noto-sans-lao-looped", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomPr2M-Zw5V_T71k.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomHr3M-Zw5V_T71k.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomKT3M-Zw5V_T71k.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomPr3M-Zw5V_T71k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomMj3M-Zw5V_T71k.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomCTwM-Zw5V_T71k.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomB3wM-Zw5V_T71k.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomHrwM-Zw5V_T71k.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomFPwM-Zw5V_T71k.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + } + ] + }, + { + "name": "Noto Sans Lepcha", + "fontFamily": "Noto Sans Lepcha, sans-serif", + "slug": "wp-font-lib-noto-sans-lepcha", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslepcha/v16/0QI7MWlB_JWgA166SKhu05TekNS32AJstqBXgd4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lepcha" + } + ] + }, + { + "name": "Noto Sans Limbu", + "fontFamily": "Noto Sans Limbu, sans-serif", + "slug": "wp-font-lib-noto-sans-limbu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslimbu/v22/3JnlSDv90Gmq2mrzckOBBRRoNJVj0MF3OHRDnA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Limbu" + } + ] + }, + { + "name": "Noto Sans Linear A", + "fontFamily": "Noto Sans Linear A, sans-serif", + "slug": "wp-font-lib-noto-sans-linear-a", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslineara/v16/oPWS_l16kP4jCuhpgEGmwJOiA18FZj22zmHQAGQicw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Linear A" + } + ] + }, + { + "name": "Noto Sans Linear B", + "fontFamily": "Noto Sans Linear B, sans-serif", + "slug": "wp-font-lib-noto-sans-linear-b", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslinearb/v15/HhyJU4wt9vSgfHoORYOiXOckKNB737IV3BkFTq4EPw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Linear B" + } + ] + }, + { + "name": "Noto Sans Lisu", + "fontFamily": "Noto Sans Lisu, sans-serif", + "slug": "wp-font-lib-noto-sans-lisu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP2Vwt29IlxkVdig.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lisu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP61wt29IlxkVdig.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lisu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPB1st29IlxkVdig.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lisu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPPlst29IlxkVdig.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lisu" + } + ] + }, + { + "name": "Noto Sans Lycian", + "fontFamily": "Noto Sans Lycian, sans-serif", + "slug": "wp-font-lib-noto-sans-lycian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslycian/v15/QldVNSNMqAsHtsJ7UmqxBQA9r8wA5_naCJwn00E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lycian" + } + ] + }, + { + "name": "Noto Sans Lydian", + "fontFamily": "Noto Sans Lydian, sans-serif", + "slug": "wp-font-lib-noto-sans-lydian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslydian/v15/c4m71mVzGN7s8FmIukZJ1v4ZlcPReUPXMoIjEQI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lydian" + } + ] + }, + { + "name": "Noto Sans Mahajani", + "fontFamily": "Noto Sans Mahajani, sans-serif", + "slug": "wp-font-lib-noto-sans-mahajani", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmahajani/v15/-F6sfiVqLzI2JPCgQBnw60Agp0JrvD5Fh8ARHNh4zg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mahajani" + } + ] + }, + { + "name": "Noto Sans Malayalam", + "fontFamily": "Noto Sans Malayalam, sans-serif", + "slug": "wp-font-lib-noto-sans-malayalam", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuH9BFzEr6HxEA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuD9BFzEr6HxEA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_GOD9BFzEr6HxEA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuD9BFzEr6HxEA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_dOD9BFzEr6HxEA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_mOf9BFzEr6HxEA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_oef9BFzEr6HxEA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuf9BFzEr6HxEA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_7-f9BFzEr6HxEA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + } + ] + }, + { + "name": "Noto Sans Mandaic", + "fontFamily": "Noto Sans Mandaic, sans-serif", + "slug": "wp-font-lib-noto-sans-mandaic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmandaic/v15/cIfnMbdWt1w_HgCcilqhKQBo_OsMI5_A_gMk0izH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mandaic" + } + ] + }, + { + "name": "Noto Sans Manichaean", + "fontFamily": "Noto Sans Manichaean, sans-serif", + "slug": "wp-font-lib-noto-sans-manichaean", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmanichaean/v15/taiVGntiC4--qtsfi4Jp9-_GkPZZCcrfekqCNTtFCtdX.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Manichaean" + } + ] + }, + { + "name": "Noto Sans Marchen", + "fontFamily": "Noto Sans Marchen, sans-serif", + "slug": "wp-font-lib-noto-sans-marchen", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmarchen/v17/aFTO7OZ_Y282EP-WyG6QTOX_C8WZMHhPk652ZaHk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Marchen" + } + ] + }, + { + "name": "Noto Sans Masaram Gondi", + "fontFamily": "Noto Sans Masaram Gondi, sans-serif", + "slug": "wp-font-lib-noto-sans-masaram-gondi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmasaramgondi/v17/6xK_dThFKcWIu4bpRBjRYRV7KZCbUq6n_1kPnuGe7RI9WSWX.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Masaram Gondi" + } + ] + }, + { + "name": "Noto Sans Math", + "fontFamily": "Noto Sans Math, sans-serif", + "slug": "wp-font-lib-noto-sans-math", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmath/v15/7Aump_cpkSecTWaHRlH2hyV5UHkG-V048PW0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Math" + } + ] + }, + { + "name": "Noto Sans Mayan Numerals", + "fontFamily": "Noto Sans Mayan Numerals, sans-serif", + "slug": "wp-font-lib-noto-sans-mayan-numerals", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmayannumerals/v15/PlIuFk25O6RzLfvNNVSivR09_KqYMwvvDKYjfIiE68oo6eepYQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mayan Numerals" + } + ] + }, + { + "name": "Noto Sans Medefaidrin", + "fontFamily": "Noto Sans Medefaidrin, sans-serif", + "slug": "wp-font-lib-noto-sans-medefaidrin", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmErWlT318e5A3rw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Medefaidrin" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmHjWlT318e5A3rw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Medefaidrin" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmJTRlT318e5A3rw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Medefaidrin" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmK3RlT318e5A3rw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Medefaidrin" + } + ] + }, + { + "name": "Noto Sans Meetei Mayek", + "fontFamily": "Noto Sans Meetei Mayek, sans-serif", + "slug": "wp-font-lib-noto-sans-meetei-mayek", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ__TW5PgeFYVa.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ_vTW5PgeFYVa.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1SX_vTW5PgeFYVa.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ_vTW5PgeFYVa.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1T7_vTW5PgeFYVa.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1QX-fTW5PgeFYVa.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Qu-fTW5PgeFYVa.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ-fTW5PgeFYVa.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Rg-fTW5PgeFYVa.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + } + ] + }, + { + "name": "Noto Sans Mende Kikakui", + "fontFamily": "Noto Sans Mende Kikakui, sans-serif", + "slug": "wp-font-lib-noto-sans-mende-kikakui", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmendekikakui/v28/11hRGoLHz17aKjQCWj-JHcLvu2Q5zZrnkbNCLUx_aDJLAHer.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mende Kikakui" + } + ] + }, + { + "name": "Noto Sans Meroitic", + "fontFamily": "Noto Sans Meroitic, sans-serif", + "slug": "wp-font-lib-noto-sans-meroitic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmeroitic/v16/IFS5HfRJndhE3P4b5jnZ3ITPvC6i00UDgDhTiKY9KQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meroitic" + } + ] + }, + { + "name": "Noto Sans Miao", + "fontFamily": "Noto Sans Miao, sans-serif", + "slug": "wp-font-lib-noto-sans-miao", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmiao/v17/Dxxz8jmXMW75w3OmoDXVV4zyZUjgUYVslLhx.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Miao" + } + ] + }, + { + "name": "Noto Sans Modi", + "fontFamily": "Noto Sans Modi, sans-serif", + "slug": "wp-font-lib-noto-sans-modi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmodi/v20/pe03MIySN5pO62Z5YkFyT7jeav5qWVAgVol-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Modi" + } + ] + }, + { + "name": "Noto Sans Mongolian", + "fontFamily": "Noto Sans Mongolian, sans-serif", + "slug": "wp-font-lib-noto-sans-mongolian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmongolian/v17/VdGCAYADGIwE0EopZx8xQfHlgEAMsrToxLsg6-av1x0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mongolian" + } + ] + }, + { + "name": "Noto Sans Mono", + "fontFamily": "Noto Sans Mono, monospace", + "slug": "wp-font-lib-noto-sans-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNI49rXVEQQL8Y.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNJ49rXVEQQL8Y.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_A1J49rXVEQQL8Y.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNJ49rXVEQQL8Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_GFJ49rXVEQQL8Y.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_I1O49rXVEQQL8Y.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_LRO49rXVEQQL8Y.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNO49rXVEQQL8Y.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_PpO49rXVEQQL8Y.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + } + ] + }, + { + "name": "Noto Sans Mro", + "fontFamily": "Noto Sans Mro, sans-serif", + "slug": "wp-font-lib-noto-sans-mro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmro/v18/qWcsB6--pZv9TqnUQMhe9b39WDzRtjkho4M.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mro" + } + ] + }, + { + "name": "Noto Sans Multani", + "fontFamily": "Noto Sans Multani, sans-serif", + "slug": "wp-font-lib-noto-sans-multani", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmultani/v20/9Bty3ClF38_RfOpe1gCaZ8p30BOFO1A0pfCs5Kos.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Multani" + } + ] + }, + { + "name": "Noto Sans Myanmar", + "fontFamily": "Noto Sans Myanmar, sans-serif", + "slug": "wp-font-lib-noto-sans-myanmar", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZs_y1ZtY3ymOryg38hOCSdOnFq0HGS1uEapkAC3AY.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HE-98EwiEwLxR-r.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFa9MEwiEwLxR-r.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZq_y1ZtY3ymOryg38hOCSdOnFq0En23OU4o1AC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEC9cEwiEwLxR-r.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEu8sEwiEwLxR-r.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFK88EwiEwLxR-r.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFW8MEwiEwLxR-r.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFy8cEwiEwLxR-r.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + } + ] + }, + { + "name": "Noto Sans NKo", + "fontFamily": "Noto Sans NKo, sans-serif", + "slug": "wp-font-lib-noto-sans-nko", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansnko/v2/esDX31ZdNv-KYGGJpKGk2_RpMpCMHMLBrdA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans NKo" + } + ] + }, + { + "name": "Noto Sans Nabataean", + "fontFamily": "Noto Sans Nabataean, sans-serif", + "slug": "wp-font-lib-noto-sans-nabataean", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansnabataean/v15/IFS4HfVJndhE3P4b5jnZ34DfsjO330dNoBJ9hK8kMK4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Nabataean" + } + ] + }, + { + "name": "Noto Sans Nag Mundari", + "fontFamily": "Noto Sans Nag Mundari, sans-serif", + "slug": "wp-font-lib-noto-sans-nag-mundari", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHRxirbUGA0whP19M.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Nag Mundari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHRyqrbUGA0whP19M.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Nag Mundari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHR8asbUGA0whP19M.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Nag Mundari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHR_-sbUGA0whP19M.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Nag Mundari" + } + ] + }, + { + "name": "Noto Sans Nandinagari", + "fontFamily": "Noto Sans Nandinagari, sans-serif", + "slug": "wp-font-lib-noto-sans-nandinagari", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansnandinagari/v3/or38Q7733eiDljA1IufXSNFT-1KI5y10H4jVa5RXzC1KOw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Nandinagari" + } + ] + }, + { + "name": "Noto Sans New Tai Lue", + "fontFamily": "Noto Sans New Tai Lue, sans-serif", + "slug": "wp-font-lib-noto-sans-new-tai-lue", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdeXAYUbghFPKzeY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans New Tai Lue" + }, + { + "src": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pddfAYUbghFPKzeY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans New Tai Lue" + }, + { + "src": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdTvHYUbghFPKzeY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans New Tai Lue" + }, + { + "src": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdQLHYUbghFPKzeY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans New Tai Lue" + } + ] + }, + { + "name": "Noto Sans Newa", + "fontFamily": "Noto Sans Newa, sans-serif", + "slug": "wp-font-lib-noto-sans-newa", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansnewa/v16/7r3fqXp6utEsO9pI4f8ok8sWg8n_qN4R5lNU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Newa" + } + ] + }, + { + "name": "Noto Sans Nushu", + "fontFamily": "Noto Sans Nushu, sans-serif", + "slug": "wp-font-lib-noto-sans-nushu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansnushu/v19/rnCw-xRQ3B7652emAbAe_Ai1IYaFWFAMArZKqQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Nushu" + } + ] + }, + { + "name": "Noto Sans Ogham", + "fontFamily": "Noto Sans Ogham, sans-serif", + "slug": "wp-font-lib-noto-sans-ogham", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansogham/v15/kmKlZqk1GBDGN0mY6k5lmEmww4hrt5laQxcoCA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ogham" + } + ] + }, + { + "name": "Noto Sans Ol Chiki", + "fontFamily": "Noto Sans Ol Chiki, sans-serif", + "slug": "wp-font-lib-noto-sans-ol-chiki", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALWk267I6gVrz5gQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ol Chiki" + }, + { + "src": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALVs267I6gVrz5gQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ol Chiki" + }, + { + "src": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALbcx67I6gVrz5gQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ol Chiki" + }, + { + "src": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALY4x67I6gVrz5gQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ol Chiki" + } + ] + }, + { + "name": "Noto Sans Old Hungarian", + "fontFamily": "Noto Sans Old Hungarian, sans-serif", + "slug": "wp-font-lib-noto-sans-old-hungarian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoldhungarian/v15/E213_cD6hP3GwCJPEUssHEM0KqLaHJXg2PiIgRfjbg5nCYXt.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old Hungarian" + } + ] + }, + { + "name": "Noto Sans Old Italic", + "fontFamily": "Noto Sans Old Italic, sans-serif", + "slug": "wp-font-lib-noto-sans-old-italic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansolditalic/v15/TuGOUUFzXI5FBtUq5a8bh68BJxxEVam7tWlRdRhtCC4d.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old Italic" + } + ] + }, + { + "name": "Noto Sans Old North Arabian", + "fontFamily": "Noto Sans Old North Arabian, sans-serif", + "slug": "wp-font-lib-noto-sans-old-north-arabian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoldnortharabian/v15/esDF30BdNv-KYGGJpKGk2tNiMt7Jar6olZDyNdr81zBQmUo_xw4ABw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old North Arabian" + } + ] + }, + { + "name": "Noto Sans Old Permic", + "fontFamily": "Noto Sans Old Permic, sans-serif", + "slug": "wp-font-lib-noto-sans-old-permic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoldpermic/v16/snf1s1q1-dF8pli1TesqcbUY4Mr-ElrwKLdXgv_dKYB5.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old Permic" + } + ] + }, + { + "name": "Noto Sans Old Persian", + "fontFamily": "Noto Sans Old Persian, sans-serif", + "slug": "wp-font-lib-noto-sans-old-persian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoldpersian/v15/wEOjEAbNnc5caQTFG18FHrZr9Bp6-8CmIJ_tqOlQfx9CjA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old Persian" + } + ] + }, + { + "name": "Noto Sans Old Sogdian", + "fontFamily": "Noto Sans Old Sogdian, sans-serif", + "slug": "wp-font-lib-noto-sans-old-sogdian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoldsogdian/v15/3JnjSCH90Gmq2mrzckOBBhFhdrMst48aURt7neIqM-9uyg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old Sogdian" + } + ] + }, + { + "name": "Noto Sans Old South Arabian", + "fontFamily": "Noto Sans Old South Arabian, sans-serif", + "slug": "wp-font-lib-noto-sans-old-south-arabian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoldsoutharabian/v15/3qT5oiOhnSyU8TNFIdhZTice3hB_HWKsEnF--0XCHiKx1OtDT9HwTA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old South Arabian" + } + ] + }, + { + "name": "Noto Sans Old Turkic", + "fontFamily": "Noto Sans Old Turkic, sans-serif", + "slug": "wp-font-lib-noto-sans-old-turkic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoldturkic/v15/yMJNMJVya43H0SUF_WmcGEQVqoEMKDKbsE2RjEw-Vyws.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old Turkic" + } + ] + }, + { + "name": "Noto Sans Oriya", + "fontFamily": "Noto Sans Oriya, sans-serif", + "slug": "wp-font-lib-noto-sans-oriya", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0fq_c6LhHBRe-.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0f6_c6LhHBRe-.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Iviqf6_c6LhHBRe-.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0f6_c6LhHBRe-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvjGf6_c6LhHBRe-.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgqeK_c6LhHBRe-.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgTeK_c6LhHBRe-.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0eK_c6LhHBRe-.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvhdeK_c6LhHBRe-.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + } + ] + }, + { + "name": "Noto Sans Osage", + "fontFamily": "Noto Sans Osage, sans-serif", + "slug": "wp-font-lib-noto-sans-osage", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansosage/v18/oPWX_kB6kP4jCuhpgEGmw4mtAVtXRlaSxkrMCQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Osage" + } + ] + }, + { + "name": "Noto Sans Osmanya", + "fontFamily": "Noto Sans Osmanya, sans-serif", + "slug": "wp-font-lib-noto-sans-osmanya", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansosmanya/v18/8vIS7xs32H97qzQKnzfeWzUyUpOJmz6kR47NCV5Z.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Osmanya" + } + ] + }, + { + "name": "Noto Sans Pahawh Hmong", + "fontFamily": "Noto Sans Pahawh Hmong, sans-serif", + "slug": "wp-font-lib-noto-sans-pahawh-hmong", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanspahawhhmong/v18/bWtp7e_KfBziStx7lIzKKaMUOBEA3UPQDW7krzc_c48aMpM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Pahawh Hmong" + } + ] + }, + { + "name": "Noto Sans Palmyrene", + "fontFamily": "Noto Sans Palmyrene, sans-serif", + "slug": "wp-font-lib-noto-sans-palmyrene", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanspalmyrene/v15/ZgNPjOdKPa7CHqq0h37c_ASCWvH93SFCPnK5ZpdNtcA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Palmyrene" + } + ] + }, + { + "name": "Noto Sans Pau Cin Hau", + "fontFamily": "Noto Sans Pau Cin Hau, sans-serif", + "slug": "wp-font-lib-noto-sans-pau-cin-hau", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanspaucinhau/v20/x3d-cl3IZKmUqiMg_9wBLLtzl22EayN7ehIdjEWqKMxsKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Pau Cin Hau" + } + ] + }, + { + "name": "Noto Sans Phags Pa", + "fontFamily": "Noto Sans Phags Pa, sans-serif", + "slug": "wp-font-lib-noto-sans-phags-pa", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansphagspa/v15/pxiZyoo6v8ZYyWh5WuPeJzMkd4SrGChkqkSsrvNXiA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Phags Pa" + } + ] + }, + { + "name": "Noto Sans Phoenician", + "fontFamily": "Noto Sans Phoenician, sans-serif", + "slug": "wp-font-lib-noto-sans-phoenician", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansphoenician/v15/jizFRF9Ksm4Bt9PvcTaEkIHiTVtxmFtS5X7Jot-p5561.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Phoenician" + } + ] + }, + { + "name": "Noto Sans Psalter Pahlavi", + "fontFamily": "Noto Sans Psalter Pahlavi, sans-serif", + "slug": "wp-font-lib-noto-sans-psalter-pahlavi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanspsalterpahlavi/v15/rP2Vp3K65FkAtHfwd-eISGznYihzggmsicPfud3w1G3KsUQBct4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Psalter Pahlavi" + } + ] + }, + { + "name": "Noto Sans Rejang", + "fontFamily": "Noto Sans Rejang, sans-serif", + "slug": "wp-font-lib-noto-sans-rejang", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansrejang/v18/Ktk2AKuMeZjqPnXgyqrib7DIogqwN4O3WYZB_sU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Rejang" + } + ] + }, + { + "name": "Noto Sans Runic", + "fontFamily": "Noto Sans Runic, sans-serif", + "slug": "wp-font-lib-noto-sans-runic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansrunic/v15/H4c_BXWPl9DZ0Xe_nHUaus7W68WWaxpvHtgIYg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Runic" + } + ] + }, + { + "name": "Noto Sans SC", + "fontFamily": "Noto Sans SC, sans-serif", + "slug": "wp-font-lib-noto-sans-sc", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kJo84MPvpLmixcA63oeALZTYKL2wv287Sb.otf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZhaCt9yX6-q2CGg.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kXo84MPvpLmixcA63oeALhL4iJ-Q7m8w.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZ3aGt9yX6-q2CGg.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZlaet9yX6-q2CGg.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZraWt9yX6-q2CGg.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans SC" + } + ] + }, + { + "name": "Noto Sans Samaritan", + "fontFamily": "Noto Sans Samaritan, sans-serif", + "slug": "wp-font-lib-noto-sans-samaritan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssamaritan/v15/buEqppe9f8_vkXadMBJJo0tSmaYjFkxOUo5jNlOVMzQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Samaritan" + } + ] + }, + { + "name": "Noto Sans Saurashtra", + "fontFamily": "Noto Sans Saurashtra, sans-serif", + "slug": "wp-font-lib-noto-sans-saurashtra", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssaurashtra/v19/ea8GacQ0Wfz_XKWXe6OtoA8w8zvmYwTef9ndjhPTSIx9.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Saurashtra" + } + ] + }, + { + "name": "Noto Sans Sharada", + "fontFamily": "Noto Sans Sharada, sans-serif", + "slug": "wp-font-lib-noto-sans-sharada", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssharada/v16/gok0H7rwAEdtF9N8-mdTGALG6p0kwoXLPOwr4H8a.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sharada" + } + ] + }, + { + "name": "Noto Sans Shavian", + "fontFamily": "Noto Sans Shavian, sans-serif", + "slug": "wp-font-lib-noto-sans-shavian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansshavian/v15/CHy5V_HZE0jxJBQlqAeCKjJvQBNF4EFQSplv2Cwg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Shavian" + } + ] + }, + { + "name": "Noto Sans Siddham", + "fontFamily": "Noto Sans Siddham, sans-serif", + "slug": "wp-font-lib-noto-sans-siddham", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssiddham/v17/OZpZg-FwqiNLe9PELUikxTWDoCCeGqndk3Ic92ZH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Siddham" + } + ] + }, + { + "name": "Noto Sans SignWriting", + "fontFamily": "Noto Sans SignWriting, sans-serif", + "slug": "wp-font-lib-noto-sans-signwriting", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssignwriting/v1/Noas6VX_wIWFbTTCrYmvy9A2UnkL-2SZAWiUEVCARYQemg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans SignWriting" + } + ] + }, + { + "name": "Noto Sans Sinhala", + "fontFamily": "Noto Sans Sinhala, sans-serif", + "slug": "wp-font-lib-noto-sans-sinhala", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2b5lgLpJwbQRM.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2a5lgLpJwbQRM.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwlOa5lgLpJwbQRM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2a5lgLpJwbQRM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwj-a5lgLpJwbQRM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwtOd5lgLpJwbQRM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwuqd5lgLpJwbQRM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2d5lgLpJwbQRM.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwqSd5lgLpJwbQRM.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + } + ] + }, + { + "name": "Noto Sans Sogdian", + "fontFamily": "Noto Sans Sogdian, sans-serif", + "slug": "wp-font-lib-noto-sans-sogdian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssogdian/v15/taiQGn5iC4--qtsfi4Jp6eHPnfxQBo--Pm6KHidM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sogdian" + } + ] + }, + { + "name": "Noto Sans Sora Sompeng", + "fontFamily": "Noto Sans Sora Sompeng, sans-serif", + "slug": "wp-font-lib-noto-sans-sora-sompeng", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHR818DpZXJQd4Mu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sora Sompeng" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHRO18DpZXJQd4Mu.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sora Sompeng" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSi0MDpZXJQd4Mu.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sora Sompeng" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSb0MDpZXJQd4Mu.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sora Sompeng" + } + ] + }, + { + "name": "Noto Sans Soyombo", + "fontFamily": "Noto Sans Soyombo, sans-serif", + "slug": "wp-font-lib-noto-sans-soyombo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssoyombo/v15/RWmSoL-Y6-8q5LTtXs6MF6q7xsxgY0FrIFOcK25W.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Soyombo" + } + ] + }, + { + "name": "Noto Sans Sundanese", + "fontFamily": "Noto Sans Sundanese, sans-serif", + "slug": "wp-font-lib-noto-sans-sundanese", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxpNNHCizv7fQES.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sundanese" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxbNNHCizv7fQES.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sundanese" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6cty3M9HCizv7fQES.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sundanese" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctyOM9HCizv7fQES.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sundanese" + } + ] + }, + { + "name": "Noto Sans Syloti Nagri", + "fontFamily": "Noto Sans Syloti Nagri, sans-serif", + "slug": "wp-font-lib-noto-sans-syloti-nagri", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssylotinagri/v20/uU9eCAQZ75uhfF9UoWDRiY3q7Sf_VFV3m4dGFVfxN87gsj0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syloti Nagri" + } + ] + }, + { + "name": "Noto Sans Symbols", + "fontFamily": "Noto Sans Symbols, sans-serif", + "slug": "wp-font-lib-noto-sans-symbols", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ4gavVFRkzrbQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_Q8gavVFRkzrbQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gIw8gavVFRkzrbQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ8gavVFRkzrbQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gTw8gavVFRkzrbQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gowggavVFRkzrbQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gmgggavVFRkzrbQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_QggavVFRkzrbQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g1AggavVFRkzrbQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + } + ] + }, + { + "name": "Noto Sans Symbols 2", + "fontFamily": "Noto Sans Symbols 2, sans-serif", + "slug": "wp-font-lib-noto-sans-symbols-2", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssymbols2/v19/I_uyMoGduATTei9eI8daxVHDyfisHr71ypPqfX71-AI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols 2" + } + ] + }, + { + "name": "Noto Sans Syriac", + "fontFamily": "Noto Sans Syriac, sans-serif", + "slug": "wp-font-lib-noto-sans-syriac", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-VD9caJyZfUL_FC.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-XD9MaJyZfUL_FC.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Ud9MaJyZfUL_FC.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-VD9MaJyZfUL_FC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Vx9MaJyZfUL_FC.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Wd88aJyZfUL_FC.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Wk88aJyZfUL_FC.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-XD88aJyZfUL_FC.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Xq88aJyZfUL_FC.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + } + ] + }, + { + "name": "Noto Sans TC", + "fontFamily": "Noto Sans TC, sans-serif", + "slug": "wp-font-lib-noto-sans-tc", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFlOG829Oofr2wohFbTp9i9WyEJIfNZ1sjy.otf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans TC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9kwMvDd1V39Hr7g.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans TC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nF7OG829Oofr2wohFbTp9iFOSsLA_ZJ1g.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans TC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9ywIvDd1V39Hr7g.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans TC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9gwQvDd1V39Hr7g.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans TC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9uwYvDd1V39Hr7g.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans TC" + } + ] + }, + { + "name": "Noto Sans Tagalog", + "fontFamily": "Noto Sans Tagalog, sans-serif", + "slug": "wp-font-lib-noto-sans-tagalog", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstagalog/v18/J7aFnoNzCnFcV9ZI-sUYuvote1R0wwEAA8jHexnL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tagalog" + } + ] + }, + { + "name": "Noto Sans Tagbanwa", + "fontFamily": "Noto Sans Tagbanwa, sans-serif", + "slug": "wp-font-lib-noto-sans-tagbanwa", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstagbanwa/v18/Y4GWYbB8VTEp4t3MKJSMmQdIKjRtt_nZRjQEaYpGoQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tagbanwa" + } + ] + }, + { + "name": "Noto Sans Tai Le", + "fontFamily": "Noto Sans Tai Le, sans-serif", + "slug": "wp-font-lib-noto-sans-tai-le", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstaile/v17/vEFK2-VODB8RrNDvZSUmVxEATwR58tK1W77HtMo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tai Le" + } + ] + }, + { + "name": "Noto Sans Tai Tham", + "fontFamily": "Noto Sans Tai Tham, sans-serif", + "slug": "wp-font-lib-noto-sans-tai-tham", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBCUbPgquyaRGKMw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tai Tham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBBcbPgquyaRGKMw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tai Tham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBPscPgquyaRGKMw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tai Tham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBMIcPgquyaRGKMw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tai Tham" + } + ] + }, + { + "name": "Noto Sans Tai Viet", + "fontFamily": "Noto Sans Tai Viet, sans-serif", + "slug": "wp-font-lib-noto-sans-tai-viet", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstaiviet/v16/8QIUdj3HhN_lv4jf9vsE-9GMOLsaSPZr644fWsRO9w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tai Viet" + } + ] + }, + { + "name": "Noto Sans Takri", + "fontFamily": "Noto Sans Takri, sans-serif", + "slug": "wp-font-lib-noto-sans-takri", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstakri/v21/TuGJUVpzXI5FBtUq5a8bnKIOdTwQNO_W3khJXg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Takri" + } + ] + }, + { + "name": "Noto Sans Tamil", + "fontFamily": "Noto Sans Tamil, sans-serif", + "slug": "wp-font-lib-noto-sans-tamil", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGor0RqKDt_EvT.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGo70RqKDt_EvT.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7uYo70RqKDt_EvT.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGo70RqKDt_EvT.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7v0o70RqKDt_EvT.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7sYpL0RqKDt_EvT.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7shpL0RqKDt_EvT.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGpL0RqKDt_EvT.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tvpL0RqKDt_EvT.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + } + ] + }, + { + "name": "Noto Sans Tamil Supplement", + "fontFamily": "Noto Sans Tamil Supplement, sans-serif", + "slug": "wp-font-lib-noto-sans-tamil-supplement", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstamilsupplement/v19/DdTz78kEtnooLS5rXF1DaruiCd_bFp_Ph4sGcn7ax_vsAeMkeq1x.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil Supplement" + } + ] + }, + { + "name": "Noto Sans Tangsa", + "fontFamily": "Noto Sans Tangsa, sans-serif", + "slug": "wp-font-lib-noto-sans-tangsa", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp1YkyoRYdplyJDA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tangsa" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp1qkyoRYdplyJDA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tangsa" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp2GlCoRYdplyJDA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tangsa" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp2_lCoRYdplyJDA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tangsa" + } + ] + }, + { + "name": "Noto Sans Telugu", + "fontFamily": "Noto Sans Telugu, sans-serif", + "slug": "wp-font-lib-noto-sans-telugu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezfqQUbf-3v37w.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zbqQUbf-3v37w.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntJTbqQUbf-3v37w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezbqQUbf-3v37w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntSTbqQUbf-3v37w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntpTHqQUbf-3v37w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntnDHqQUbf-3v37w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zHqQUbf-3v37w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt0jHqQUbf-3v37w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + } + ] + }, + { + "name": "Noto Sans Thaana", + "fontFamily": "Noto Sans Thaana, sans-serif", + "slug": "wp-font-lib-noto-sans-thaana", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbxLhnu4-tbNu.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VrbhLhnu4-tbNu.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4W1bhLhnu4-tbNu.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbhLhnu4-tbNu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XZbhLhnu4-tbNu.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4U1aRLhnu4-tbNu.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4UMaRLhnu4-tbNu.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VraRLhnu4-tbNu.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VCaRLhnu4-tbNu.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + } + ] + }, + { + "name": "Noto Sans Thai", + "fontFamily": "Noto Sans Thai, sans-serif", + "slug": "wp-font-lib-noto-sans-thai", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RspzF-QRvzzXg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRtpzF-QRvzzXg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU8ptpzF-QRvzzXg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RtpzF-QRvzzXg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU6ZtpzF-QRvzzXg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU0pqpzF-QRvzzXg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU3NqpzF-QRvzzXg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRqpzF-QRvzzXg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUz1qpzF-QRvzzXg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + } + ] + }, + { + "name": "Noto Sans Thai Looped", + "fontFamily": "Noto Sans Thai Looped, sans-serif", + "slug": "wp-font-lib-noto-sans-thai-looped", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50fF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3YX6AYeCT_Wfd1.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y84E4UgrzUO5sKA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yl4I4UgrzUO5sKA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50RF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3gO6ocWiHvWQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yz4M4UgrzUO5sKA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y44Q4UgrzUO5sKA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yh4U4UgrzUO5sKA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Ym4Y4UgrzUO5sKA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yv4c4UgrzUO5sKA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + } + ] + }, + { + "name": "Noto Sans Tifinagh", + "fontFamily": "Noto Sans Tifinagh, sans-serif", + "slug": "wp-font-lib-noto-sans-tifinagh", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstifinagh/v17/I_uzMoCduATTei9eI8dawkHIwvmhCvbn6rnEcXfs4Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tifinagh" + } + ] + }, + { + "name": "Noto Sans Tirhuta", + "fontFamily": "Noto Sans Tirhuta, sans-serif", + "slug": "wp-font-lib-noto-sans-tirhuta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstirhuta/v15/t5t6IQYRNJ6TWjahPR6X-M-apUyby7uGUBsTrn5P.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tirhuta" + } + ] + }, + { + "name": "Noto Sans Ugaritic", + "fontFamily": "Noto Sans Ugaritic, sans-serif", + "slug": "wp-font-lib-noto-sans-ugaritic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansugaritic/v16/3qTwoiqhnSyU8TNFIdhZVCwbjCpkAXXkMhoIkiazfg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ugaritic" + } + ] + }, + { + "name": "Noto Sans Vai", + "fontFamily": "Noto Sans Vai, sans-serif", + "slug": "wp-font-lib-noto-sans-vai", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansvai/v17/NaPecZTSBuhTirw6IaFn_UrURMTsDIRSfr0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Vai" + } + ] + }, + { + "name": "Noto Sans Wancho", + "fontFamily": "Noto Sans Wancho, sans-serif", + "slug": "wp-font-lib-noto-sans-wancho", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanswancho/v17/zrf-0GXXyfn6Fs0lH9P4cUubP0GBqAPopiRfKp8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Wancho" + } + ] + }, + { + "name": "Noto Sans Warang Citi", + "fontFamily": "Noto Sans Warang Citi, sans-serif", + "slug": "wp-font-lib-noto-sans-warang-citi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanswarangciti/v17/EYqtmb9SzL1YtsZSScyKDXIeOv3w-zgsNvKRpeVCCXzdgA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Warang Citi" + } + ] + }, + { + "name": "Noto Sans Yi", + "fontFamily": "Noto Sans Yi, sans-serif", + "slug": "wp-font-lib-noto-sans-yi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansyi/v19/sJoD3LFXjsSdcnzn071rO3apxVDJNVgSNg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Yi" + } + ] + }, + { + "name": "Noto Sans Zanabazar Square", + "fontFamily": "Noto Sans Zanabazar Square, sans-serif", + "slug": "wp-font-lib-noto-sans-zanabazar-square", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanszanabazarsquare/v16/Cn-jJsuGWQxOjaGwMQ6fOicyxLBEMRfDtkzl4uagQtJxOCEgN0Gc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Zanabazar Square" + } + ] + }, + { + "name": "Noto Serif", + "fontFamily": "Noto Serif, serif", + "slug": "wp-font-lib-noto-serif", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZqFGjwM0Lhq_Szw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZKFCjwM0Lhq_Szw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZ9lCjwM0Lhq_Szw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZqFCjwM0Lhq_Szw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZmlCjwM0Lhq_Szw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZdlejwM0Lhq_Szw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZT1ejwM0Lhq_Szw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZKFejwM0Lhq_Szw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZAVejwM0Lhq_Szw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBNLgscPpKrCzyUi.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBPLg8cPpKrCzyUi.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBMVg8cPpKrCzyUi.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBNLg8cPpKrCzyUi.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBN5g8cPpKrCzyUi.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBOVhMcPpKrCzyUi.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBOshMcPpKrCzyUi.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBPLhMcPpKrCzyUi.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBPihMcPpKrCzyUi.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Noto Serif" + } + ] + }, + { + "name": "Noto Serif Ahom", + "fontFamily": "Noto Serif Ahom, serif", + "slug": "wp-font-lib-noto-serif-ahom", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifahom/v19/FeVIS0hfp6cprmEUffAW_fUL_AN-wuYrPFiwaw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ahom" + } + ] + }, + { + "name": "Noto Serif Armenian", + "fontFamily": "Noto Serif Armenian, serif", + "slug": "wp-font-lib-noto-serif-armenian", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8ObxvXagGdkbg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8KbxvXagGdkbg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZ1cKbxvXagGdkbg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8KbxvXagGdkbg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZucKbxvXagGdkbg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZVcWbxvXagGdkbg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZbMWbxvXagGdkbg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8WbxvXagGdkbg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZIsWbxvXagGdkbg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + } + ] + }, + { + "name": "Noto Serif Balinese", + "fontFamily": "Noto Serif Balinese, serif", + "slug": "wp-font-lib-noto-serif-balinese", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifbalinese/v18/QdVKSS0-JginysQSRvuCmUMB_wVeQAxXRbgJdhapcUU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Balinese" + } + ] + }, + { + "name": "Noto Serif Bengali", + "fontFamily": "Noto Serif Bengali, serif", + "slug": "wp-font-lib-noto-serif-bengali", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAH3qn4LjQH8yD.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAHnqn4LjQH8yD.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfdeHnqn4LjQH8yD.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAHnqn4LjQH8yD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcyHnqn4LjQH8yD.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffeGXqn4LjQH8yD.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffnGXqn4LjQH8yD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAGXqn4LjQH8yD.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfepGXqn4LjQH8yD.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + } + ] + }, + { + "name": "Noto Serif Devanagari", + "fontFamily": "Noto Serif Devanagari, serif", + "slug": "wp-font-lib-noto-serif-devanagari", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-og-HMUe1u_dv.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-ow-HMUe1u_dv.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTBgow-HMUe1u_dv.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-ow-HMUe1u_dv.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTAMow-HMUe1u_dv.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDgpA-HMUe1u_dv.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDZpA-HMUe1u_dv.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-pA-HMUe1u_dv.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTCXpA-HMUe1u_dv.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + } + ] + }, + { + "name": "Noto Serif Display", + "fontFamily": "Noto Serif Display, serif", + "slug": "wp-font-lib-noto-serif-display", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd49gKaDU9hvzC.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd4tgKaDU9hvzC.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVoD4tgKaDU9hvzC.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd4tgKaDU9hvzC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpv4tgKaDU9hvzC.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVqD5dgKaDU9hvzC.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVq65dgKaDU9hvzC.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd5dgKaDU9hvzC.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVr05dgKaDU9hvzC.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBIYjEfg-zCmf4.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBJYjEfg-zCmf4.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoW5JYjEfg-zCmf4.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBJYjEfg-zCmf4.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoQJJYjEfg-zCmf4.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-Voe5OYjEfg-zCmf4.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoddOYjEfg-zCmf4.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBOYjEfg-zCmf4.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoZlOYjEfg-zCmf4.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + } + ] + }, + { + "name": "Noto Serif Dogra", + "fontFamily": "Noto Serif Dogra, serif", + "slug": "wp-font-lib-noto-serif-dogra", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifdogra/v16/MQpP-XquKMC7ROPP3QOOlm7xPu3fGy63IbPzkns.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Dogra" + } + ] + }, + { + "name": "Noto Serif Ethiopic", + "fontFamily": "Noto Serif Ethiopic, serif", + "slug": "wp-font-lib-noto-serif-ethiopic", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSQjkaO9UVLyiw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSUjkaO9UVLyiw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCkyUjkaO9UVLyiw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSUjkaO9UVLyiw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxC_yUjkaO9UVLyiw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCEyIjkaO9UVLyiw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCKiIjkaO9UVLyiw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSIjkaO9UVLyiw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCZCIjkaO9UVLyiw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + } + ] + }, + { + "name": "Noto Serif Georgian", + "fontFamily": "Noto Serif Georgian, serif", + "slug": "wp-font-lib-noto-serif-georgian", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvsfdzTw-FgZxQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzvofdzTw-FgZxQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSEPofdzTw-FgZxQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvofdzTw-FgZxQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSfPofdzTw-FgZxQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSkP0fdzTw-FgZxQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSqf0fdzTw-FgZxQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzv0fdzTw-FgZxQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aS5_0fdzTw-FgZxQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + } + ] + }, + { + "name": "Noto Serif Grantha", + "fontFamily": "Noto Serif Grantha, serif", + "slug": "wp-font-lib-noto-serif-grantha", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifgrantha/v19/qkBIXuEH5NzDDvc3fLDYxPk9-Wq3WLiqFENLR7fHGw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Grantha" + } + ] + }, + { + "name": "Noto Serif Gujarati", + "fontFamily": "Noto Serif Gujarati, serif", + "slug": "wp-font-lib-noto-serif-gujarati", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycYzuM1Kf-OJu.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuaycIzuM1Kf-OJu.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuZscIzuM1Kf-OJu.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycIzuM1Kf-OJu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYAcIzuM1Kf-OJu.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Hubsd4zuM1Kf-OJu.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HubVd4zuM1Kf-OJu.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huayd4zuM1Kf-OJu.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huabd4zuM1Kf-OJu.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + } + ] + }, + { + "name": "Noto Serif Gurmukhi", + "fontFamily": "Noto Serif Gurmukhi, serif", + "slug": "wp-font-lib-noto-serif-gurmukhi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eBTNmqVU7y6l.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-eRTNmqVU7y6l.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr7geRTNmqVU7y6l.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eRTNmqVU7y6l.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6MeRTNmqVU7y6l.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5gfhTNmqVU7y6l.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5ZfhTNmqVU7y6l.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-fhTNmqVU7y6l.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4XfhTNmqVU7y6l.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + } + ] + }, + { + "name": "Noto Serif HK", + "fontFamily": "Noto Serif HK, serif", + "slug": "wp-font-lib-noto-serif-hk", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-K2RmV9Su1M6i.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMcgK2RmV9Su1M6i.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMd-K2RmV9Su1M6i.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMdMK2RmV9Su1M6i.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMegLGRmV9Su1M6i.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMeZLGRmV9Su1M6i.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-LGRmV9Su1M6i.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMfXLGRmV9Su1M6i.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + } + ] + }, + { + "name": "Noto Serif Hebrew", + "fontFamily": "Noto Serif Hebrew, serif", + "slug": "wp-font-lib-noto-serif-hebrew", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwTAG8_vlQxz24.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwSAG8_vlQxz24.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVFISAG8_vlQxz24.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwSAG8_vlQxz24.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVD4SAG8_vlQxz24.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVNIVAG8_vlQxz24.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVOsVAG8_vlQxz24.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwVAG8_vlQxz24.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVKUVAG8_vlQxz24.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + } + ] + }, + { + "name": "Noto Serif JP", + "fontFamily": "Noto Serif JP, serif", + "slug": "wp-font-lib-noto-serif-jp", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZBaPRkgfU8fEwb0.otf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif JP" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZHKMRkgfU8fEwb0.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif JP" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn7mYHs72GKoTvER4Gn3b5eMXNikYkY0T84.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif JP" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZCqNRkgfU8fEwb0.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif JP" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZAaKRkgfU8fEwb0.otf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif JP" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZGKLRkgfU8fEwb0.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif JP" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZFqJRkgfU8fEwb0.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif JP" + } + ] + }, + { + "name": "Noto Serif KR", + "fontFamily": "Noto Serif KR, serif", + "slug": "wp-font-lib-noto-serif-kr", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTihC8O1ZNH1ahck.otf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif KR" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTkxB8O1ZNH1ahck.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif KR" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3Jn7SDn90Gmq2mr3blnHaTZXduZp1ONyKHQ.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif KR" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXThRA8O1ZNH1ahck.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif KR" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTjhH8O1ZNH1ahck.otf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif KR" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTlxG8O1ZNH1ahck.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif KR" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTmRE8O1ZNH1ahck.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif KR" + } + ] + }, + { + "name": "Noto Serif Kannada", + "fontFamily": "Noto Serif Kannada, serif", + "slug": "wp-font-lib-noto-serif-kannada", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYCceRJ71svgcI.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYDceRJ71svgcI.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgZgDceRJ71svgcI.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYDceRJ71svgcI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgfQDceRJ71svgcI.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgRgEceRJ71svgcI.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgSEEceRJ71svgcI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYEceRJ71svgcI.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgW8EceRJ71svgcI.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + } + ] + }, + { + "name": "Noto Serif Khmer", + "fontFamily": "Noto Serif Khmer, serif", + "slug": "wp-font-lib-noto-serif-khmer", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B4wXEZK9Xo4xg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaB8wXEZK9Xo4xg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNth8wXEZK9Xo4xg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B8wXEZK9Xo4xg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN2h8wXEZK9Xo4xg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNNhgwXEZK9Xo4xg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNDxgwXEZK9Xo4xg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaBgwXEZK9Xo4xg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNQRgwXEZK9Xo4xg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + } + ] + }, + { + "name": "Noto Serif Khojki", + "fontFamily": "Noto Serif Khojki, serif", + "slug": "wp-font-lib-noto-serif-khojki", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMY0ghvyZ0Qtc5HAQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khojki" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMY4AhvyZ0Qtc5HAQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khojki" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMYDA9vyZ0Qtc5HAQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khojki" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMYNQ9vyZ0Qtc5HAQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khojki" + } + ] + }, + { + "name": "Noto Serif Lao", + "fontFamily": "Noto Serif Lao, serif", + "slug": "wp-font-lib-noto-serif-lao", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMLrvOjlmyhHHQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMKrvOjlmyhHHQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8Vb0KrvOjlmyhHHQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMKrvOjlmyhHHQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VdEKrvOjlmyhHHQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VT0NrvOjlmyhHHQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VQQNrvOjlmyhHHQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMNrvOjlmyhHHQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VUoNrvOjlmyhHHQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + } + ] + }, + { + "name": "Noto Serif Malayalam", + "fontFamily": "Noto Serif Malayalam, serif", + "slug": "wp-font-lib-noto-serif-malayalam", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-1fnVwHpQVySg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-xfnVwHpQVySg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL16exfnVwHpQVySg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-xfnVwHpQVySg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1hexfnVwHpQVySg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1aetfnVwHpQVySg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1UOtfnVwHpQVySg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-tfnVwHpQVySg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1HutfnVwHpQVySg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + } + ] + }, + { + "name": "Noto Serif Myanmar", + "fontFamily": "Noto Serif Myanmar, serif", + "slug": "wp-font-lib-noto-serif-myanmar", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJudM7F2Yv76aBKKs-bHMQfAHUw3jnNwBDsU9X6RPzQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNbDHMefv2TeXJng.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNCDLMefv2TeXJng.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJsdM7F2Yv76aBKKs-bHMQfAHUw3jn1pBrocdDqRA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNUDPMefv2TeXJng.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNfDTMefv2TeXJng.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNGDXMefv2TeXJng.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNBDbMefv2TeXJng.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNIDfMefv2TeXJng.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + } + ] + }, + { + "name": "Noto Serif NP Hmong", + "fontFamily": "Noto Serif NP Hmong, serif", + "slug": "wp-font-lib-noto-serif-np-hmong", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbjPhFLp3u0rVO-d.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif NP Hmong" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbj9hFLp3u0rVO-d.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif NP Hmong" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbgRg1Lp3u0rVO-d.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif NP Hmong" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbgog1Lp3u0rVO-d.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif NP Hmong" + } + ] + }, + { + "name": "Noto Serif Oriya", + "fontFamily": "Noto Serif Oriya, serif", + "slug": "wp-font-lib-noto-serif-oriya", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxrc_Hy-v039MF1j.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxru_Hy-v039MF1j.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxoC-3y-v039MF1j.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxo7-3y-v039MF1j.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Oriya" + } + ] + }, + { + "name": "Noto Serif SC", + "fontFamily": "Noto Serif SC, serif", + "slug": "wp-font-lib-noto-serif-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mm63SzZBEtERe7U.otf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif SC" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mgq0SzZBEtERe7U.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif SC" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4chBXePl9DZ0Xe7gG9cyOj7oqCcbzhqDtg.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif SC" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mlK1SzZBEtERe7U.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif SC" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mn6ySzZBEtERe7U.otf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif SC" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mhqzSzZBEtERe7U.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif SC" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7miKxSzZBEtERe7U.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif SC" + } + ] + }, + { + "name": "Noto Serif Sinhala", + "fontFamily": "Noto Serif Sinhala, serif", + "slug": "wp-font-lib-noto-serif-sinhala", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxRlMsxaLRn3W-.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExR1MsxaLRn3W-.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pHvR1MsxaLRn3W-.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxR1MsxaLRn3W-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGDR1MsxaLRn3W-.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFvQFMsxaLRn3W-.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFWQFMsxaLRn3W-.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExQFMsxaLRn3W-.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pEYQFMsxaLRn3W-.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + } + ] + }, + { + "name": "Noto Serif TC", + "fontFamily": "Noto Serif TC, serif", + "slug": "wp-font-lib-noto-serif-tc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvr8vbX9GTsoOAX4.otf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif TC" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvtssbX9GTsoOAX4.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif TC" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLYgIZb5bJNDGYxLBibeHZ0BhnEESXFtUsM.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif TC" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvoMtbX9GTsoOAX4.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif TC" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvq8qbX9GTsoOAX4.otf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif TC" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvssrbX9GTsoOAX4.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif TC" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvvMpbX9GTsoOAX4.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif TC" + } + ] + }, + { + "name": "Noto Serif Tamil", + "fontFamily": "Noto Serif Tamil, serif", + "slug": "wp-font-lib-noto-serif-tamil", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN6R8Pz3v8Etew.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNN-R8Pz3v8Etew.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecat6t-R8Pz3v8Etew.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN-R8Pz3v8Etew.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatht-R8Pz3v8Etew.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatatiR8Pz3v8Etew.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatU9iR8Pz3v8Etew.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNNiR8Pz3v8Etew.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatHdiR8Pz3v8Etew.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5svbzncQ9e3wx.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5s_bzncQ9e3wx.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJwns_bzncQ9e3wx.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5s_bzncQ9e3wx.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJxLs_bzncQ9e3wx.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyntPbzncQ9e3wx.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyetPbzncQ9e3wx.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5tPbzncQ9e3wx.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJzQtPbzncQ9e3wx.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + } + ] + }, + { + "name": "Noto Serif Tangut", + "fontFamily": "Noto Serif Tangut, serif", + "slug": "wp-font-lib-noto-serif-tangut", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriftangut/v16/xn76YGc72GKoTvER4Gn3b4m9Ern7Em41fcvN2KT4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tangut" + } + ] + }, + { + "name": "Noto Serif Telugu", + "fontFamily": "Noto Serif Telugu, serif", + "slug": "wp-font-lib-noto-serif-telugu", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TGwuY2fjgrZYA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTCwuY2fjgrZYA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DqzCwuY2fjgrZYA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TCwuY2fjgrZYA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DxzCwuY2fjgrZYA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DKzewuY2fjgrZYA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DEjewuY2fjgrZYA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTewuY2fjgrZYA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DXDewuY2fjgrZYA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + } + ] + }, + { + "name": "Noto Serif Thai", + "fontFamily": "Noto Serif Thai, serif", + "slug": "wp-font-lib-noto-serif-thai", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiFuRRCmsdu0Qx.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiF-RRCmsdu0Qx.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0p8F-RRCmsdu0Qx.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiF-RRCmsdu0Qx.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oQF-RRCmsdu0Qx.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0r8EORRCmsdu0Qx.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0rFEORRCmsdu0Qx.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiEORRCmsdu0Qx.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qLEORRCmsdu0Qx.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + } + ] + }, + { + "name": "Noto Serif Tibetan", + "fontFamily": "Noto Serif Tibetan, serif", + "slug": "wp-font-lib-noto-serif-tibetan", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYdPS7rdSy_32c.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYcPS7rdSy_32c.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIugcPS7rdSy_32c.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYcPS7rdSy_32c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIoQcPS7rdSy_32c.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmImgbPS7rdSy_32c.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIlEbPS7rdSy_32c.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYbPS7rdSy_32c.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIh8bPS7rdSy_32c.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + } + ] + }, + { + "name": "Noto Serif Toto", + "fontFamily": "Noto Serif Toto, serif", + "slug": "wp-font-lib-noto-serif-toto", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhCy3Il-aj55vdNug.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Toto" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhCx_Il-aj55vdNug.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Toto" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhC_PPl-aj55vdNug.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Toto" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhC8rPl-aj55vdNug.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Toto" + } + ] + }, + { + "name": "Noto Serif Yezidi", + "fontFamily": "Noto Serif Yezidi, serif", + "slug": "wp-font-lib-noto-serif-yezidi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD2yEkrlGJgmVCqg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Yezidi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD6SEkrlGJgmVCqg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Yezidi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDBSYkrlGJgmVCqg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Yezidi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDPCYkrlGJgmVCqg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Yezidi" + } + ] + }, + { + "name": "Noto Traditional Nushu", + "fontFamily": "Noto Traditional Nushu, sans-serif", + "slug": "wp-font-lib-noto-traditional-nushu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXvy1tnPa7QoqirI.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Traditional Nushu" + }, + { + "src": "http://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXus1tnPa7QoqirI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Traditional Nushu" + }, + { + "src": "http://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXue1tnPa7QoqirI.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Traditional Nushu" + }, + { + "src": "http://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXty0dnPa7QoqirI.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Traditional Nushu" + }, + { + "src": "http://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXtL0dnPa7QoqirI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Traditional Nushu" + } + ] + }, + { + "name": "Nova Cut", + "fontFamily": "Nova Cut, system-ui", + "slug": "wp-font-lib-nova-cut", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novacut/v24/KFOkCnSYu8mL-39LkWxPKTM1K9nz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Cut" + } + ] + }, + { + "name": "Nova Flat", + "fontFamily": "Nova Flat, system-ui", + "slug": "wp-font-lib-nova-flat", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novaflat/v24/QdVUSTc-JgqpytEbVebEuStkm20oJA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Flat" + } + ] + }, + { + "name": "Nova Mono", + "fontFamily": "Nova Mono, monospace", + "slug": "wp-font-lib-nova-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novamono/v18/Cn-0JtiGWQ5Ajb--MRKfYGxYrdM9Sg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Mono" + } + ] + }, + { + "name": "Nova Oval", + "fontFamily": "Nova Oval, system-ui", + "slug": "wp-font-lib-nova-oval", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novaoval/v24/jAnEgHdmANHvPenMaswCMY-h3cWkWg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Oval" + } + ] + }, + { + "name": "Nova Round", + "fontFamily": "Nova Round, system-ui", + "slug": "wp-font-lib-nova-round", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novaround/v21/flU9Rqquw5UhEnlwTJYTYYfeeetYEBc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Round" + } + ] + }, + { + "name": "Nova Script", + "fontFamily": "Nova Script, system-ui", + "slug": "wp-font-lib-nova-script", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novascript/v25/7Au7p_IpkSWSTWaFWkumvmQNEl0O0kEx.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Script" + } + ] + }, + { + "name": "Nova Slim", + "fontFamily": "Nova Slim, system-ui", + "slug": "wp-font-lib-nova-slim", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novaslim/v24/Z9XUDmZNQAuem8jyZcn-yMOInrib9Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Slim" + } + ] + }, + { + "name": "Nova Square", + "fontFamily": "Nova Square, system-ui", + "slug": "wp-font-lib-nova-square", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novasquare/v20/RrQUbo9-9DV7b06QHgSWsZhARYMgGtWA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Square" + } + ] + }, + { + "name": "Numans", + "fontFamily": "Numans, sans-serif", + "slug": "wp-font-lib-numans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/numans/v15/SlGRmQmGupYAfH8IYRggiHVqaQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Numans" + } + ] + }, + { + "name": "Nunito", + "fontFamily": "Nunito, sans-serif", + "slug": "wp-font-lib-nunito", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshRTM9jo7eTWk.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDOUhRTM9jo7eTWk.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshRTM9jo7eTWk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhRTM9jo7eTWk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmRTM9jo7eTWk.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmRTM9jo7eTWk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmRTM9jo7eTWk.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImRTM9jo7eTWk.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXA3iqzbXWnoeg.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNi83A3iqzbXWnoeg.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNirXA3iqzbXWnoeg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNin3A3iqzbXWnoeg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNic3c3iqzbXWnoeg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiSnc3iqzbXWnoeg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXc3iqzbXWnoeg.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiBHc3iqzbXWnoeg.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Nunito" + } + ] + }, + { + "name": "Nunito Sans", + "fontFamily": "Nunito Sans, sans-serif", + "slug": "wp-font-lib-nunito-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GVilntF8kA_Ykqw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GiClntF8kA_Ykqw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G1ilntF8kA_Ykqw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G5ClntF8kA_Ykqw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GCC5ntF8kA_Ykqw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GMS5ntF8kA_Ykqw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GVi5ntF8kA_Ykqw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4Gfy5ntF8kA_Ykqw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmoP91UgIfM0qxVd.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmrR91UgIfM0qxVd.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmqP91UgIfM0qxVd.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmq991UgIfM0qxVd.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmpR8FUgIfM0qxVd.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmpo8FUgIfM0qxVd.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmoP8FUgIfM0qxVd.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmom8FUgIfM0qxVd.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + } + ] + }, + { + "name": "Nuosu SIL", + "fontFamily": "Nuosu SIL, serif", + "slug": "wp-font-lib-nuosu-sil", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nuosusil/v6/8vIK7wM3wmRn_kc4uAjeFGxbO_zo-w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nuosu SIL" + } + ] + }, + { + "name": "Odibee Sans", + "fontFamily": "Odibee Sans, system-ui", + "slug": "wp-font-lib-odibee-sans", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/odibeesans/v14/neIPzCSooYAho6WvjeToRYkyepH9qGsf.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Odibee Sans" + } + ] + }, + { + "name": "Odor Mean Chey", + "fontFamily": "Odor Mean Chey, serif", + "slug": "wp-font-lib-odor-mean-chey", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/odormeanchey/v27/raxkHiKDttkTe1aOGcJMR1A_4mrY2zqUKafv.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Odor Mean Chey" + } + ] + }, + { + "name": "Offside", + "fontFamily": "Offside, system-ui", + "slug": "wp-font-lib-offside", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/offside/v22/HI_KiYMWKa9QrAykQ5HiRp-dhpQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Offside" + } + ] + }, + { + "name": "Oi", + "fontFamily": "Oi, system-ui", + "slug": "wp-font-lib-oi", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oi/v16/w8gXH2EuRqtaut6yjBOG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oi" + } + ] + }, + { + "name": "Old Standard TT", + "fontFamily": "Old Standard TT, serif", + "slug": "wp-font-lib-old-standard-tt", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQubh3o1vLImiwAVvYawgcf2eVurVC5RHdCZg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Old Standard TT" + }, + { + "src": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQsbh3o1vLImiwAVvYawgcf2eVer1q9ZnJSZtQG.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Old Standard TT" + }, + { + "src": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQrbh3o1vLImiwAVvYawgcf2eVWEX-dTFxeb80flQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Old Standard TT" + } + ] + }, + { + "name": "Oldenburg", + "fontFamily": "Oldenburg, system-ui", + "slug": "wp-font-lib-oldenburg", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oldenburg/v20/fC1jPY5JYWzbywv7c4V6UU6oXyndrw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oldenburg" + } + ] + }, + { + "name": "Ole", + "fontFamily": "Ole, cursive", + "slug": "wp-font-lib-ole", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ole/v3/dFazZf6Z-rd89fw69qJ_ew.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ole" + } + ] + }, + { + "name": "Oleo Script", + "fontFamily": "Oleo Script, system-ui", + "slug": "wp-font-lib-oleo-script", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oleoscript/v14/rax5HieDvtMOe0iICsUccBhasU7Q8Cad.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oleo Script" + }, + { + "src": "http://fonts.gstatic.com/s/oleoscript/v14/raxkHieDvtMOe0iICsUccCDmnmrY2zqUKafv.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Oleo Script" + } + ] + }, + { + "name": "Oleo Script Swash Caps", + "fontFamily": "Oleo Script Swash Caps, system-ui", + "slug": "wp-font-lib-oleo-script-swash-caps", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMXquSY0Hg90.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oleo Script Swash Caps" + }, + { + "src": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noag6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HCcaBbYUsn9T5dt0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Oleo Script Swash Caps" + } + ] + }, + { + "name": "Oooh Baby", + "fontFamily": "Oooh Baby, cursive", + "slug": "wp-font-lib-oooh-baby", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ooohbaby/v4/2sDcZGJWgJTT2Jf76xQDb2-4C7wFZQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oooh Baby" + } + ] + }, + { + "name": "Open Sans", + "fontFamily": "Open Sans, sans-serif", + "slug": "wp-font-lib-open-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4nY1M2xLER.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4nY1M2xLER.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4nY1M2xLER.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4nY1M2xLER.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4nY1M2xLER.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1y4nY1M2xLER.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkaVcUwaERZjA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkaVcUwaERZjA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk_RkaVcUwaERZjA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjaVcUwaERZjA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjaVcUwaERZjA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjaVcUwaERZjA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Open Sans" + } + ] + }, + { + "name": "Oranienbaum", + "fontFamily": "Oranienbaum, serif", + "slug": "wp-font-lib-oranienbaum", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oranienbaum/v15/OZpHg_txtzZKMuXLIVrx-3zn7kz3dpHc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oranienbaum" + } + ] + }, + { + "name": "Orbitron", + "fontFamily": "Orbitron, sans-serif", + "slug": "wp-font-lib-orbitron", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6xpmIyXjU1pg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Orbitron" + }, + { + "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyKS6xpmIyXjU1pg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Orbitron" + }, + { + "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyxSmxpmIyXjU1pg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Orbitron" + }, + { + "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1ny_CmxpmIyXjU1pg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Orbitron" + }, + { + "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nymymxpmIyXjU1pg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Orbitron" + }, + { + "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nysimxpmIyXjU1pg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Orbitron" + } + ] + }, + { + "name": "Oregano", + "fontFamily": "Oregano, system-ui", + "slug": "wp-font-lib-oregano", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oregano/v13/If2IXTPxciS3H4S2kZffPznO3yM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oregano" + }, + { + "src": "http://fonts.gstatic.com/s/oregano/v13/If2KXTPxciS3H4S2oZXVOxvLzyP_qw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Oregano" + } + ] + }, + { + "name": "Orelega One", + "fontFamily": "Orelega One, system-ui", + "slug": "wp-font-lib-orelega-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/orelegaone/v10/3qTpojOggD2XtAdFb-QXZGt61EcYaQ7F.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Orelega One" + } + ] + }, + { + "name": "Orienta", + "fontFamily": "Orienta, sans-serif", + "slug": "wp-font-lib-orienta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/orienta/v15/PlI9FlK4Jrl5Y9zNeyeo9HRFhcU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Orienta" + } + ] + }, + { + "name": "Original Surfer", + "fontFamily": "Original Surfer, system-ui", + "slug": "wp-font-lib-original-surfer", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/originalsurfer/v18/RWmQoKGZ9vIirYntXJ3_MbekzNMiDEtvAlaMKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Original Surfer" + } + ] + }, + { + "name": "Oswald", + "fontFamily": "Oswald, sans-serif", + "slug": "wp-font-lib-oswald", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgUFoZAaRliE.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Oswald" + }, + { + "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUFoZAaRliE.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Oswald" + }, + { + "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUFoZAaRliE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oswald" + }, + { + "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUFoZAaRliE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Oswald" + }, + { + "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUFoZAaRliE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Oswald" + }, + { + "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUFoZAaRliE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Oswald" + } + ] + }, + { + "name": "Outfit", + "fontFamily": "Outfit, sans-serif", + "slug": "wp-font-lib-outfit", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC0C4G-EiAou6Y.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bC1C4G-EiAou6Y.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61C4G-EiAou6Y.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4G-EiAou6Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4G-EiAou6Y.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4G-EiAou6Y.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4G-EiAou6Y.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bCyC4G-EiAou6Y.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4ZmyC4G-EiAou6Y.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Outfit" + } + ] + }, + { + "name": "Over the Rainbow", + "fontFamily": "Over the Rainbow, cursive", + "slug": "wp-font-lib-over-the-rainbow", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/overtherainbow/v16/11haGoXG1k_HKhMLUWz7Mc7vvW5upvOm9NA2XG0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Over the Rainbow" + } + ] + }, + { + "name": "Overlock", + "fontFamily": "Overlock, system-ui", + "slug": "wp-font-lib-overlock", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XVDmdMWRiN1_T9Z4Te4u2El6GC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Overlock" + }, + { + "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XTDmdMWRiN1_T9Z7Tc6OmmkrGC7Cs.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Overlock" + }, + { + "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XSDmdMWRiN1_T9Z7xizcmMvL2L9TLT.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Overlock" + }, + { + "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XQDmdMWRiN1_T9Z7Tc0FWJtrmp8CLTlNs.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Overlock" + }, + { + "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XSDmdMWRiN1_T9Z7xaz8mMvL2L9TLT.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Overlock" + }, + { + "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XQDmdMWRiN1_T9Z7Tc0G2Ltrmp8CLTlNs.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Overlock" + } + ] + }, + { + "name": "Overlock SC", + "fontFamily": "Overlock SC, system-ui", + "slug": "wp-font-lib-overlock-sc", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/overlocksc/v21/1cX3aUHKGZrstGAY8nwVzHGAq8Sk1PoH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Overlock SC" + } + ] + }, + { + "name": "Overpass", + "fontFamily": "Overpass, sans-serif", + "slug": "wp-font-lib-overpass", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PLrOZCLtce-og.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPPrOZCLtce-og.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6ovPrOZCLtce-og.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PPrOZCLtce-og.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6zvPrOZCLtce-og.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6IvTrOZCLtce-og.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6G_TrOZCLtce-og.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPTrOZCLtce-og.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6VfTrOZCLtce-og.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADe5qPl8Kuosgz.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDepqPl8Kuosgz.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLBdepqPl8Kuosgz.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADepqPl8Kuosgz.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLAxepqPl8Kuosgz.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDdfZqPl8Kuosgz.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDkfZqPl8Kuosgz.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDfZqPl8Kuosgz.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCqfZqPl8Kuosgz.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Overpass" + } + ] + }, + { + "name": "Overpass Mono", + "fontFamily": "Overpass Mono, monospace", + "slug": "wp-font-lib-overpass-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EWKokzzXur-SmIr.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Overpass Mono" + }, + { + "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXUokzzXur-SmIr.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Overpass Mono" + }, + { + "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXmokzzXur-SmIr.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Overpass Mono" + }, + { + "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUKpUzzXur-SmIr.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Overpass Mono" + }, + { + "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUzpUzzXur-SmIr.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Overpass Mono" + } + ] + }, + { + "name": "Ovo", + "fontFamily": "Ovo, serif", + "slug": "wp-font-lib-ovo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ovo/v17/yYLl0h7Wyfzjy4Q5_3WVxA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ovo" + } + ] + }, + { + "name": "Oxanium", + "fontFamily": "Oxanium, system-ui", + "slug": "wp-font-lib-oxanium", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JfniMBXQ7d67x.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Oxanium" + }, + { + "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G80XfniMBXQ7d67x.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Oxanium" + }, + { + "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G81JfniMBXQ7d67x.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oxanium" + }, + { + "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G817fniMBXQ7d67x.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Oxanium" + }, + { + "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82XeXiMBXQ7d67x.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Oxanium" + }, + { + "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82ueXiMBXQ7d67x.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Oxanium" + }, + { + "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JeXiMBXQ7d67x.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Oxanium" + } + ] + }, + { + "name": "Oxygen", + "fontFamily": "Oxygen, sans-serif", + "slug": "wp-font-lib-oxygen", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCJW8Db2-4C7wFZQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Oxygen" + }, + { + "src": "http://fonts.gstatic.com/s/oxygen/v15/2sDfZG1Wl4Lcnbu6iUcnZ0SkAg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oxygen" + }, + { + "src": "http://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCNWgDb2-4C7wFZQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Oxygen" + } + ] + }, + { + "name": "Oxygen Mono", + "fontFamily": "Oxygen Mono, monospace", + "slug": "wp-font-lib-oxygen-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oxygenmono/v14/h0GsssGg9FxgDgCjLeAd7ijfze-PPlUu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oxygen Mono" + } + ] + }, + { + "name": "PT Mono", + "fontFamily": "PT Mono, monospace", + "slug": "wp-font-lib-pt-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ptmono/v13/9oRONYoBnWILk-9ArCg5MtPyAcg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "PT Mono" + } + ] + }, + { + "name": "PT Sans", + "fontFamily": "PT Sans, sans-serif", + "slug": "wp-font-lib-pt-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79P0WOxOGMMDQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "PT Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ptsans/v17/jizYRExUiTo99u79D0eEwMOJIDQA-g.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "PT Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh4OmnLD0Z4zM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "PT Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ptsans/v17/jizdRExUiTo99u79D0e8fOytKB8c8zMrig.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "PT Sans" + } + ] + }, + { + "name": "PT Sans Caption", + "fontFamily": "PT Sans Caption, sans-serif", + "slug": "wp-font-lib-pt-sans-caption", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ptsanscaption/v19/0FlMVP6Hrxmt7-fsUFhlFXNIlpcqfQXwQy6yxg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "PT Sans Caption" + }, + { + "src": "http://fonts.gstatic.com/s/ptsanscaption/v19/0FlJVP6Hrxmt7-fsUFhlFXNIlpcSwSrUSwWuz38Tgg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "PT Sans Caption" + } + ] + }, + { + "name": "PT Sans Narrow", + "fontFamily": "PT Sans Narrow, sans-serif", + "slug": "wp-font-lib-pt-sans-narrow", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ptsansnarrow/v18/BngRUXNadjH0qYEzV7ab-oWlsYCByxyKeuDp.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "PT Sans Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/ptsansnarrow/v18/BngSUXNadjH0qYEzV7ab-oWlsbg95DiCUfzgRd-3.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "PT Sans Narrow" + } + ] + }, + { + "name": "PT Serif", + "fontFamily": "PT Serif, serif", + "slug": "wp-font-lib-pt-serif", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ptserif/v18/EJRVQgYoZZY2vCFuvDFRxL6ddjb-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "PT Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ptserif/v18/EJRTQgYoZZY2vCFuvAFTzrq_cyb-vco.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "PT Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ptserif/v18/EJRSQgYoZZY2vCFuvAnt65qVXSr3pNNB.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "PT Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ptserif/v18/EJRQQgYoZZY2vCFuvAFT9gaQVy7VocNB6Iw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "PT Serif" + } + ] + }, + { + "name": "PT Serif Caption", + "fontFamily": "PT Serif Caption, serif", + "slug": "wp-font-lib-pt-serif-caption", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ptserifcaption/v17/ieVl2ZhbGCW-JoW6S34pSDpqYKU059WxDCs5cvI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "PT Serif Caption" + }, + { + "src": "http://fonts.gstatic.com/s/ptserifcaption/v17/ieVj2ZhbGCW-JoW6S34pSDpqYKU019e7CAk8YvJEeg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "PT Serif Caption" + } + ] + }, + { + "name": "Pacifico", + "fontFamily": "Pacifico, cursive", + "slug": "wp-font-lib-pacifico", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pacifico/v22/FwZY7-Qmy14u9lezJ96A4sijpFu_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pacifico" + } + ] + }, + { + "name": "Padauk", + "fontFamily": "Padauk, sans-serif", + "slug": "wp-font-lib-padauk", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/padauk/v16/RrQRboJg-id7OnbBa0_g3LlYbg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Padauk" + }, + { + "src": "http://fonts.gstatic.com/s/padauk/v16/RrQSboJg-id7Onb512DE1JJEZ4YwGg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Padauk" + } + ] + }, + { + "name": "Padyakke Expanded One", + "fontFamily": "Padyakke Expanded One, system-ui", + "slug": "wp-font-lib-padyakke-expanded-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/padyakkeexpandedone/v2/K2FvfY9El_tbR0JfHb6WWvrBaU6XAUvC4IAYOKRkpDjeoQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Padyakke Expanded One" + } + ] + }, + { + "name": "Palanquin", + "fontFamily": "Palanquin, sans-serif", + "slug": "wp-font-lib-palanquin", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUhlJ90n1fBFg7ceXwUEltI7rWmZzTH.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Palanquin" + }, + { + "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUvnpoxJuqbi3ezg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Palanquin" + }, + { + "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwU2nloxJuqbi3ezg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Palanquin" + }, + { + "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Palanquin" + }, + { + "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUgnhoxJuqbi3ezg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Palanquin" + }, + { + "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUrn9oxJuqbi3ezg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Palanquin" + }, + { + "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUyn5oxJuqbi3ezg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Palanquin" + } + ] + }, + { + "name": "Palanquin Dark", + "fontFamily": "Palanquin Dark, sans-serif", + "slug": "wp-font-lib-palanquin-dark", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/palanquindark/v12/xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Palanquin Dark" + }, + { + "src": "http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41fcvN2KT4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Palanquin Dark" + }, + { + "src": "http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41fcvN2KT4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Palanquin Dark" + }, + { + "src": "http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8YyY241fcvN2KT4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Palanquin Dark" + } + ] + }, + { + "name": "Palette Mosaic", + "fontFamily": "Palette Mosaic, system-ui", + "slug": "wp-font-lib-palette-mosaic", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/palettemosaic/v10/AMOIz4aBvWuBFe3TohdW6YZ9MFiy4dxL4jSr.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Palette Mosaic" + } + ] + }, + { + "name": "Pangolin", + "fontFamily": "Pangolin, cursive", + "slug": "wp-font-lib-pangolin", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pangolin/v11/cY9GfjGcW0FPpi-tWPfK5d3aiLBG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pangolin" + } + ] + }, + { + "name": "Paprika", + "fontFamily": "Paprika, system-ui", + "slug": "wp-font-lib-paprika", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/paprika/v21/8QIJdijZitv49rDfuIgOq7jkAOw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Paprika" + } + ] + }, + { + "name": "Parisienne", + "fontFamily": "Parisienne, cursive", + "slug": "wp-font-lib-parisienne", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/parisienne/v13/E21i_d3kivvAkxhLEVZpcy96DuKuavM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Parisienne" + } + ] + }, + { + "name": "Passero One", + "fontFamily": "Passero One, system-ui", + "slug": "wp-font-lib-passero-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/passeroone/v24/JTUTjIko8DOq5FeaeEAjgE5B5Arr-s50.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Passero One" + } + ] + }, + { + "name": "Passion One", + "fontFamily": "Passion One, system-ui", + "slug": "wp-font-lib-passion-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/passionone/v16/PbynFmL8HhTPqbjUzux3JHuW_Frg6YoV.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Passion One" + }, + { + "src": "http://fonts.gstatic.com/s/passionone/v16/Pby6FmL8HhTPqbjUzux3JEMq037owpYcuH8y.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Passion One" + }, + { + "src": "http://fonts.gstatic.com/s/passionone/v16/Pby6FmL8HhTPqbjUzux3JEMS0X7owpYcuH8y.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Passion One" + } + ] + }, + { + "name": "Passions Conflict", + "fontFamily": "Passions Conflict, cursive", + "slug": "wp-font-lib-passions-conflict", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/passionsconflict/v5/kmKnZrcrFhfafnWX9x0GuEC-zowow5NeYRI4CN2V.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Passions Conflict" + } + ] + }, + { + "name": "Pathway Extreme", + "fontFamily": "Pathway Extreme, sans-serif", + "slug": "wp-font-lib-pathway-extreme", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2Nx1Kyw3igP5eg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakWN11Kyw3igP5eg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakht11Kyw3igP5eg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2N11Kyw3igP5eg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak6t11Kyw3igP5eg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakBtp1Kyw3igP5eg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakP9p1Kyw3igP5eg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakWNp1Kyw3igP5eg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakcdp1Kyw3igP5eg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6daSYzqAbpepnF.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ4daCYzqAbpepnF.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ7DaCYzqAbpepnF.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6daCYzqAbpepnF.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6vaCYzqAbpepnF.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ5DbyYzqAbpepnF.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ56byYzqAbpepnF.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ4dbyYzqAbpepnF.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ40byYzqAbpepnF.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + } + ] + }, + { + "name": "Pathway Gothic One", + "fontFamily": "Pathway Gothic One, sans-serif", + "slug": "wp-font-lib-pathway-gothic-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pathwaygothicone/v15/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dTFxeb80flQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pathway Gothic One" + } + ] + }, + { + "name": "Patrick Hand", + "fontFamily": "Patrick Hand, cursive", + "slug": "wp-font-lib-patrick-hand", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/patrickhand/v20/LDI1apSQOAYtSuYWp8ZhfYeMWcjKm7sp8g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Patrick Hand" + } + ] + }, + { + "name": "Patrick Hand SC", + "fontFamily": "Patrick Hand SC, cursive", + "slug": "wp-font-lib-patrick-hand-sc", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/patrickhandsc/v13/0nkwC9f7MfsBiWcLtY65AWDK873ViSi6JQc7Vg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Patrick Hand SC" + } + ] + }, + { + "name": "Pattaya", + "fontFamily": "Pattaya, sans-serif", + "slug": "wp-font-lib-pattaya", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pattaya/v13/ea8ZadcqV_zkHY-XNdCn92ZEmVs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pattaya" + } + ] + }, + { + "name": "Patua One", + "fontFamily": "Patua One, system-ui", + "slug": "wp-font-lib-patua-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/patuaone/v16/ZXuke1cDvLCKLDcimxBI5PNvNA9LuA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Patua One" + } + ] + }, + { + "name": "Pavanam", + "fontFamily": "Pavanam, sans-serif", + "slug": "wp-font-lib-pavanam", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pavanam/v11/BXRrvF_aiezLh0xPDOtQ9Wf0QcE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pavanam" + } + ] + }, + { + "name": "Paytone One", + "fontFamily": "Paytone One, sans-serif", + "slug": "wp-font-lib-paytone-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/paytoneone/v21/0nksC9P7MfYHj2oFtYm2CiTqivr9iBq_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Paytone One" + } + ] + }, + { + "name": "Peddana", + "fontFamily": "Peddana, serif", + "slug": "wp-font-lib-peddana", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/peddana/v20/aFTU7PBhaX89UcKWhh2aBYyMcKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Peddana" + } + ] + }, + { + "name": "Peralta", + "fontFamily": "Peralta, system-ui", + "slug": "wp-font-lib-peralta", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/peralta/v17/hYkJPu0-RP_9d3kRGxAhrv956B8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Peralta" + } + ] + }, + { + "name": "Permanent Marker", + "fontFamily": "Permanent Marker, cursive", + "slug": "wp-font-lib-permanent-marker", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/permanentmarker/v16/Fh4uPib9Iyv2ucM6pGQMWimMp004HaqIfrT5nlk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Permanent Marker" + } + ] + }, + { + "name": "Petemoss", + "fontFamily": "Petemoss, cursive", + "slug": "wp-font-lib-petemoss", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/petemoss/v5/A2BZn5tA2xgtGWHZgxkesKb9UouQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Petemoss" + } + ] + }, + { + "name": "Petit Formal Script", + "fontFamily": "Petit Formal Script, cursive", + "slug": "wp-font-lib-petit-formal-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/petitformalscript/v14/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHnqP4gZSiE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Petit Formal Script" + } + ] + }, + { + "name": "Petrona", + "fontFamily": "Petrona, serif", + "slug": "wp-font-lib-petrona", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsARBH452Mvds.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NsQRBH452Mvds.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk7TsQRBH452Mvds.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsQRBH452Mvds.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6_sQRBH452Mvds.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5TtgRBH452Mvds.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5qtgRBH452Mvds.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NtgRBH452Mvds.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4ktgRBH452Mvds.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwDFYpUN-dsIWs.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwCFYpUN-dsIWs.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8rICFYpUN-dsIWs.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwCFYpUN-dsIWs.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8t4CFYpUN-dsIWs.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8jIFFYpUN-dsIWs.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8gsFFYpUN-dsIWs.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwFFYpUN-dsIWs.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8kUFFYpUN-dsIWs.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Petrona" + } + ] + }, + { + "name": "Philosopher", + "fontFamily": "Philosopher, sans-serif", + "slug": "wp-font-lib-philosopher", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/philosopher/v19/vEFV2_5QCwIS4_Dhez5jcVBpRUwU08qe.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Philosopher" + }, + { + "src": "http://fonts.gstatic.com/s/philosopher/v19/vEFX2_5QCwIS4_Dhez5jcWBrT0g21tqeR7c.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Philosopher" + }, + { + "src": "http://fonts.gstatic.com/s/philosopher/v19/vEFI2_5QCwIS4_Dhez5jcWjVamgc-NaXXq7H.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Philosopher" + }, + { + "src": "http://fonts.gstatic.com/s/philosopher/v19/vEFK2_5QCwIS4_Dhez5jcWBrd_QZ8tK1W77HtMo.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Philosopher" + } + ] + }, + { + "name": "Phudu", + "fontFamily": "Phudu, system-ui", + "slug": "wp-font-lib-phudu", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkK62zUSwWuz38Tgg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Phudu" + }, + { + "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKtWzUSwWuz38Tgg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Phudu" + }, + { + "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKh2zUSwWuz38Tgg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Phudu" + }, + { + "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKa2vUSwWuz38Tgg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Phudu" + }, + { + "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKUmvUSwWuz38Tgg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Phudu" + }, + { + "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKNWvUSwWuz38Tgg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Phudu" + }, + { + "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKHGvUSwWuz38Tgg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Phudu" + } + ] + }, + { + "name": "Piazzolla", + "fontFamily": "Piazzolla, serif", + "slug": "wp-font-lib-piazzolla", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYx3Ly1AHfAAy5.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYxnLy1AHfAAy5.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7KGxnLy1AHfAAy5.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYxnLy1AHfAAy5.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LqxnLy1AHfAAy5.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7IGwXLy1AHfAAy5.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7I_wXLy1AHfAAy5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYwXLy1AHfAAy5.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JxwXLy1AHfAAy5.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqw3gX9BRy5m5M.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRqx3gX9BRy5m5M.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhcSx3gX9BRy5m5M.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhaix3gX9BRy5m5M.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhUS23gX9BRy5m5M.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhX223gX9BRy5m5M.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRq23gX9BRy5m5M.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhTO23gX9BRy5m5M.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + } + ] + }, + { + "name": "Piedra", + "fontFamily": "Piedra, system-ui", + "slug": "wp-font-lib-piedra", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/piedra/v22/ke8kOg8aN0Bn7hTunEyHN_M3gA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Piedra" + } + ] + }, + { + "name": "Pinyon Script", + "fontFamily": "Pinyon Script, cursive", + "slug": "wp-font-lib-pinyon-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pinyonscript/v18/6xKpdSJbL9-e9LuoeQiDRQR8aOLQO4bhiDY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pinyon Script" + } + ] + }, + { + "name": "Pirata One", + "fontFamily": "Pirata One, system-ui", + "slug": "wp-font-lib-pirata-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pirataone/v22/I_urMpiDvgLdLh0fAtoftiiEr5_BdZ8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pirata One" + } + ] + }, + { + "name": "Plaster", + "fontFamily": "Plaster, system-ui", + "slug": "wp-font-lib-plaster", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/plaster/v24/DdTm79QatW80eRh4Ei5JOtLOeLI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Plaster" + } + ] + }, + { + "name": "Play", + "fontFamily": "Play, sans-serif", + "slug": "wp-font-lib-play", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/play/v17/6aez4K2oVqwIjtI8Hp8Tx3A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Play" + }, + { + "src": "http://fonts.gstatic.com/s/play/v17/6ae84K2oVqwItm4TOpc423nTJTM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Play" + } + ] + }, + { + "name": "Playball", + "fontFamily": "Playball, system-ui", + "slug": "wp-font-lib-playball", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/playball/v17/TK3gWksYAxQ7jbsKcj8Dl-tPKo2t.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Playball" + } + ] + }, + { + "name": "Playfair", + "fontFamily": "Playfair, serif", + "slug": "wp-font-lib-playfair", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-bUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPlKetgdoSMw5ifm.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-bUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPkUetgdoSMw5ifm.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-bUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPkmetgdoSMw5ifm.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-bUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPnKfdgdoSMw5ifm.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-bUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPnzfdgdoSMw5ifm.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-bUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPmUfdgdoSMw5ifm.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-bUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPm9fdgdoSMw5ifm.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZjFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOW5eqycS4zfmNrE.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZjFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOTBeqycS4zfmNrE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZjFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOQJeqycS4zfmNrE.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZjFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOe5ZqycS4zfmNrE.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZjFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOddZqycS4zfmNrE.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZjFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcObBZqycS4zfmNrE.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZjFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOZlZqycS4zfmNrE.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Playfair" + } + ] + }, + { + "name": "Playfair Display", + "fontFamily": "Playfair Display, serif", + "slug": "wp-font-lib-playfair-display", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvUDQZNLo_U2r.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKd3vUDQZNLo_U2r.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKebukDQZNLo_U2r.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiukDQZNLo_U2r.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfFukDQZNLo_U2r.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfsukDQZNLo_U2r.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_qiTbtbK-F2rA0s.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_pqTbtbK-F2rA0s.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_naUbtbK-F2rA0s.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_k-UbtbK-F2rA0s.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_iiUbtbK-F2rA0s.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_gGUbtbK-F2rA0s.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Playfair Display" + } + ] + }, + { + "name": "Playfair Display SC", + "fontFamily": "Playfair Display SC, serif", + "slug": "wp-font-lib-playfair-display-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pb4GEcM2M4s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Playfair Display SC" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke87OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbwMFeEzI4sNKg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Playfair Display SC" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nQIpNcsdL4IUMyE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Playfair Display SC" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0qc4XK6ARIyH5IA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Playfair Display SC" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nTorNcsdL4IUMyE.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Playfair Display SC" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0kcwXK6ARIyH5IA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Playfair Display SC" + } + ] + }, + { + "name": "Plus Jakarta Sans", + "fontFamily": "Plus Jakarta Sans, sans-serif", + "slug": "wp-font-lib-plus-jakarta-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KU7NShXUEKi4Rw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_907NShXUEKi4Rw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NShXUEKi4Rw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NShXUEKi4Rw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNShXUEKi4Rw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNShXUEKi4Rw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNShXUEKi4Rw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lCR_QMq2oR82k.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ17CR_QMq2oR82k.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0lCR_QMq2oR82k.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0XCR_QMq2oR82k.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ37Dh_QMq2oR82k.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ3CDh_QMq2oR82k.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lDh_QMq2oR82k.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Plus Jakarta Sans" + } + ] + }, + { + "name": "Podkova", + "fontFamily": "Podkova, serif", + "slug": "wp-font-lib-podkova", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWtFzcU4EoporSHH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Podkova" + }, + { + "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWt3zcU4EoporSHH.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Podkova" + }, + { + "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWubysU4EoporSHH.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Podkova" + }, + { + "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWuiysU4EoporSHH.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Podkova" + }, + { + "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWvFysU4EoporSHH.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Podkova" + } + ] + }, + { + "name": "Poiret One", + "fontFamily": "Poiret One, system-ui", + "slug": "wp-font-lib-poiret-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/poiretone/v14/UqyVK80NJXN4zfRgbdfbk5lWVscxdKE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Poiret One" + } + ] + }, + { + "name": "Poller One", + "fontFamily": "Poller One, system-ui", + "slug": "wp-font-lib-poller-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pollerone/v19/ahccv82n0TN3gia5E4Bud-lbgUS5u0s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Poller One" + } + ] + }, + { + "name": "Poltawski Nowy", + "fontFamily": "Poltawski Nowy, serif", + "slug": "wp-font-lib-poltawski-nowy", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KqCWnDS6V5CzCoQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Poltawski Nowy" + }, + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KmiWnDS6V5CzCoQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Poltawski Nowy" + }, + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KdiKnDS6V5CzCoQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Poltawski Nowy" + }, + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KTyKnDS6V5CzCoQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Poltawski Nowy" + }, + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGZPTiSRxinSoROp.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Poltawski Nowy" + }, + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGZ9TiSRxinSoROp.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Poltawski Nowy" + }, + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGaRSSSRxinSoROp.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Poltawski Nowy" + }, + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGaoSSSRxinSoROp.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Poltawski Nowy" + } + ] + }, + { + "name": "Poly", + "fontFamily": "Poly, serif", + "slug": "wp-font-lib-poly", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/poly/v16/MQpb-W6wKNitRLCAq2Lpris.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Poly" + }, + { + "src": "http://fonts.gstatic.com/s/poly/v16/MQpV-W6wKNitdLKKr0DsviuGWA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Poly" + } + ] + }, + { + "name": "Pompiere", + "fontFamily": "Pompiere, system-ui", + "slug": "wp-font-lib-pompiere", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pompiere/v15/VEMyRoxis5Dwuyeov6Wt5jDtreOL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pompiere" + } + ] + }, + { + "name": "Pontano Sans", + "fontFamily": "Pontano Sans, sans-serif", + "slug": "wp-font-lib-pontano-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOSzMncaMp9gzWsE.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Pontano Sans" + }, + { + "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOXLMncaMp9gzWsE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pontano Sans" + }, + { + "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOUDMncaMp9gzWsE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Pontano Sans" + }, + { + "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOazLncaMp9gzWsE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Pontano Sans" + }, + { + "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOZXLncaMp9gzWsE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Pontano Sans" + } + ] + }, + { + "name": "Poor Story", + "fontFamily": "Poor Story, system-ui", + "slug": "wp-font-lib-poor-story", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/poorstory/v20/jizfREFUsnUct9P6cDfd4OmnLD0Z4zM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Poor Story" + } + ] + }, + { + "name": "Poppins", + "fontFamily": "Poppins, sans-serif", + "slug": "wp-font-lib-poppins", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Poppins" + } + ] + }, + { + "name": "Port Lligat Sans", + "fontFamily": "Port Lligat Sans, sans-serif", + "slug": "wp-font-lib-port-lligat-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/portlligatsans/v18/kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7N0Tx4xEcQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Port Lligat Sans" + } + ] + }, + { + "name": "Port Lligat Slab", + "fontFamily": "Port Lligat Slab, serif", + "slug": "wp-font-lib-port-lligat-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/portlligatslab/v21/LDIpaoiQNgArA8kR7ulhZ8P_NYOss7ob9yGLmfI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Port Lligat Slab" + } + ] + }, + { + "name": "Potta One", + "fontFamily": "Potta One, system-ui", + "slug": "wp-font-lib-potta-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pottaone/v16/FeVSS05Bp6cy7xI-YfxQ3Z5nm29Gww.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Potta One" + } + ] + }, + { + "name": "Pragati Narrow", + "fontFamily": "Pragati Narrow, sans-serif", + "slug": "wp-font-lib-pragati-narrow", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pragatinarrow/v13/vm8vdRf0T0bS1ffgsPB7WZ-mD17_ytN3M48a.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pragati Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/pragatinarrow/v13/vm8sdRf0T0bS1ffgsPB7WZ-mD2ZD5fd_GJMTlo_4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Pragati Narrow" + } + ] + }, + { + "name": "Praise", + "fontFamily": "Praise, cursive", + "slug": "wp-font-lib-praise", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/praise/v5/qkBUXvUZ-cnFXcFyDvO67L9XmQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Praise" + } + ] + }, + { + "name": "Prata", + "fontFamily": "Prata, serif", + "slug": "wp-font-lib-prata", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/prata/v18/6xKhdSpbNNCT-vWIAG_5LWwJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Prata" + } + ] + }, + { + "name": "Preahvihear", + "fontFamily": "Preahvihear, sans-serif", + "slug": "wp-font-lib-preahvihear", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/preahvihear/v27/6NUS8F-dNQeEYhzj7uluxswE49FJf8Wv.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Preahvihear" + } + ] + }, + { + "name": "Press Start 2P", + "fontFamily": "Press Start 2P, system-ui", + "slug": "wp-font-lib-press-start-2p", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pressstart2p/v15/e3t4euO8T-267oIAQAu6jDQyK0nSgPJE4580.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Press Start 2P" + } + ] + }, + { + "name": "Pridi", + "fontFamily": "Pridi, serif", + "slug": "wp-font-lib-pridi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1SiE0jRUG0AqUc.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Pridi" + }, + { + "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc02i00jRUG0AqUc.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Pridi" + }, + { + "src": "http://fonts.gstatic.com/s/pridi/v11/2sDQZG5JnZLfkfWao2krbl29.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pridi" + }, + { + "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1uik0jRUG0AqUc.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Pridi" + }, + { + "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1CjU0jRUG0AqUc.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Pridi" + }, + { + "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc0mjE0jRUG0AqUc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Pridi" + } + ] + }, + { + "name": "Princess Sofia", + "fontFamily": "Princess Sofia, cursive", + "slug": "wp-font-lib-princess-sofia", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/princesssofia/v22/qWczB6yguIb8DZ_GXZst16n7GRz7mDUoupoI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Princess Sofia" + } + ] + }, + { + "name": "Prociono", + "fontFamily": "Prociono, serif", + "slug": "wp-font-lib-prociono", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/prociono/v22/r05YGLlR-KxAf9GGO8upyDYtStiJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Prociono" + } + ] + }, + { + "name": "Prompt", + "fontFamily": "Prompt, sans-serif", + "slug": "wp-font-lib-prompt", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2CA9oYREcjeo0k.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_7XJnvUD7dzB2KZeJ8TkMBf50kbiM.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cr_s4bmkvc5Q9dw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLQb2MrUZEtdzow.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cy_g4bmkvc5Q9dw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK0bGMrUZEtdzow.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W__XJnvUD7dzB26Z9AcZkIzeg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2KZdoYREcjeo0k.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Ck_k4bmkvc5Q9dw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLsbWMrUZEtdzow.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cv_44bmkvc5Q9dw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLAamMrUZEtdzow.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C2_84bmkvc5Q9dw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKka2MrUZEtdzow.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cx_w4bmkvc5Q9dw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK4aGMrUZEtdzow.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C4_04bmkvc5Q9dw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKcaWMrUZEtdzow.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Prompt" + } + ] + }, + { + "name": "Prosto One", + "fontFamily": "Prosto One, system-ui", + "slug": "wp-font-lib-prosto-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/prostoone/v17/OpNJno4VhNfK-RgpwWWxpipfWhXD00c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Prosto One" + } + ] + }, + { + "name": "Proza Libre", + "fontFamily": "Proza Libre, sans-serif", + "slug": "wp-font-lib-proza-libre", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjGdGHgj0k1DIQRyUEyyHovftvXWYyz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjEdGHgj0k1DIQRyUEyyEotdN_1XJyz7zc.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyELbV__fcpC69i6N.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTCvceJSY8z6Np1k.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEL3UP_fcpC69i6N.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTAfbeJSY8z6Np1k.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKTUf_fcpC69i6N.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTGPaeJSY8z6Np1k.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKPUv_fcpC69i6N.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTH_ZeJSY8z6Np1k.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Proza Libre" + } + ] + }, + { + "name": "Public Sans", + "fontFamily": "Public Sans, sans-serif", + "slug": "wp-font-lib-public-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpi5ww0pX189fg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulpm5ww0pX189fg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuSJm5ww0pX189fg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpm5ww0pX189fg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuJJm5ww0pX189fg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuyJ65ww0pX189fg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65ww0pX189fg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulp65ww0pX189fg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuv565ww0pX189fg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgQctfVotfj7j.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRgActfVotfj7j.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673toPgActfVotfj7j.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgActfVotfj7j.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpjgActfVotfj7j.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tqPhwctfVotfj7j.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tq2hwctfVotfj7j.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRhwctfVotfj7j.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tr4hwctfVotfj7j.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Public Sans" + } + ] + }, + { + "name": "Puppies Play", + "fontFamily": "Puppies Play, cursive", + "slug": "wp-font-lib-puppies-play", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/puppiesplay/v6/wlp2gwHZEV99rG6M3NR9uB9vaAJSA_JN3Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Puppies Play" + } + ] + }, + { + "name": "Puritan", + "fontFamily": "Puritan, sans-serif", + "slug": "wp-font-lib-puritan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/puritan/v24/845YNMgkAJ2VTtIo9JrwRdaI50M.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Puritan" + }, + { + "src": "http://fonts.gstatic.com/s/puritan/v24/845aNMgkAJ2VTtIoxJj6QfSN90PfXA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Puritan" + }, + { + "src": "http://fonts.gstatic.com/s/puritan/v24/845dNMgkAJ2VTtIozCbfYd6j-0rGRes.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Puritan" + }, + { + "src": "http://fonts.gstatic.com/s/puritan/v24/845fNMgkAJ2VTtIoxJjC_dup_2jDVevnLQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Puritan" + } + ] + }, + { + "name": "Purple Purse", + "fontFamily": "Purple Purse, system-ui", + "slug": "wp-font-lib-purple-purse", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/purplepurse/v21/qWctB66gv53iAp-Vfs4My6qyeBb_ujA4ug.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Purple Purse" + } + ] + }, + { + "name": "Qahiri", + "fontFamily": "Qahiri, sans-serif", + "slug": "wp-font-lib-qahiri", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/qahiri/v9/tsssAp1RZy0C_hGuU3Chrnmupw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Qahiri" + } + ] + }, + { + "name": "Quando", + "fontFamily": "Quando, serif", + "slug": "wp-font-lib-quando", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/quando/v14/xMQVuFNaVa6YuW0pC6WzKX_QmA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Quando" + } + ] + }, + { + "name": "Quantico", + "fontFamily": "Quantico, sans-serif", + "slug": "wp-font-lib-quantico", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/quantico/v15/rax-HiSdp9cPL3KIF4xsLjxSmlLZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Quantico" + }, + { + "src": "http://fonts.gstatic.com/s/quantico/v15/rax4HiSdp9cPL3KIF7xuJDhwn0LZ6T8.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Quantico" + }, + { + "src": "http://fonts.gstatic.com/s/quantico/v15/rax5HiSdp9cPL3KIF7TQARhasU7Q8Cad.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Quantico" + }, + { + "src": "http://fonts.gstatic.com/s/quantico/v15/rax7HiSdp9cPL3KIF7xuHIRfu0ry9TadML4.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Quantico" + } + ] + }, + { + "name": "Quattrocento", + "fontFamily": "Quattrocento, serif", + "slug": "wp-font-lib-quattrocento", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/quattrocento/v18/OZpEg_xvsDZQL_LKIF7q4jPHxGL7f4jFuA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Quattrocento" + }, + { + "src": "http://fonts.gstatic.com/s/quattrocento/v18/OZpbg_xvsDZQL_LKIF7q4jP_eE3fd6PZsXcM9w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Quattrocento" + } + ] + }, + { + "name": "Quattrocento Sans", + "fontFamily": "Quattrocento Sans, sans-serif", + "slug": "wp-font-lib-quattrocento-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9c4lja2NVIDdIAAoMR5MfuElaRB3zOvU7eHGHJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Quattrocento Sans" + }, + { + "src": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0r8GXHJkLI.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Quattrocento Sans" + }, + { + "src": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrWN33AiasJ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Quattrocento Sans" + }, + { + "src": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXnijLsJV7E.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Quattrocento Sans" + } + ] + }, + { + "name": "Questrial", + "fontFamily": "Questrial, sans-serif", + "slug": "wp-font-lib-questrial", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/questrial/v18/QdVUSTchPBm7nuUeVf7EuStkm20oJA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Questrial" + } + ] + }, + { + "name": "Quicksand", + "fontFamily": "Quicksand, sans-serif", + "slug": "wp-font-lib-quicksand", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkKEo18G0wx40QDw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Quicksand" + }, + { + "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o18G0wx40QDw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Quicksand" + }, + { + "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkM0o18G0wx40QDw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Quicksand" + }, + { + "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkCEv18G0wx40QDw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Quicksand" + }, + { + "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkBgv18G0wx40QDw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Quicksand" + } + ] + }, + { + "name": "Quintessential", + "fontFamily": "Quintessential, cursive", + "slug": "wp-font-lib-quintessential", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/quintessential/v20/fdNn9sOGq31Yjnh3qWU14DdtjY5wS7kmAyxM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Quintessential" + } + ] + }, + { + "name": "Qwigley", + "fontFamily": "Qwigley, cursive", + "slug": "wp-font-lib-qwigley", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/qwigley/v16/1cXzaU3UGJb5tGoCuVxsi1mBmcE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Qwigley" + } + ] + }, + { + "name": "Qwitcher Grypen", + "fontFamily": "Qwitcher Grypen, cursive", + "slug": "wp-font-lib-qwitcher-grypen", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/qwitchergrypen/v3/pxicypclp9tDilN9RrC5BSI1dZmrSGNAom-wpw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Qwitcher Grypen" + }, + { + "src": "http://fonts.gstatic.com/s/qwitchergrypen/v3/pxiZypclp9tDilN9RrC5BSI1dZmT9ExkqkSsrvNXiA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Qwitcher Grypen" + } + ] + }, + { + "name": "Racing Sans One", + "fontFamily": "Racing Sans One, system-ui", + "slug": "wp-font-lib-racing-sans-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/racingsansone/v13/sykr-yRtm7EvTrXNxkv5jfKKyDCwL3rmWpIBtA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Racing Sans One" + } + ] + }, + { + "name": "Radio Canada", + "fontFamily": "Radio Canada, sans-serif", + "slug": "wp-font-lib-radio-canada", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nESkQPIJOdSSfOT.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nFMkQPIJOdSSfOT.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nF-kQPIJOdSSfOT.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGSlgPIJOdSSfOT.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGrlgPIJOdSSfOT.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0rWLLuNwTOOTa9k.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0uuLLuNwTOOTa9k.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0tmLLuNwTOOTa9k.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0jWMLuNwTOOTa9k.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0gyMLuNwTOOTa9k.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Radio Canada" + } + ] + }, + { + "name": "Radley", + "fontFamily": "Radley, serif", + "slug": "wp-font-lib-radley", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/radley/v20/LYjDdGzinEIjCN19oAlEpVs3VQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Radley" + }, + { + "src": "http://fonts.gstatic.com/s/radley/v20/LYjBdGzinEIjCN1NogNAh14nVcfe.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Radley" + } + ] + }, + { + "name": "Rajdhani", + "fontFamily": "Rajdhani, sans-serif", + "slug": "wp-font-lib-rajdhani", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pasEcOsc-bGkqIw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Rajdhani" + }, + { + "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDIxapCSOBg7S-QT7q4AOeekWPrP.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rajdhani" + }, + { + "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pb0EMOsc-bGkqIw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Rajdhani" + }, + { + "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pbYF8Osc-bGkqIw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Rajdhani" + }, + { + "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pa8FsOsc-bGkqIw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rajdhani" + } + ] + }, + { + "name": "Rakkas", + "fontFamily": "Rakkas, system-ui", + "slug": "wp-font-lib-rakkas", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rakkas/v17/Qw3cZQlNHiblL3j_lttPOeMcCw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rakkas" + } + ] + }, + { + "name": "Raleway", + "fontFamily": "Raleway, sans-serif", + "slug": "wp-font-lib-raleway", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvao4CPNLA3JC9c.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtaooCPNLA3JC9c.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVuEooCPNLA3JC9c.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaooCPNLA3JC9c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCPNLA3JC9c.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVsEpYCPNLA3JC9c.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pYCPNLA3JC9c.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtapYCPNLA3JC9c.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtzpYCPNLA3JC9c.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjNPrQVIT9c2c8.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejMPrQVIT9c2c8.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejLPrQVIT9c2c8.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4cHLPrQVIT9c2c8.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Raleway" + } + ] + }, + { + "name": "Raleway Dots", + "fontFamily": "Raleway Dots, system-ui", + "slug": "wp-font-lib-raleway-dots", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ralewaydots/v14/6NUR8FifJg6AfQvzpshgwJ8kyf9Fdty2ew.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Raleway Dots" + } + ] + }, + { + "name": "Ramabhadra", + "fontFamily": "Ramabhadra, sans-serif", + "slug": "wp-font-lib-ramabhadra", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ramabhadra/v15/EYq2maBOwqRW9P1SQ83LehNGX5uWw3o.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ramabhadra" + } + ] + }, + { + "name": "Ramaraja", + "fontFamily": "Ramaraja, serif", + "slug": "wp-font-lib-ramaraja", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ramaraja/v15/SlGTmQearpYAYG1CABIkqnB6aSQU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ramaraja" + } + ] + }, + { + "name": "Rambla", + "fontFamily": "Rambla, sans-serif", + "slug": "wp-font-lib-rambla", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rambla/v13/snfrs0ip98hx6mr0I7IONthkwQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rambla" + }, + { + "src": "http://fonts.gstatic.com/s/rambla/v13/snfps0ip98hx6mrEIbgKFN10wYKa.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Rambla" + }, + { + "src": "http://fonts.gstatic.com/s/rambla/v13/snfos0ip98hx6mrMn50qPvN4yJuDYQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rambla" + }, + { + "src": "http://fonts.gstatic.com/s/rambla/v13/snfus0ip98hx6mrEIYC2O_l86p6TYS-Y.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Rambla" + } + ] + }, + { + "name": "Rammetto One", + "fontFamily": "Rammetto One, system-ui", + "slug": "wp-font-lib-rammetto-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rammettoone/v15/LhWiMV3HOfMbMetJG3lQDpp9Mvuciu-_SQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rammetto One" + } + ] + }, + { + "name": "Rampart One", + "fontFamily": "Rampart One, system-ui", + "slug": "wp-font-lib-rampart-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rampartone/v7/K2F1fZFGl_JSR1tAWNG9R6qgLS76ZHOM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rampart One" + } + ] + }, + { + "name": "Ranchers", + "fontFamily": "Ranchers, system-ui", + "slug": "wp-font-lib-ranchers", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ranchers/v14/zrfm0H3Lx-P2Xvs2AoDYDC79XTHv.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ranchers" + } + ] + }, + { + "name": "Rancho", + "fontFamily": "Rancho, cursive", + "slug": "wp-font-lib-rancho", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rancho/v17/46kulbzmXjLaqZRlbWXgd0RY1g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rancho" + } + ] + }, + { + "name": "Ranga", + "fontFamily": "Ranga, system-ui", + "slug": "wp-font-lib-ranga", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ranga/v18/C8ct4cYisGb28p6CLDwZwmGE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ranga" + }, + { + "src": "http://fonts.gstatic.com/s/ranga/v18/C8cg4cYisGb28qY-AxgR6X2NZAn2.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Ranga" + } + ] + }, + { + "name": "Rasa", + "fontFamily": "Rasa, serif", + "slug": "wp-font-lib-rasa", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN4YJW41fcvN2KT4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN5GJW41fcvN2KT4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN50JW41fcvN2KT4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN6YIm41fcvN2KT4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN6hIm41fcvN2KT4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZth2d8_v3bT4Ycc.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZoZ2d8_v3bT4Ycc.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZrR2d8_v3bT4Ycc.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZlhxd8_v3bT4Ycc.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZmFxd8_v3bT4Ycc.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Rasa" + } + ] + }, + { + "name": "Rationale", + "fontFamily": "Rationale, sans-serif", + "slug": "wp-font-lib-rationale", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rationale/v24/9XUnlJ92n0_JFxHIfHcsdlFMzLC2Zw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rationale" + } + ] + }, + { + "name": "Ravi Prakash", + "fontFamily": "Ravi Prakash, system-ui", + "slug": "wp-font-lib-ravi-prakash", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/raviprakash/v19/gokpH6fsDkVrF9Bv9X8SOAKHmNZEq6TTFw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ravi Prakash" + } + ] + }, + { + "name": "Readex Pro", + "fontFamily": "Readex Pro, sans-serif", + "slug": "wp-font-lib-readex-pro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCYUSmgmsglvjkag.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Readex Pro" + }, + { + "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCv0Smgmsglvjkag.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Readex Pro" + }, + { + "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTC4USmgmsglvjkag.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Readex Pro" + }, + { + "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTC00Smgmsglvjkag.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Readex Pro" + }, + { + "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCP0Omgmsglvjkag.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Readex Pro" + }, + { + "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCBkOmgmsglvjkag.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Readex Pro" + } + ] + }, + { + "name": "Recursive", + "fontFamily": "Recursive, sans-serif", + "slug": "wp-font-lib-recursive", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadDck018vwxjDJCL.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Recursive" + }, + { + "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCCk018vwxjDJCL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Recursive" + }, + { + "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCwk018vwxjDJCL.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Recursive" + }, + { + "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBclE18vwxjDJCL.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Recursive" + }, + { + "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBllE18vwxjDJCL.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Recursive" + }, + { + "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadAClE18vwxjDJCL.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Recursive" + }, + { + "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadArlE18vwxjDJCL.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Recursive" + } + ] + }, + { + "name": "Red Hat Display", + "fontFamily": "Red Hat Display, sans-serif", + "slug": "wp-font-lib-red-hat-display", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbjKWckg5-Xecg3w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbmyWckg5-Xecg3w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbl6Wckg5-Xecg3w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbrKRckg5-Xecg3w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbouRckg5-Xecg3w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbuyRckg5-Xecg3w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbsWRckg5-Xecg3w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVxAsz_VWZk3zJGg.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVmgsz_VWZk3zJGg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVqAsz_VWZk3zJGg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVRAwz_VWZk3zJGg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVfQwz_VWZk3zJGg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVGgwz_VWZk3zJGg.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVMwwz_VWZk3zJGg.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Red Hat Display" + } + ] + }, + { + "name": "Red Hat Mono", + "fontFamily": "Red Hat Mono, monospace", + "slug": "wp-font-lib-red-hat-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQQPI-7HNuW4QuKI.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQV3I-7HNuW4QuKI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQW_I-7HNuW4QuKI.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQYPP-7HNuW4QuKI.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQbrP-7HNuW4QuKI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLTfLHvUwVqKIJuw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLE_LHvUwVqKIJuw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLIfLHvUwVqKIJuw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLzfXHvUwVqKIJuw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWL9PXHvUwVqKIJuw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Red Hat Mono" + } + ] + }, + { + "name": "Red Hat Text", + "fontFamily": "Red Hat Text, sans-serif", + "slug": "wp-font-lib-red-hat-text", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML-ZwVrbacYVFtIY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML7hwVrbacYVFtIY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML4pwVrbacYVFtIY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML2Z3VrbacYVFtIY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML193VrbacYVFtIY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAz4PXQdadApIYv_g.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzvvXQdadApIYv_g.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzjPXQdadApIYv_g.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzYPLQdadApIYv_g.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzWfLQdadApIYv_g.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Red Hat Text" + } + ] + }, + { + "name": "Red Rose", + "fontFamily": "Red Rose, system-ui", + "slug": "wp-font-lib-red-rose", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8y8_sDcjSsYUVUjg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Red Rose" + }, + { + "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yrfsDcjSsYUVUjg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Red Rose" + }, + { + "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yn_sDcjSsYUVUjg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Red Rose" + }, + { + "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yc_wDcjSsYUVUjg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Red Rose" + }, + { + "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8ySvwDcjSsYUVUjg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Red Rose" + } + ] + }, + { + "name": "Redacted", + "fontFamily": "Redacted, system-ui", + "slug": "wp-font-lib-redacted", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/redacted/v6/Z9XVDmdRShme2O_7aITe4u2El6GC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Redacted" + } + ] + }, + { + "name": "Redacted Script", + "fontFamily": "Redacted Script, system-ui", + "slug": "wp-font-lib-redacted-script", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/redactedscript/v7/ypvEbXGRglhokR7dcC3d1-R6zmxqHUzVmbI397ldkg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Redacted Script" + }, + { + "src": "http://fonts.gstatic.com/s/redactedscript/v7/ypvBbXGRglhokR7dcC3d1-R6zmxSsWTxkZkr_g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Redacted Script" + }, + { + "src": "http://fonts.gstatic.com/s/redactedscript/v7/ypvEbXGRglhokR7dcC3d1-R6zmxqDUvVmbI397ldkg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Redacted Script" + } + ] + }, + { + "name": "Redressed", + "fontFamily": "Redressed, cursive", + "slug": "wp-font-lib-redressed", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/redressed/v25/x3dickHUbrmJ7wMy9MsBfPACvy_1BA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Redressed" + } + ] + }, + { + "name": "Reem Kufi", + "fontFamily": "Reem Kufi, sans-serif", + "slug": "wp-font-lib-reem-kufi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Reem Kufi" + }, + { + "src": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Reem Kufi" + }, + { + "src": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Reem Kufi" + }, + { + "src": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Reem Kufi" + } + ] + }, + { + "name": "Reem Kufi Fun", + "fontFamily": "Reem Kufi Fun, sans-serif", + "slug": "wp-font-lib-reem-kufi-fun", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYj3nCgrvqZzZXq.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Reem Kufi Fun" + }, + { + "src": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYR3nCgrvqZzZXq.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Reem Kufi Fun" + }, + { + "src": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChob92XCgrvqZzZXq.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Reem Kufi Fun" + }, + { + "src": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChobE2XCgrvqZzZXq.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Reem Kufi Fun" + } + ] + }, + { + "name": "Reem Kufi Ink", + "fontFamily": "Reem Kufi Ink, sans-serif", + "slug": "wp-font-lib-reem-kufi-ink", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/reemkufiink/v9/oPWJ_kJmmu8hCvB9iFumxZSnRj5dQnSX1ko.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Reem Kufi Ink" + } + ] + }, + { + "name": "Reenie Beanie", + "fontFamily": "Reenie Beanie, cursive", + "slug": "wp-font-lib-reenie-beanie", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/reeniebeanie/v16/z7NSdR76eDkaJKZJFkkjuvWxbP2_qoOgf_w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Reenie Beanie" + } + ] + }, + { + "name": "Reggae One", + "fontFamily": "Reggae One, system-ui", + "slug": "wp-font-lib-reggae-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/reggaeone/v15/~CgwKClJlZ2dhZSBPbmUgACoECAEYAQ==.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Reggae One" + } + ] + }, + { + "name": "Revalia", + "fontFamily": "Revalia, system-ui", + "slug": "wp-font-lib-revalia", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/revalia/v20/WwkexPimBE2-4ZPEeVruNIgJSNM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Revalia" + } + ] + }, + { + "name": "Rhodium Libre", + "fontFamily": "Rhodium Libre, serif", + "slug": "wp-font-lib-rhodium-libre", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rhodiumlibre/v17/1q2AY5adA0tn_ukeHcQHqpx6pETLeo2gm2U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rhodium Libre" + } + ] + }, + { + "name": "Ribeye", + "fontFamily": "Ribeye, system-ui", + "slug": "wp-font-lib-ribeye", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ribeye/v22/L0x8DFMxk1MP9R3RvPCmRSlUig.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ribeye" + } + ] + }, + { + "name": "Ribeye Marrow", + "fontFamily": "Ribeye Marrow, system-ui", + "slug": "wp-font-lib-ribeye-marrow", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ribeyemarrow/v22/GFDsWApshnqMRO2JdtRZ2d0vEAwTVWgKdtw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ribeye Marrow" + } + ] + }, + { + "name": "Righteous", + "fontFamily": "Righteous, system-ui", + "slug": "wp-font-lib-righteous", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/righteous/v14/1cXxaUPXBpj2rGoU7C9mj3uEicG01A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Righteous" + } + ] + }, + { + "name": "Risque", + "fontFamily": "Risque, system-ui", + "slug": "wp-font-lib-risque", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/risque/v20/VdGfAZUfHosahXxoCUYVBJ-T5g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Risque" + } + ] + }, + { + "name": "Road Rage", + "fontFamily": "Road Rage, system-ui", + "slug": "wp-font-lib-road-rage", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/roadrage/v5/6NUU8F2fKAOBKjjr4ekvtMYAwdRZfw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Road Rage" + } + ] + }, + { + "name": "Roboto", + "fontFamily": "Roboto, sans-serif", + "slug": "wp-font-lib-roboto", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1MmgWxPKTM1K9nz.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOiCnqEu92Fr1Mu51QrIzcXLsnzjYk.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5vAx05IsDqlA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjARc9AMX6lJBP.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu52xPKTM1K9nz.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9vAx05IsDqlA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51S7ABc9AMX6lJBP.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBhc9AMX6lJBP.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtvAx05IsDqlA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TLBBc9AMX6lJBP.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Roboto" + } + ] + }, + { + "name": "Roboto Condensed", + "fontFamily": "Roboto Condensed, sans-serif", + "slug": "wp-font-lib-roboto-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCMSbvtdYyQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Roboto Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYatlYcyRi4A.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Roboto Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVl2ZhZI2eCN5jzbjEETS9weq8-59WxDCs5cvI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Roboto Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7CAk8YvJEeg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Roboto Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCMSbvtdYyQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Roboto Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYatlYcyRi4A.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Roboto Condensed" + } + ] + }, + { + "name": "Roboto Flex", + "fontFamily": "Roboto Flex, sans-serif", + "slug": "wp-font-lib-roboto-flex", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/robotoflex/v9/NaN4epOXO_NexZs0b5QrzlOHb8wCikXpYqmZsWI-__OGfttPZktqc2VdZ80KvCLZaPcSBZtOx2MifRuWR28sPJtUMbsFEK6cRrleUx9Xgbm3WLHa_F4Ep4Fm0PN19Ik5Dntczx0wZGzhPlL1YNMYKbv9_1IQXOw7AiUJVXpRJ6cXW4O8TNGoXjC79QRyaLshNDUf3e0O-gn5rrZCu20YNYG0EACUTNK-QKavMlxGIY8dxef0jQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Roboto Flex" + } + ] + }, + { + "name": "Roboto Mono", + "fontFamily": "Roboto Mono, monospace", + "slug": "wp-font-lib-roboto-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vuPQ--5Ip2sSQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_XvqPQ--5Ip2sSQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_gPqPQ--5Ip2sSQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPQ--5Ip2sSQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_7PqPQ--5Ip2sSQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_AP2PQ--5Ip2sSQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_Of2PQ--5Ip2sSQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAeW9AJi8SZwt.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrnnAOW9AJi8SZwt.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrk5AOW9AJi8SZwt.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAOW9AJi8SZwt.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlVAOW9AJi8SZwt.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrm5B-W9AJi8SZwt.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrmAB-W9AJi8SZwt.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Roboto Mono" + } + ] + }, + { + "name": "Roboto Serif", + "fontFamily": "Roboto Serif, serif", + "slug": "wp-font-lib-roboto-serif", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliosp6d2Af5fR4k.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqotp6d2Af5fR4k.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElnQtp6d2Af5fR4k.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliotp6d2Af5fR4k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElhgtp6d2Af5fR4k.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElvQqp6d2Af5fR4k.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEls0qp6d2Af5fR4k.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqoqp6d2Af5fR4k.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEloMqp6d2Af5fR4k.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-V8BdxaV4nUFw.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-R8BdxaV4nUFw.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuEeR8BdxaV4nUFw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-R8BdxaV4nUFw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JufeR8BdxaV4nUFw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JukeN8BdxaV4nUFw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuqON8BdxaV4nUFw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-N8BdxaV4nUFw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Ju5uN8BdxaV4nUFw.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + } + ] + }, + { + "name": "Roboto Slab", + "fontFamily": "Roboto Slab, serif", + "slug": "wp-font-lib-roboto-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojIWWaG5iddG-1A.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDISWaG5iddG-1A.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjo0oSWaG5iddG-1A.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISWaG5iddG-1A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjovoSWaG5iddG-1A.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoUoOWaG5iddG-1A.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OWaG5iddG-1A.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDIOWaG5iddG-1A.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoJYOWaG5iddG-1A.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + } + ] + }, + { + "name": "Rochester", + "fontFamily": "Rochester, cursive", + "slug": "wp-font-lib-rochester", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rochester/v18/6ae-4KCqVa4Zy6Fif-Uy31vWNTMwoQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rochester" + } + ] + }, + { + "name": "Rock 3D", + "fontFamily": "Rock 3D, system-ui", + "slug": "wp-font-lib-rock-3d", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rock3d/v10/yYLp0hrL0PCo651513SnwRnQyNI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rock 3D" + } + ] + }, + { + "name": "Rock Salt", + "fontFamily": "Rock Salt, cursive", + "slug": "wp-font-lib-rock-salt", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rocksalt/v18/MwQ0bhv11fWD6QsAVOZbsEk7hbBWrA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rock Salt" + } + ] + }, + { + "name": "RocknRoll One", + "fontFamily": "RocknRoll One, sans-serif", + "slug": "wp-font-lib-rocknroll-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rocknrollone/v10/kmK7ZqspGAfCeUiW6FFlmEC9guVhs7tfUxc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "RocknRoll One" + } + ] + }, + { + "name": "Rokkitt", + "fontFamily": "Rokkitt, serif", + "slug": "wp-font-lib-rokkitt", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rydpDLE76HvN6n.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pyd5DLE76HvN6n.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1qsd5DLE76HvN6n.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1ryd5DLE76HvN6n.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rAd5DLE76HvN6n.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oscJDLE76HvN6n.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oVcJDLE76HvN6n.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pycJDLE76HvN6n.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pbcJDLE76HvN6n.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NHiJGbqluc6nu9E.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NPiIGbqluc6nu9E.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NCaIGbqluc6nu9E.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NHiIGbqluc6nu9E.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NEqIGbqluc6nu9E.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NKaPGbqluc6nu9E.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NJ-PGbqluc6nu9E.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NPiPGbqluc6nu9E.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NNGPGbqluc6nu9E.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + } + ] + }, + { + "name": "Romanesco", + "fontFamily": "Romanesco, cursive", + "slug": "wp-font-lib-romanesco", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/romanesco/v21/w8gYH2ozQOY7_r_J7mSn3HwLqOqSBg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Romanesco" + } + ] + }, + { + "name": "Ropa Sans", + "fontFamily": "Ropa Sans, sans-serif", + "slug": "wp-font-lib-ropa-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ropasans/v15/EYqxmaNOzLlWtsZSScyKWjloU5KP2g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ropa Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ropasans/v15/EYq3maNOzLlWtsZSScy6WDNscZef2mNE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Ropa Sans" + } + ] + }, + { + "name": "Rosario", + "fontFamily": "Rosario, sans-serif", + "slug": "wp-font-lib-rosario", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM69GCWczd-YnOzUD.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68YCWczd-YnOzUD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68qCWczd-YnOzUD.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6_GDmczd-YnOzUD.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6__Dmczd-YnOzUD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQStFwfeIFPiUDn08.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSo9wfeIFPiUDn08.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSr1wfeIFPiUDn08.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSlF3feIFPiUDn08.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSmh3feIFPiUDn08.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Rosario" + } + ] + }, + { + "name": "Rosarivo", + "fontFamily": "Rosarivo, serif", + "slug": "wp-font-lib-rosarivo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rosarivo/v20/PlI-Fl2lO6N9f8HaNAeC2nhMnNy5.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rosarivo" + }, + { + "src": "http://fonts.gstatic.com/s/rosarivo/v20/PlI4Fl2lO6N9f8HaNDeA0Hxumcy5ZX8.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Rosarivo" + } + ] + }, + { + "name": "Rouge Script", + "fontFamily": "Rouge Script, cursive", + "slug": "wp-font-lib-rouge-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rougescript/v14/LYjFdGbiklMoCIQOw1Ep3S4PVPXbUJWq9g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rouge Script" + } + ] + }, + { + "name": "Rowdies", + "fontFamily": "Rowdies, system-ui", + "slug": "wp-font-lib-rowdies", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rowdies/v15/ptRMTieMYPNBAK219hth5O7yKQNute8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Rowdies" + }, + { + "src": "http://fonts.gstatic.com/s/rowdies/v15/ptRJTieMYPNBAK21zrdJwObZNQo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rowdies" + }, + { + "src": "http://fonts.gstatic.com/s/rowdies/v15/ptRMTieMYPNBAK219gtm5O7yKQNute8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rowdies" + } + ] + }, + { + "name": "Rozha One", + "fontFamily": "Rozha One, serif", + "slug": "wp-font-lib-rozha-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rozhaone/v13/AlZy_zVFtYP12Zncg2khdXf4XB0Tow.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rozha One" + } + ] + }, + { + "name": "Rubik", + "fontFamily": "Rubik, sans-serif", + "slug": "wp-font-lib-rubik", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-WYi1UE80V4bVkA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4i1UE80V4bVkA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-NYi1UE80V4bVkA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-2Y-1UE80V4bVkA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-4I-1UE80V4bVkA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-h4-1UE80V4bVkA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-ro-1UE80V4bVkA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8sDE0UwdYPFkJ1O.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tdE0UwdYPFkJ1O.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tvE0UwdYPFkJ1O.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8uDFEUwdYPFkJ1O.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8u6FEUwdYPFkJ1O.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8vdFEUwdYPFkJ1O.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8v0FEUwdYPFkJ1O.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Rubik" + } + ] + }, + { + "name": "Rubik 80s Fade", + "fontFamily": "Rubik 80s Fade, system-ui", + "slug": "wp-font-lib-rubik-80s-fade", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubik80sfade/v2/U9MF6dW37nLSmnwZXyoV-uPXUhHwkbL8IHcK.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik 80s Fade" + } + ] + }, + { + "name": "Rubik Beastly", + "fontFamily": "Rubik Beastly, system-ui", + "slug": "wp-font-lib-rubik-beastly", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikbeastly/v10/0QImMXRd5oOmSC2ZQ7o9653X07z8_ApHqqk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Beastly" + } + ] + }, + { + "name": "Rubik Bubbles", + "fontFamily": "Rubik Bubbles, system-ui", + "slug": "wp-font-lib-rubik-bubbles", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikbubbles/v3/JIA1UVdwbHFJtwA7Us1BPFbRNTENfDxyRXI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Bubbles" + } + ] + }, + { + "name": "Rubik Burned", + "fontFamily": "Rubik Burned, system-ui", + "slug": "wp-font-lib-rubik-burned", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikburned/v1/Jqzk5TmOVOqQHihKqPpscqniHQuaCY5ZSg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Burned" + } + ] + }, + { + "name": "Rubik Dirt", + "fontFamily": "Rubik Dirt, system-ui", + "slug": "wp-font-lib-rubik-dirt", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikdirt/v2/DtVmJxC7WLEj1uIXEWAdulwm6gDXvwE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Dirt" + } + ] + }, + { + "name": "Rubik Distressed", + "fontFamily": "Rubik Distressed, system-ui", + "slug": "wp-font-lib-rubik-distressed", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikdistressed/v1/GFDxWBdsmnqAVqjtUsZf2dcrQ2ldcWAhatVBaGM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Distressed" + } + ] + }, + { + "name": "Rubik Gemstones", + "fontFamily": "Rubik Gemstones, system-ui", + "slug": "wp-font-lib-rubik-gemstones", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikgemstones/v1/zrf90HrL0-_8Xb4DFM2rUkWbOVrOiCnGqi1GMw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Gemstones" + } + ] + }, + { + "name": "Rubik Glitch", + "fontFamily": "Rubik Glitch, system-ui", + "slug": "wp-font-lib-rubik-glitch", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikglitch/v2/qkBSXv8b_srFRYQVYrDKh9ZvmC7HONiSFQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Glitch" + } + ] + }, + { + "name": "Rubik Iso", + "fontFamily": "Rubik Iso, system-ui", + "slug": "wp-font-lib-rubik-iso", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikiso/v2/x3dickHUfr-S4VAI4sABfPACvy_1BA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Iso" + } + ] + }, + { + "name": "Rubik Marker Hatch", + "fontFamily": "Rubik Marker Hatch, system-ui", + "slug": "wp-font-lib-rubik-marker-hatch", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikmarkerhatch/v1/QldTNSFQsh0B_bFXXWv6LAt-jswapJHQDL4iw0H6zw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Marker Hatch" + } + ] + }, + { + "name": "Rubik Maze", + "fontFamily": "Rubik Maze, system-ui", + "slug": "wp-font-lib-rubik-maze", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikmaze/v2/xMQRuF9ZVa2ftiJEavXSAX7inS-bxV4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Maze" + } + ] + }, + { + "name": "Rubik Microbe", + "fontFamily": "Rubik Microbe, system-ui", + "slug": "wp-font-lib-rubik-microbe", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikmicrobe/v2/UqyWK8oPP3hjw6ANS9rM3PsZcs8aaKgiauE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Microbe" + } + ] + }, + { + "name": "Rubik Mono One", + "fontFamily": "Rubik Mono One, sans-serif", + "slug": "wp-font-lib-rubik-mono-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikmonoone/v15/UqyJK8kPP3hjw6ANTdfRk9YSN-8wRqQrc_j9.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Mono One" + } + ] + }, + { + "name": "Rubik Moonrocks", + "fontFamily": "Rubik Moonrocks, system-ui", + "slug": "wp-font-lib-rubik-moonrocks", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikmoonrocks/v2/845ANMAmAI2VUZMLu_W0M7HqlDHnXcD7JGy1Sw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Moonrocks" + } + ] + }, + { + "name": "Rubik Pixels", + "fontFamily": "Rubik Pixels, system-ui", + "slug": "wp-font-lib-rubik-pixels", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikpixels/v2/SlGXmQOaupkIeSx4CEpB7AdSaBYRagrQrA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Pixels" + } + ] + }, + { + "name": "Rubik Puddles", + "fontFamily": "Rubik Puddles, system-ui", + "slug": "wp-font-lib-rubik-puddles", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikpuddles/v2/1Ptog8bYX_qGnkLkrU5MJsQcJfC0wVMT-aE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Puddles" + } + ] + }, + { + "name": "Rubik Spray Paint", + "fontFamily": "Rubik Spray Paint, system-ui", + "slug": "wp-font-lib-rubik-spray-paint", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikspraypaint/v1/WnzhHBAoeBPUDTB4EWR82y6EXWPH-Ro-QoaBZQxP.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Spray Paint" + } + ] + }, + { + "name": "Rubik Storm", + "fontFamily": "Rubik Storm, system-ui", + "slug": "wp-font-lib-rubik-storm", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikstorm/v1/eLGYP-_uPgO5Ag7ju9JaouL9T2Xh9NQk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Storm" + } + ] + }, + { + "name": "Rubik Vinyl", + "fontFamily": "Rubik Vinyl, system-ui", + "slug": "wp-font-lib-rubik-vinyl", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikvinyl/v1/iJWABXKIfDnIV4mQ5BfjvUXexox2ztOU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Vinyl" + } + ] + }, + { + "name": "Rubik Wet Paint", + "fontFamily": "Rubik Wet Paint, system-ui", + "slug": "wp-font-lib-rubik-wet-paint", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikwetpaint/v2/HTx0L20uMDGHgdULcpTF3Oe4d_-F-zz313DuvQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Wet Paint" + } + ] + }, + { + "name": "Ruda", + "fontFamily": "Ruda, sans-serif", + "slug": "wp-font-lib-ruda", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJFsi_-2KiSGg-H.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ruda" + }, + { + "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJ3si_-2KiSGg-H.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Ruda" + }, + { + "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKbtS_-2KiSGg-H.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Ruda" + }, + { + "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKitS_-2KiSGg-H.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Ruda" + }, + { + "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLFtS_-2KiSGg-H.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Ruda" + }, + { + "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLstS_-2KiSGg-H.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Ruda" + } + ] + }, + { + "name": "Rufina", + "fontFamily": "Rufina, serif", + "slug": "wp-font-lib-rufina", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rufina/v13/Yq6V-LyURyLy-aKyoxRktOdClg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rufina" + }, + { + "src": "http://fonts.gstatic.com/s/rufina/v13/Yq6W-LyURyLy-aKKHztAvMxenxE0SA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rufina" + } + ] + }, + { + "name": "Ruge Boogie", + "fontFamily": "Ruge Boogie, cursive", + "slug": "wp-font-lib-ruge-boogie", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rugeboogie/v25/JIA3UVFwbHRF_GIWSMhKNROiPzUveSxy.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ruge Boogie" + } + ] + }, + { + "name": "Ruluko", + "fontFamily": "Ruluko, sans-serif", + "slug": "wp-font-lib-ruluko", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ruluko/v21/xMQVuFNZVaODtm0pC6WzKX_QmA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ruluko" + } + ] + }, + { + "name": "Rum Raisin", + "fontFamily": "Rum Raisin, sans-serif", + "slug": "wp-font-lib-rum-raisin", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rumraisin/v20/nwpRtKu3Ih8D5avB4h2uJ3-IywA7eMM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rum Raisin" + } + ] + }, + { + "name": "Ruslan Display", + "fontFamily": "Ruslan Display, system-ui", + "slug": "wp-font-lib-ruslan-display", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ruslandisplay/v22/Gw6jwczl81XcIZuckK_e3UpfdzxrldyFvm1n.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ruslan Display" + } + ] + }, + { + "name": "Russo One", + "fontFamily": "Russo One, sans-serif", + "slug": "wp-font-lib-russo-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/russoone/v14/Z9XUDmZRWg6M1LvRYsH-yMOInrib9Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Russo One" + } + ] + }, + { + "name": "Ruthie", + "fontFamily": "Ruthie, cursive", + "slug": "wp-font-lib-ruthie", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ruthie/v24/gokvH63sGkdqXuU9lD53Q2u_mQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ruthie" + } + ] + }, + { + "name": "Rye", + "fontFamily": "Rye, system-ui", + "slug": "wp-font-lib-rye", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rye/v13/r05XGLJT86YDFpTsXOqx4w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rye" + } + ] + }, + { + "name": "STIX Two Text", + "fontFamily": "STIX Two Text, serif", + "slug": "wp-font-lib-stix-two-text", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yihg2SOYWxFMN1WD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "STIX Two Text" + }, + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YihS2SOYWxFMN1WD.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "STIX Two Text" + }, + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yii-3iOYWxFMN1WD.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "STIX Two Text" + }, + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YiiH3iOYWxFMN1WD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "STIX Two Text" + }, + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omsvbURVuMkWDmSo.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "STIX Two Text" + }, + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omvnbURVuMkWDmSo.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "STIX Two Text" + }, + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omhXcURVuMkWDmSo.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "STIX Two Text" + }, + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omizcURVuMkWDmSo.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "STIX Two Text" + } + ] + }, + { + "name": "Sacramento", + "fontFamily": "Sacramento, cursive", + "slug": "wp-font-lib-sacramento", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sacramento/v13/buEzpo6gcdjy0EiZMBUG0CoV_NxLeiw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sacramento" + } + ] + }, + { + "name": "Sahitya", + "fontFamily": "Sahitya, serif", + "slug": "wp-font-lib-sahitya", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sahitya/v17/6qLAKZkOuhnuqlJAaScFPywEDnI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sahitya" + }, + { + "src": "http://fonts.gstatic.com/s/sahitya/v17/6qLFKZkOuhnuqlJAUZsqGyQvEnvSexI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sahitya" + } + ] + }, + { + "name": "Sail", + "fontFamily": "Sail, system-ui", + "slug": "wp-font-lib-sail", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sail/v16/DPEjYwiBxwYJFBTDADYAbvw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sail" + } + ] + }, + { + "name": "Saira", + "fontFamily": "Saira, sans-serif", + "slug": "wp-font-lib-saira", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rDosg7lwYmUVY.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rCosg7lwYmUVY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7wTCosg7lwYmUVY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rCosg7lwYmUVY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA72jCosg7lwYmUVY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA74TFosg7lwYmUVY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA773Fosg7lwYmUVY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rFosg7lwYmUVY.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7_PFosg7lwYmUVY.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSooxkyQjQVYmxA.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByosxkyQjQVYmxA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBFIsxkyQjQVYmxA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSosxkyQjQVYmxA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBeIsxkyQjQVYmxA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBlIwxkyQjQVYmxA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBrYwxkyQjQVYmxA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByowxkyQjQVYmxA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKB44wxkyQjQVYmxA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Saira" + } + ] + }, + { + "name": "Saira Condensed", + "fontFamily": "Saira Condensed, sans-serif", + "slug": "wp-font-lib-saira-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRMQgErUN8XuHNEtX81i9TmEkrnwetA2omSrzS8.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnbcpg8Keepi2lHw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnCclg8Keepi2lHw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJROQgErUN8XuHNEtX81i9TmEkrfpeFE-IyCrw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnUchg8Keepi2lHw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnfc9g8Keepi2lHw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5g8Keepi2lHw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1g8Keepi2lHw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxg8Keepi2lHw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + } + ] + }, + { + "name": "Saira Extra Condensed", + "fontFamily": "Saira Extra Condensed, sans-serif", + "slug": "wp-font-lib-saira-extra-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFsOHYr-vcC7h8MklGBkrvmUG9rbpkisrTri0jx9i5ss3a3.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrJ2nR3ABgum-uoQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrQ2rR3ABgum-uoQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT70L11Ct8sw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrG2vR3ABgum-uoQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrN2zR3ABgum-uoQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrU23R3ABgum-uoQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrT27R3ABgum-uoQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTra2_R3ABgum-uoQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + } + ] + }, + { + "name": "Saira Semi Condensed", + "fontFamily": "Saira Semi Condensed, sans-serif", + "slug": "wp-font-lib-saira-semi-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MN6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXdvaOM8rXT-8V8.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfDScMWg3j36Ebz.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXenSsMWg3j36Ebz.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8LYuceqGT-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXf_S8MWg3j36Ebz.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfTTMMWg3j36Ebz.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXe3TcMWg3j36Ebz.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXerTsMWg3j36Ebz.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXePT8MWg3j36Ebz.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + } + ] + }, + { + "name": "Saira Stencil One", + "fontFamily": "Saira Stencil One, system-ui", + "slug": "wp-font-lib-saira-stencil-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sairastencilone/v14/SLXSc03I6HkvZGJ1GvvipLoYSTEL9AsMawif2YQ2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Saira Stencil One" + } + ] + }, + { + "name": "Salsa", + "fontFamily": "Salsa, system-ui", + "slug": "wp-font-lib-salsa", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/salsa/v17/gNMKW3FiRpKj-imY8ncKEZez.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Salsa" + } + ] + }, + { + "name": "Sanchez", + "fontFamily": "Sanchez, serif", + "slug": "wp-font-lib-sanchez", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sanchez/v13/Ycm2sZJORluHnXbITm5b_BwE1l0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sanchez" + }, + { + "src": "http://fonts.gstatic.com/s/sanchez/v13/Ycm0sZJORluHnXbIfmxR-D4Bxl3gkw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sanchez" + } + ] + }, + { + "name": "Sancreek", + "fontFamily": "Sancreek, system-ui", + "slug": "wp-font-lib-sancreek", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sancreek/v23/pxiHypAnsdxUm159X7D-XV9NEe-K.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sancreek" + } + ] + }, + { + "name": "Sansita", + "fontFamily": "Sansita, sans-serif", + "slug": "wp-font-lib-sansita", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldONTRRphEb_-V7HBm7TXFf3qw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sansita" + }, + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldMNTRRphEb_-V7LBuxSVNazqx2xg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sansita" + }, + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JKWUaXl0wqVv3_g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sansita" + }, + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJ9Xx-xodqz_joDQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Sansita" + }, + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JLmXaXl0wqVv3_g.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sansita" + }, + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJ6X9-xodqz_joDQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Sansita" + }, + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JJ2WaXl0wqVv3_g.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Sansita" + }, + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJzX5-xodqz_joDQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Sansita" + } + ] + }, + { + "name": "Sansita Swashed", + "fontFamily": "Sansita Swashed, system-ui", + "slug": "wp-font-lib-sansita-swashed", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW-ppbToVehmEa4Q.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sansita Swashed" + }, + { + "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW7RpbToVehmEa4Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sansita Swashed" + }, + { + "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW4ZpbToVehmEa4Q.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sansita Swashed" + }, + { + "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW2pubToVehmEa4Q.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sansita Swashed" + }, + { + "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW1NubToVehmEa4Q.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sansita Swashed" + }, + { + "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWzRubToVehmEa4Q.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sansita Swashed" + }, + { + "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWx1ubToVehmEa4Q.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Sansita Swashed" + } + ] + }, + { + "name": "Sarabun", + "fontFamily": "Sarabun, sans-serif", + "slug": "wp-font-lib-sarabun", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVhJx26TKEr37c9YHZJmnYI5gnOpg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVnJx26TKEr37c9aBBx_nwMxAzephhN.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YNpoulwm6gDXvwE.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxUl0s7iLSrwFUlw.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YL5rulwm6gDXvwE.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxNl4s7iLSrwFUlw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVjJx26TKEr37c9WBJDnlQN9gk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVhJx26TKEr37c9aBBJmnYI5gnOpg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YOZqulwm6gDXvwE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxbl8s7iLSrwFUlw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YMptulwm6gDXvwE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxQlgs7iLSrwFUlw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YK5sulwm6gDXvwE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxJlks7iLSrwFUlw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YLJvulwm6gDXvwE.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxOlos7iLSrwFUlw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Sarabun" + } + ] + }, + { + "name": "Sarala", + "fontFamily": "Sarala, sans-serif", + "slug": "wp-font-lib-sarala", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sarala/v10/uK_y4riEZv4o1w9RCh0TMv6EXw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sarala" + }, + { + "src": "http://fonts.gstatic.com/s/sarala/v10/uK_x4riEZv4o1w9ptjI3OtWYVkMpXA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sarala" + } + ] + }, + { + "name": "Sarina", + "fontFamily": "Sarina, system-ui", + "slug": "wp-font-lib-sarina", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sarina/v21/-F6wfjF3ITQwasLhLkDUriBQxw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sarina" + } + ] + }, + { + "name": "Sarpanch", + "fontFamily": "Sarpanch, sans-serif", + "slug": "wp-font-lib-sarpanch", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sarpanch/v11/hESy6Xt4NCpRuk6Pzh2ARIrX_20n.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sarpanch" + }, + { + "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziV0ba7f1HEuRHkM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sarpanch" + }, + { + "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziVYaq7f1HEuRHkM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sarpanch" + }, + { + "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziU8a67f1HEuRHkM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sarpanch" + }, + { + "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziUgaK7f1HEuRHkM.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sarpanch" + }, + { + "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziUEaa7f1HEuRHkM.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Sarpanch" + } + ] + }, + { + "name": "Sassy Frass", + "fontFamily": "Sassy Frass, cursive", + "slug": "wp-font-lib-sassy-frass", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sassyfrass/v5/LhWhMVrGOe0FLb97BjhsE99dGNWQg_am.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sassy Frass" + } + ] + }, + { + "name": "Satisfy", + "fontFamily": "Satisfy, cursive", + "slug": "wp-font-lib-satisfy", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/satisfy/v17/rP2Hp2yn6lkG50LoOZSCHBeHFl0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Satisfy" + } + ] + }, + { + "name": "Sawarabi Gothic", + "fontFamily": "Sawarabi Gothic, sans-serif", + "slug": "wp-font-lib-sawarabi-gothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sawarabigothic/v12/x3d4ckfVaqqa-BEj-I9mE65u3k3NBSk3E2YljQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sawarabi Gothic" + } + ] + }, + { + "name": "Sawarabi Mincho", + "fontFamily": "Sawarabi Mincho, serif", + "slug": "wp-font-lib-sawarabi-mincho", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sawarabimincho/v17/8QIRdiDaitzr7brc8ahpxt6GcIJTLahP46UDUw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sawarabi Mincho" + } + ] + }, + { + "name": "Scada", + "fontFamily": "Scada, sans-serif", + "slug": "wp-font-lib-scada", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/scada/v15/RLpxK5Pv5qumeWJoxzUobkvv.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Scada" + }, + { + "src": "http://fonts.gstatic.com/s/scada/v15/RLp_K5Pv5qumeVJqzTEKa1vvffg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Scada" + }, + { + "src": "http://fonts.gstatic.com/s/scada/v15/RLp8K5Pv5qumeVrU6BEgRVfmZOE5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Scada" + }, + { + "src": "http://fonts.gstatic.com/s/scada/v15/RLp6K5Pv5qumeVJq9Y0lT1PEYfE5p6g.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Scada" + } + ] + }, + { + "name": "Scheherazade New", + "fontFamily": "Scheherazade New, serif", + "slug": "wp-font-lib-scheherazade-new", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/scheherazadenew/v15/4UaZrFhTvxVnHDvUkUiHg8jprP4DCwNsOl4p5Is.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Scheherazade New" + }, + { + "src": "http://fonts.gstatic.com/s/scheherazadenew/v15/4UaerFhTvxVnHDvUkUiHg8jprP4DM_dFHlYC-IKnoSE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Scheherazade New" + }, + { + "src": "http://fonts.gstatic.com/s/scheherazadenew/v15/4UaerFhTvxVnHDvUkUiHg8jprP4DM9tCHlYC-IKnoSE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Scheherazade New" + }, + { + "src": "http://fonts.gstatic.com/s/scheherazadenew/v15/4UaerFhTvxVnHDvUkUiHg8jprP4DM79DHlYC-IKnoSE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Scheherazade New" + } + ] + }, + { + "name": "Schibsted Grotesk", + "fontFamily": "Schibsted Grotesk, sans-serif", + "slug": "wp-font-lib-schibsted-grotesk", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNIsEAT8JuXFGVOQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNEMEAT8JuXFGVOQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMN_MYAT8JuXFGVOQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNxcYAT8JuXFGVOQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNosYAT8JuXFGVOQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNi8YAT8JuXFGVOQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oLoDMhqflSFOTXs.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oLaDMhqflSFOTXs.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oI2C8hqflSFOTXs.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oIPC8hqflSFOTXs.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oJoC8hqflSFOTXs.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oJBC8hqflSFOTXs.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Schibsted Grotesk" + } + ] + }, + { + "name": "Schoolbell", + "fontFamily": "Schoolbell, cursive", + "slug": "wp-font-lib-schoolbell", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/schoolbell/v18/92zQtBZWOrcgoe-fgnJIVxIQ6mRqfiQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Schoolbell" + } + ] + }, + { + "name": "Scope One", + "fontFamily": "Scope One, serif", + "slug": "wp-font-lib-scope-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/scopeone/v14/WBLnrEXKYFlGHrOKmGD1W0_MJMGxiQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Scope One" + } + ] + }, + { + "name": "Seaweed Script", + "fontFamily": "Seaweed Script, system-ui", + "slug": "wp-font-lib-seaweed-script", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/seaweedscript/v13/bx6cNx6Tne2pxOATYE8C_Rsoe0WJ-KcGVbLW.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Seaweed Script" + } + ] + }, + { + "name": "Secular One", + "fontFamily": "Secular One, sans-serif", + "slug": "wp-font-lib-secular-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/secularone/v11/8QINdiTajsj_87rMuMdKypDlMul7LJpK.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Secular One" + } + ] + }, + { + "name": "Sedgwick Ave", + "fontFamily": "Sedgwick Ave, cursive", + "slug": "wp-font-lib-sedgwick-ave", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sedgwickave/v12/uK_04rKEYuguzAcSYRdWTJq8Xmg1Vcf5JA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sedgwick Ave" + } + ] + }, + { + "name": "Sedgwick Ave Display", + "fontFamily": "Sedgwick Ave Display, cursive", + "slug": "wp-font-lib-sedgwick-ave-display", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sedgwickavedisplay/v19/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2czd-YnOzUD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sedgwick Ave Display" + } + ] + }, + { + "name": "Sen", + "fontFamily": "Sen, sans-serif", + "slug": "wp-font-lib-sen", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sen/v7/6xKjdSxYI9_Hm_-MImrpLQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sen" + }, + { + "src": "http://fonts.gstatic.com/s/sen/v7/6xKudSxYI9__J9CoKkH1JHUQSQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sen" + }, + { + "src": "http://fonts.gstatic.com/s/sen/v7/6xKudSxYI9__O9OoKkH1JHUQSQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sen" + } + ] + }, + { + "name": "Send Flowers", + "fontFamily": "Send Flowers, cursive", + "slug": "wp-font-lib-send-flowers", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sendflowers/v2/If2PXTjtZS-0Xqy13uCQSULvxwjjouU1iw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Send Flowers" + } + ] + }, + { + "name": "Sevillana", + "fontFamily": "Sevillana, system-ui", + "slug": "wp-font-lib-sevillana", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sevillana/v21/KFOlCnWFscmDt1Bfiy1vAx05IsDqlA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sevillana" + } + ] + }, + { + "name": "Seymour One", + "fontFamily": "Seymour One, sans-serif", + "slug": "wp-font-lib-seymour-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/seymourone/v20/4iCp6Khla9xbjQpoWGGd0myIPYBvgpUI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Seymour One" + } + ] + }, + { + "name": "Shadows Into Light", + "fontFamily": "Shadows Into Light, cursive", + "slug": "wp-font-lib-shadows-into-light", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shadowsintolight/v15/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDcsr4xzSMYA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shadows Into Light" + } + ] + }, + { + "name": "Shadows Into Light Two", + "fontFamily": "Shadows Into Light Two, cursive", + "slug": "wp-font-lib-shadows-into-light-two", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shadowsintolighttwo/v14/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlAvNGLNnIF0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shadows Into Light Two" + } + ] + }, + { + "name": "Shalimar", + "fontFamily": "Shalimar, cursive", + "slug": "wp-font-lib-shalimar", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shalimar/v5/uU9MCBoE6I6iNWFUvTPx8PCOg0uX.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shalimar" + } + ] + }, + { + "name": "Shantell Sans", + "fontFamily": "Shantell Sans, system-ui", + "slug": "wp-font-lib-shantell-sans", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYQiS2i2yPwxjyRN.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYR8S2i2yPwxjyRN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYROS2i2yPwxjyRN.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYSiTGi2yPwxjyRN.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYSbTGi2yPwxjyRN.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYT8TGi2yPwxjyRN.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CN71wvgTijRNYgQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CID1wvgTijRNYgQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CLL1wvgTijRNYgQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CF7ywvgTijRNYgQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CGfywvgTijRNYgQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CADywvgTijRNYgQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Shantell Sans" + } + ] + }, + { + "name": "Shanti", + "fontFamily": "Shanti, sans-serif", + "slug": "wp-font-lib-shanti", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shanti/v23/t5thIREMM4uSDgzgU0ezpKfwzA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shanti" + } + ] + }, + { + "name": "Share", + "fontFamily": "Share, system-ui", + "slug": "wp-font-lib-share", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/share/v16/i7dEIFliZjKNF5VNHLq2cV5d.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Share" + }, + { + "src": "http://fonts.gstatic.com/s/share/v16/i7dKIFliZjKNF6VPFr6UdE5dWFM.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Share" + }, + { + "src": "http://fonts.gstatic.com/s/share/v16/i7dJIFliZjKNF63xM56-WkJUQUq7.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Share" + }, + { + "src": "http://fonts.gstatic.com/s/share/v16/i7dPIFliZjKNF6VPLgK7UEZ2RFq7AwU.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Share" + } + ] + }, + { + "name": "Share Tech", + "fontFamily": "Share Tech, sans-serif", + "slug": "wp-font-lib-share-tech", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sharetech/v17/7cHtv4Uyi5K0OeZ7bohUwHoDmTcibrA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Share Tech" + } + ] + }, + { + "name": "Share Tech Mono", + "fontFamily": "Share Tech Mono, monospace", + "slug": "wp-font-lib-share-tech-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sharetechmono/v15/J7aHnp1uDWRBEqV98dVQztYldFc7pAsEIc3Xew.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Share Tech Mono" + } + ] + }, + { + "name": "Shippori Antique", + "fontFamily": "Shippori Antique, sans-serif", + "slug": "wp-font-lib-shippori-antique", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shipporiantique/v8/-F6qfid3KC8pdMyzR0qRyFUht11v8ldPg-IUDNg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shippori Antique" + } + ] + }, + { + "name": "Shippori Antique B1", + "fontFamily": "Shippori Antique B1, sans-serif", + "slug": "wp-font-lib-shippori-antique-b1", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shipporiantiqueb1/v8/2Eb7L_JwClR7Zl_UAKZ0mUHw3oMKd40grRFCj9-5Y8Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shippori Antique B1" + } + ] + }, + { + "name": "Shippori Mincho", + "fontFamily": "Shippori Mincho, serif", + "slug": "wp-font-lib-shippori-mincho", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGGAZweH5EbgHY6YExcZfDoj0BA2_-C7LoS7g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4L9am5JEO5--2zg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4A9Gm5JEO5--2zg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4Z9Cm5JEO5--2zg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4e9Om5JEO5--2zg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho" + } + ] + }, + { + "name": "Shippori Mincho B1", + "fontFamily": "Shippori Mincho B1, serif", + "slug": "wp-font-lib-shippori-mincho-b1", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChQKElNoaXBwb3JpIE1pbmNobyBCMSAAKgQIARgB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho B1" + }, + { + "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRj0AyAAKgQIARgB.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho B1" + }, + { + "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRjYBCAAKgQIARgB.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho B1" + }, + { + "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRi8BSAAKgQIARgB.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho B1" + }, + { + "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRigBiAAKgQIARgB.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho B1" + } + ] + }, + { + "name": "Shizuru", + "fontFamily": "Shizuru, system-ui", + "slug": "wp-font-lib-shizuru", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shizuru/v10/O4ZSFGfvnxFiCA3i30IJlgUTj2A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shizuru" + } + ] + }, + { + "name": "Shojumaru", + "fontFamily": "Shojumaru, system-ui", + "slug": "wp-font-lib-shojumaru", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shojumaru/v15/rax_HiWfutkLLnaKCtlMBBJek0vA8A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shojumaru" + } + ] + }, + { + "name": "Short Stack", + "fontFamily": "Short Stack, cursive", + "slug": "wp-font-lib-short-stack", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shortstack/v15/bMrzmS2X6p0jZC6EcmPFX-SScX8D0nq6.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Short Stack" + } + ] + }, + { + "name": "Shrikhand", + "fontFamily": "Shrikhand, system-ui", + "slug": "wp-font-lib-shrikhand", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shrikhand/v12/a8IbNovtLWfR7T7bMJwbBIiQ0zhMtA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shrikhand" + } + ] + }, + { + "name": "Siemreap", + "fontFamily": "Siemreap, system-ui", + "slug": "wp-font-lib-siemreap", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/siemreap/v24/Gg82N5oFbgLvHAfNl2YbnA8DLXpe.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Siemreap" + } + ] + }, + { + "name": "Sigmar", + "fontFamily": "Sigmar, system-ui", + "slug": "wp-font-lib-sigmar", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sigmar/v3/hv-XlzJgIE8a85pUbWY3MTFgVg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sigmar" + } + ] + }, + { + "name": "Sigmar One", + "fontFamily": "Sigmar One, system-ui", + "slug": "wp-font-lib-sigmar-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sigmarone/v16/co3DmWZ8kjZuErj9Ta3dk6Pjp3Di8U0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sigmar One" + } + ] + }, + { + "name": "Signika", + "fontFamily": "Signika, sans-serif", + "slug": "wp-font-lib-signika", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tIJHJbGhs_cfKe1.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Signika" + }, + { + "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJXHJbGhs_cfKe1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Signika" + }, + { + "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJlHJbGhs_cfKe1.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Signika" + }, + { + "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKJG5bGhs_cfKe1.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Signika" + }, + { + "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKwG5bGhs_cfKe1.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Signika" + } + ] + }, + { + "name": "Signika Negative", + "fontFamily": "Signika Negative, sans-serif", + "slug": "wp-font-lib-signika-negative", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAr5S73st9hiuEq8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Signika Negative" + }, + { + "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqnS73st9hiuEq8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Signika Negative" + }, + { + "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqVS73st9hiuEq8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Signika Negative" + }, + { + "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAp5TL3st9hiuEq8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Signika Negative" + }, + { + "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RApATL3st9hiuEq8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Signika Negative" + } + ] + }, + { + "name": "Silkscreen", + "fontFamily": "Silkscreen, system-ui", + "slug": "wp-font-lib-silkscreen", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/silkscreen/v1/m8JXjfVPf62XiF7kO-i9ULRvamODxdI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Silkscreen" + }, + { + "src": "http://fonts.gstatic.com/s/silkscreen/v1/m8JUjfVPf62XiF7kO-i9aAhATmuo2dudFvc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Silkscreen" + } + ] + }, + { + "name": "Simonetta", + "fontFamily": "Simonetta, system-ui", + "slug": "wp-font-lib-simonetta", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/simonetta/v24/x3dickHVYrCU5BU15c4BfPACvy_1BA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Simonetta" + }, + { + "src": "http://fonts.gstatic.com/s/simonetta/v24/x3dkckHVYrCU5BU15c4xfvoGnSrlBBsy.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Simonetta" + }, + { + "src": "http://fonts.gstatic.com/s/simonetta/v24/x3dnckHVYrCU5BU15c45-N0mtwTpDQIrGg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Simonetta" + }, + { + "src": "http://fonts.gstatic.com/s/simonetta/v24/x3d5ckHVYrCU5BU15c4xfsKCsA7tLwc7Gn88.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Simonetta" + } + ] + }, + { + "name": "Single Day", + "fontFamily": "Single Day, system-ui", + "slug": "wp-font-lib-single-day", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/singleday/v15/LYjHdGDjlEgoAcF95EI5jVoFUNfeQJU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Single Day" + } + ] + }, + { + "name": "Sintony", + "fontFamily": "Sintony, sans-serif", + "slug": "wp-font-lib-sintony", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sintony/v13/XoHm2YDqR7-98cVUITQnu98ojjs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sintony" + }, + { + "src": "http://fonts.gstatic.com/s/sintony/v13/XoHj2YDqR7-98cVUGYgIn9cDkjLp6C8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sintony" + } + ] + }, + { + "name": "Sirin Stencil", + "fontFamily": "Sirin Stencil, system-ui", + "slug": "wp-font-lib-sirin-stencil", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sirinstencil/v21/mem4YaWwznmLx-lzGfN7MdRydchGBq6al6o.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sirin Stencil" + } + ] + }, + { + "name": "Six Caps", + "fontFamily": "Six Caps, sans-serif", + "slug": "wp-font-lib-six-caps", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sixcaps/v16/6ae_4KGrU7VR7bNmabcS9XXaPCop.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Six Caps" + } + ] + }, + { + "name": "Skranji", + "fontFamily": "Skranji, system-ui", + "slug": "wp-font-lib-skranji", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/skranji/v13/OZpDg_dtriVFNerMYzuuklTm3Ek.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Skranji" + }, + { + "src": "http://fonts.gstatic.com/s/skranji/v13/OZpGg_dtriVFNerMW4eBtlzNwED-b4g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Skranji" + } + ] + }, + { + "name": "Slabo 13px", + "fontFamily": "Slabo 13px, serif", + "slug": "wp-font-lib-slabo-13px", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/slabo13px/v13/11hEGp_azEvXZUdSBzzRcKer2wkYnvI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Slabo 13px" + } + ] + }, + { + "name": "Slabo 27px", + "fontFamily": "Slabo 27px, serif", + "slug": "wp-font-lib-slabo-27px", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/slabo27px/v12/mFT0WbgBwKPR_Z4hGN2qsxgJ1EJ7i90.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Slabo 27px" + } + ] + }, + { + "name": "Slackey", + "fontFamily": "Slackey, system-ui", + "slug": "wp-font-lib-slackey", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/slackey/v24/N0bV2SdQO-5yM0-dKlRaJdbWgdY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Slackey" + } + ] + }, + { + "name": "Slackside One", + "fontFamily": "Slackside One, cursive", + "slug": "wp-font-lib-slackside-one", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/slacksideone/v8/EJRQQgMrXdcGsiBuvnRxodTwVy7VocNB6Iw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Slackside One" + } + ] + }, + { + "name": "Smokum", + "fontFamily": "Smokum, system-ui", + "slug": "wp-font-lib-smokum", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/smokum/v24/TK3iWkUbAhopmrdGHjUHte5fKg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Smokum" + } + ] + }, + { + "name": "Smooch", + "fontFamily": "Smooch, cursive", + "slug": "wp-font-lib-smooch", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/smooch/v5/o-0LIps4xW8U1xUBjqp_6hVdYg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Smooch" + } + ] + }, + { + "name": "Smooch Sans", + "fontFamily": "Smooch Sans, sans-serif", + "slug": "wp-font-lib-smooch-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUFodqIeNlzayg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUBodqIeNlzayg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oin0BodqIeNlzayg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUBodqIeNlzayg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oi80BodqIeNlzayg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiH0dodqIeNlzayg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiJkdodqIeNlzayg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUdodqIeNlzayg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiaEdodqIeNlzayg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + } + ] + }, + { + "name": "Smythe", + "fontFamily": "Smythe, system-ui", + "slug": "wp-font-lib-smythe", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/smythe/v23/MwQ3bhT01--coT1BOLh_uGInjA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Smythe" + } + ] + }, + { + "name": "Sniglet", + "fontFamily": "Sniglet, system-ui", + "slug": "wp-font-lib-sniglet", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sniglet/v17/cIf9MaFLtkE3UjaJxCmrYGkHgIs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sniglet" + }, + { + "src": "http://fonts.gstatic.com/s/sniglet/v17/cIf4MaFLtkE3UjaJ_ImHRGEsnIJkWL4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sniglet" + } + ] + }, + { + "name": "Snippet", + "fontFamily": "Snippet, sans-serif", + "slug": "wp-font-lib-snippet", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/snippet/v21/bWt47f7XfQH9Gupu2v_Afcp9QWc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Snippet" + } + ] + }, + { + "name": "Snowburst One", + "fontFamily": "Snowburst One, system-ui", + "slug": "wp-font-lib-snowburst-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/snowburstone/v20/MQpS-WezKdujBsXY3B7I-UT7eZ-UPyacPbo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Snowburst One" + } + ] + }, + { + "name": "Sofadi One", + "fontFamily": "Sofadi One, system-ui", + "slug": "wp-font-lib-sofadi-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sofadione/v21/JIA2UVBxdnVBuElZaMFGcDOIETkmYDU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sofadi One" + } + ] + }, + { + "name": "Sofia", + "fontFamily": "Sofia, cursive", + "slug": "wp-font-lib-sofia", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sofia/v14/8QIHdirahM3j_vu-sowsrqjk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sofia" + } + ] + }, + { + "name": "Sofia Sans", + "fontFamily": "Sofia Sans, sans-serif", + "slug": "wp-font-lib-sofia-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sa3trvKCXl8k.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69D6sK3trvKCXl8k.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69AksK3trvKCXl8k.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sK3trvKCXl8k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69BIsK3trvKCXl8k.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69Ckt63trvKCXl8k.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69Cdt63trvKCXl8k.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69D6t63trvKCXl8k.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69DTt63trvKCXl8k.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy80WvpPagW08kdLY.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy88WupPagW08kdLY.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy8xuupPagW08kdLY.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy80WupPagW08kdLY.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy83eupPagW08kdLY.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy85uppPagW08kdLY.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy86KppPagW08kdLY.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy88WppPagW08kdLY.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy8-yppPagW08kdLY.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + } + ] + }, + { + "name": "Sofia Sans Condensed", + "fontFamily": "Sofia Sans Condensed, sans-serif", + "slug": "wp-font-lib-sofia-sans-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqh-Csl8QO3OfwQQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqB-Gsl8QO3OfwQQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUq2eGsl8QO3OfwQQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqh-Gsl8QO3OfwQQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqteGsl8QO3OfwQQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqWeasl8QO3OfwQQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqYOasl8QO3OfwQQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqB-asl8QO3OfwQQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqLuasl8QO3OfwQQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6JE1c4K_uLgQZ_3.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6LE1M4K_uLgQZ_3.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Ia1M4K_uLgQZ_3.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6JE1M4K_uLgQZ_3.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6J21M4K_uLgQZ_3.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Ka084K_uLgQZ_3.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Kj084K_uLgQZ_3.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6LE084K_uLgQZ_3.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Lt084K_uLgQZ_3.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + } + ] + }, + { + "name": "Sofia Sans Extra Condensed", + "fontFamily": "Sofia Sans Extra Condensed, sans-serif", + "slug": "wp-font-lib-sofia-sans-extra-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLmmmEfzmM356GxA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLGmiEfzmM356GxA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLxGiEfzmM356GxA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLmmiEfzmM356GxA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLqGiEfzmM356GxA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLRG-EfzmM356GxA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLfW-EfzmM356GxA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLGm-EfzmM356GxA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLM2-EfzmM356GxA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitsPTOI_ZuWxFXe.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivsPDOI_ZuWxFXe.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUisyPDOI_ZuWxFXe.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitsPDOI_ZuWxFXe.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitePDOI_ZuWxFXe.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUiuyOzOI_ZuWxFXe.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUiuLOzOI_ZuWxFXe.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivsOzOI_ZuWxFXe.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivFOzOI_ZuWxFXe.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + } + ] + }, + { + "name": "Sofia Sans Semi Condensed", + "fontFamily": "Sofia Sans Semi Condensed, sans-serif", + "slug": "wp-font-lib-sofia-sans-semi-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoobEO9TGahllIhN.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqbEe9TGahllIhN.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvopFEe9TGahllIhN.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoobEe9TGahllIhN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoopEe9TGahllIhN.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvorFFu9TGahllIhN.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvor8Fu9TGahllIhN.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqbFu9TGahllIhN.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqyFu9TGahllIhN.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUgcRE6xHkZhNeas.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUocQE6xHkZhNeas.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUlkQE6xHkZhNeas.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUgcQE6xHkZhNeas.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUjUQE6xHkZhNeas.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUtkXE6xHkZhNeas.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUuAXE6xHkZhNeas.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUocXE6xHkZhNeas.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUq4XE6xHkZhNeas.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + } + ] + }, + { + "name": "Solitreo", + "fontFamily": "Solitreo, cursive", + "slug": "wp-font-lib-solitreo", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/solitreo/v2/r05YGLlS5a9KYsyNO8upyDYtStiJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Solitreo" + } + ] + }, + { + "name": "Solway", + "fontFamily": "Solway, serif", + "slug": "wp-font-lib-solway", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuLlgZms0QW3mqyg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Solway" + }, + { + "src": "http://fonts.gstatic.com/s/solway/v18/AMOQz46Cs2uTAOCWgnA9kuYMUg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Solway" + }, + { + "src": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCudlkZms0QW3mqyg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Solway" + }, + { + "src": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuPl8Zms0QW3mqyg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Solway" + }, + { + "src": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuIlwZms0QW3mqyg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Solway" + } + ] + }, + { + "name": "Song Myung", + "fontFamily": "Song Myung, serif", + "slug": "wp-font-lib-song-myung", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/songmyung/v20/1cX2aUDWAJH5-EIC7DIhr1GqhcitzeM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Song Myung" + } + ] + }, + { + "name": "Sono", + "fontFamily": "Sono, sans-serif", + "slug": "wp-font-lib-sono", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVNkWdEnR4qYeB4Q.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Sono" + }, + { + "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxV6EWdEnR4qYeB4Q.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sono" + }, + { + "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVtkWdEnR4qYeB4Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sono" + }, + { + "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVhEWdEnR4qYeB4Q.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sono" + }, + { + "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVaEKdEnR4qYeB4Q.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sono" + }, + { + "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVUUKdEnR4qYeB4Q.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sono" + }, + { + "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVNkKdEnR4qYeB4Q.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sono" + } + ] + }, + { + "name": "Sonsie One", + "fontFamily": "Sonsie One, system-ui", + "slug": "wp-font-lib-sonsie-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sonsieone/v21/PbymFmP_EAnPqbKaoc18YVu80lbp8JM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sonsie One" + } + ] + }, + { + "name": "Sora", + "fontFamily": "Sora, sans-serif", + "slug": "wp-font-lib-sora", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSn3-KIwNhBti0.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Sora" + }, + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSfSnn-KIwNhBti0.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Sora" + }, + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmScMnn-KIwNhBti0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sora" + }, + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSnn-KIwNhBti0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sora" + }, + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdgnn-KIwNhBti0.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sora" + }, + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSeMmX-KIwNhBti0.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sora" + }, + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSe1mX-KIwNhBti0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sora" + }, + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSfSmX-KIwNhBti0.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sora" + } + ] + }, + { + "name": "Sorts Mill Goudy", + "fontFamily": "Sorts Mill Goudy, serif", + "slug": "wp-font-lib-sorts-mill-goudy", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3GZR9MED_6PSuS_50nEaVrfzgEXH0OjpM75PE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sorts Mill Goudy" + }, + { + "src": "http://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3AZR9MED_6PSuS_50nEaVrfzgEbH8EirE-9PGLfQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sorts Mill Goudy" + } + ] + }, + { + "name": "Source Code Pro", + "fontFamily": "Source Code Pro, monospace", + "slug": "wp-font-lib-source-code-pro", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyQhM5hTXUcdJg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DJKQhM5hTXUcdJg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhM5hTXUcdJg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DP6QhM5hTXUcdJg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DBKXhM5hTXUcdJg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DCuXhM5hTXUcdJg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyXhM5hTXUcdJg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DGWXhM5hTXUcdJg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7I1rSVcZZJiGpw.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTMo1rSVcZZJiGpw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1rSVcZZJiGpw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTXo1rSVcZZJiGpw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTsoprSVcZZJiGpw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTi4prSVcZZJiGpw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7IprSVcZZJiGpw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTxYprSVcZZJiGpw.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + } + ] + }, + { + "name": "Source Sans 3", + "fontFamily": "Source Sans 3, sans-serif", + "slug": "wp-font-lib-source-sans-3", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw461EN_io6npfB.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Ky461EN_io6npfB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KyK61EN_io6npfB.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlO9C4Ym4fB3Ts.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqOdO9C4Ym4fB3Ts.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqLlO9C4Ym4fB3Ts.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqItO9C4Ym4fB3Ts.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqGdJ9C4Ym4fB3Ts.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqF5J9C4Ym4fB3Ts.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlJ9C4Ym4fB3Ts.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqBBJ9C4Ym4fB3Ts.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + } + ] + }, + { + "name": "Source Sans Pro", + "fontFamily": "Source Sans Pro, sans-serif", + "slug": "wp-font-lib-source-sans-pro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_AkB1v_8CGxg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokRdr3cWWxg40.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkB1v_8CGxg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkhdr3cWWxg40.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3aP6TkmDZz9g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7gujNj9tmf.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkB1v_8CGxg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lBdr3cWWxg40.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkB1v_8CGxg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclRdr3cWWxg40.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nAkB1v_8CGxg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklxdr3cWWxg40.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Source Sans Pro" + } + ] + }, + { + "name": "Source Serif 4", + "fontFamily": "Source Serif 4, serif", + "slug": "wp-font-lib-source-serif-4", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdqrhxXD-wGvjU.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiklqrhxXD-wGvjU.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjihdqrhxXD-wGvjU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiiVqrhxXD-wGvjU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjisltrhxXD-wGvjU.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjivBtrhxXD-wGvjU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdtrhxXD-wGvjU.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjir5trhxXD-wGvjU.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxl9dC84DrjXEXw.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pGF9dC84DrjXEXw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pRl9dC84DrjXEXw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pdF9dC84DrjXEXw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pmFhdC84DrjXEXw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98poVhdC84DrjXEXw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxlhdC84DrjXEXw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98p71hdC84DrjXEXw.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + } + ] + }, + { + "name": "Source Serif Pro", + "fontFamily": "Source Serif Pro, serif", + "slug": "wp-font-lib-source-serif-pro", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasbsfhSugxYUvZrI.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGbSqqwacqdrKvbQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasd8chSugxYUvZrI.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGCSmqwacqdrKvbQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIQzD-0qpwxpaWvjeD0X88SAOeaiXM0oSOL2Yw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIWzD-0qpwxpaWvjeD0X88SAOeauXE-pQGOyYw2fw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasasahSugxYUvZrI.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGfS-qwacqdrKvbQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasc8bhSugxYUvZrI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGGS6qwacqdrKvbQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasfcZhSugxYUvZrI.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGISyqwacqdrKvbQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Source Serif Pro" + } + ] + }, + { + "name": "Space Grotesk", + "fontFamily": "Space Grotesk, sans-serif", + "slug": "wp-font-lib-space-grotesk", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj62UUsjNsFjTDJK.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Space Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUUsjNsFjTDJK.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Space Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7aUUsjNsFjTDJK.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Space Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj42VksjNsFjTDJK.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Space Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksjNsFjTDJK.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Space Grotesk" + } + ] + }, + { + "name": "Space Mono", + "fontFamily": "Space Mono, monospace", + "slug": "wp-font-lib-space-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/spacemono/v12/i7dPIFZifjKcF5UAWdDRUEZ2RFq7AwU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Space Mono" + }, + { + "src": "http://fonts.gstatic.com/s/spacemono/v12/i7dNIFZifjKcF5UAWdDRYER8QHi-EwWMbg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Space Mono" + }, + { + "src": "http://fonts.gstatic.com/s/spacemono/v12/i7dMIFZifjKcF5UAWdDRaPpZYFKQHwyVd3U.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Space Mono" + }, + { + "src": "http://fonts.gstatic.com/s/spacemono/v12/i7dSIFZifjKcF5UAWdDRYERE_FeaGy6QZ3WfYg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Space Mono" + } + ] + }, + { + "name": "Special Elite", + "fontFamily": "Special Elite, system-ui", + "slug": "wp-font-lib-special-elite", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/specialelite/v18/XLYgIZbkc4JPUL5CVArUVL0nhncESXFtUsM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Special Elite" + } + ] + }, + { + "name": "Spectral", + "fontFamily": "Spectral, serif", + "slug": "wp-font-lib-spectral", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9v2s13GY_etWWIJ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qrXHafOPXHIJErY.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uSsF3GY_etWWIJ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qtHEafOPXHIJErY.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCr-xNNww_2s0amA-M-mHnOSOuk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCt-xNNww_2s0amA9M8kn3sTfukQHs.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vKsV3GY_etWWIJ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qonFafOPXHIJErY.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vmtl3GY_etWWIJ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qqXCafOPXHIJErY.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uCt13GY_etWWIJ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qsHDafOPXHIJErY.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uetF3GY_etWWIJ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qt3AafOPXHIJErY.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Spectral" + } + ] + }, + { + "name": "Spectral SC", + "fontFamily": "Spectral SC, serif", + "slug": "wp-font-lib-spectral-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs1qwkTXPYeVXJZB.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg26zWN4O3WYZB_sU.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0OwUTXPYeVXJZB.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg28jVN4O3WYZB_sU.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/KtkpALCRZonmalTgyPmRfvWi6WDfFpuc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/KtkrALCRZonmalTgyPmRfsWg42T9E4ucRY8.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs1WwETXPYeVXJZB.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg25DUN4O3WYZB_sU.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs16x0TXPYeVXJZB.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg27zTN4O3WYZB_sU.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0exkTXPYeVXJZB.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg29jSN4O3WYZB_sU.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0CxUTXPYeVXJZB.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg28TRN4O3WYZB_sU.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Spectral SC" + } + ] + }, + { + "name": "Spicy Rice", + "fontFamily": "Spicy Rice, system-ui", + "slug": "wp-font-lib-spicy-rice", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/spicyrice/v21/uK_24rSEd-Uqwk4jY1RyGv-2WkowRcc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Spicy Rice" + } + ] + }, + { + "name": "Spinnaker", + "fontFamily": "Spinnaker, sans-serif", + "slug": "wp-font-lib-spinnaker", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/spinnaker/v17/w8gYH2oyX-I0_rvR6Hmn3HwLqOqSBg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Spinnaker" + } + ] + }, + { + "name": "Spirax", + "fontFamily": "Spirax, system-ui", + "slug": "wp-font-lib-spirax", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/spirax/v21/buE3poKgYNLy0F3cXktt-Csn-Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Spirax" + } + ] + }, + { + "name": "Splash", + "fontFamily": "Splash, cursive", + "slug": "wp-font-lib-splash", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/splash/v2/KtksAL2RZoDkbU6hpPPGNdS6wg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Splash" + } + ] + }, + { + "name": "Spline Sans", + "fontFamily": "Spline Sans, sans-serif", + "slug": "wp-font-lib-spline-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpZlnYEtvlUfE2kw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Spline Sans" + }, + { + "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpOFnYEtvlUfE2kw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Spline Sans" + }, + { + "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpClnYEtvlUfE2kw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Spline Sans" + }, + { + "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp5l7YEtvlUfE2kw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Spline Sans" + }, + { + "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp317YEtvlUfE2kw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Spline Sans" + } + ] + }, + { + "name": "Spline Sans Mono", + "fontFamily": "Spline Sans Mono, monospace", + "slug": "wp-font-lib-spline-sans-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGA8MrtVy4d4dGb1.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBiMrtVy4d4dGb1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBQMrtVy4d4dGb1.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGC8NbtVy4d4dGb1.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGCFNbtVy4d4dGb1.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcQ0WwYNacXb12MM.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcVMWwYNacXb12MM.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcWEWwYNacXb12MM.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcY0RwYNacXb12MM.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcbQRwYNacXb12MM.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Spline Sans Mono" + } + ] + }, + { + "name": "Squada One", + "fontFamily": "Squada One, system-ui", + "slug": "wp-font-lib-squada-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/squadaone/v14/BCasqZ8XsOrx4mcOk6MtWaA8WDBkHgs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Squada One" + } + ] + }, + { + "name": "Square Peg", + "fontFamily": "Square Peg, cursive", + "slug": "wp-font-lib-square-peg", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/squarepeg/v2/y83eW48Nzw6ZlUHc-phrBDHrHHfrFPE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Square Peg" + } + ] + }, + { + "name": "Sree Krushnadevaraya", + "fontFamily": "Sree Krushnadevaraya, serif", + "slug": "wp-font-lib-sree-krushnadevaraya", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sreekrushnadevaraya/v21/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWb2FhQuXir.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sree Krushnadevaraya" + } + ] + }, + { + "name": "Sriracha", + "fontFamily": "Sriracha, cursive", + "slug": "wp-font-lib-sriracha", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sriracha/v11/0nkrC9D4IuYBgWcI9ObYRQDioeb0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sriracha" + } + ] + }, + { + "name": "Srisakdi", + "fontFamily": "Srisakdi, system-ui", + "slug": "wp-font-lib-srisakdi", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/srisakdi/v16/yMJRMIlvdpDbkB0A-jq8fSx5i814.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Srisakdi" + }, + { + "src": "http://fonts.gstatic.com/s/srisakdi/v16/yMJWMIlvdpDbkB0A-gIAUghxoNFxW0Hz.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Srisakdi" + } + ] + }, + { + "name": "Staatliches", + "fontFamily": "Staatliches, system-ui", + "slug": "wp-font-lib-staatliches", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/staatliches/v11/HI_OiY8KO6hCsQSoAPmtMbectJG9O9PS.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Staatliches" + } + ] + }, + { + "name": "Stalemate", + "fontFamily": "Stalemate, cursive", + "slug": "wp-font-lib-stalemate", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stalemate/v20/taiIGmZ_EJq97-UfkZRpuqSs8ZQpaQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stalemate" + } + ] + }, + { + "name": "Stalinist One", + "fontFamily": "Stalinist One, system-ui", + "slug": "wp-font-lib-stalinist-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stalinistone/v54/MQpS-WezM9W4Dd7D3B7I-UT7eZ-UPyacPbo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stalinist One" + } + ] + }, + { + "name": "Stardos Stencil", + "fontFamily": "Stardos Stencil, system-ui", + "slug": "wp-font-lib-stardos-stencil", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stardosstencil/v15/X7n94bcuGPC8hrvEOHXOgaKCc2TR71R3tiSx0g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stardos Stencil" + }, + { + "src": "http://fonts.gstatic.com/s/stardosstencil/v15/X7n44bcuGPC8hrvEOHXOgaKCc2TpU3tTvg-t29HSHw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Stardos Stencil" + } + ] + }, + { + "name": "Stick", + "fontFamily": "Stick, sans-serif", + "slug": "wp-font-lib-stick", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stick/v15/Qw3TZQpMCyTtJSvfvPVDMPoF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stick" + } + ] + }, + { + "name": "Stick No Bills", + "fontFamily": "Stick No Bills, sans-serif", + "slug": "wp-font-lib-stick-no-bills", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8Q7KriwKhcTKA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Stick No Bills" + }, + { + "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcV4cQ7KriwKhcTKA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Stick No Bills" + }, + { + "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVv8Q7KriwKhcTKA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stick No Bills" + }, + { + "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVjcQ7KriwKhcTKA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Stick No Bills" + }, + { + "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVYcM7KriwKhcTKA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Stick No Bills" + }, + { + "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVWMM7KriwKhcTKA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Stick No Bills" + }, + { + "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8M7KriwKhcTKA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Stick No Bills" + } + ] + }, + { + "name": "Stint Ultra Condensed", + "fontFamily": "Stint Ultra Condensed, system-ui", + "slug": "wp-font-lib-stint-ultra-condensed", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stintultracondensed/v21/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-qhUO2cNvdg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stint Ultra Condensed" + } + ] + }, + { + "name": "Stint Ultra Expanded", + "fontFamily": "Stint Ultra Expanded, system-ui", + "slug": "wp-font-lib-stint-ultra-expanded", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stintultraexpanded/v20/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qoATQkWwam.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stint Ultra Expanded" + } + ] + }, + { + "name": "Stoke", + "fontFamily": "Stoke, serif", + "slug": "wp-font-lib-stoke", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stoke/v22/z7NXdRb7aTMfKNvFVgxC_pjcTeWU.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Stoke" + }, + { + "src": "http://fonts.gstatic.com/s/stoke/v22/z7NadRb7aTMfKONpfihK1YTV.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stoke" + } + ] + }, + { + "name": "Strait", + "fontFamily": "Strait, sans-serif", + "slug": "wp-font-lib-strait", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/strait/v15/DtViJxy6WaEr1LZzeDhtkl0U7w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Strait" + } + ] + }, + { + "name": "Style Script", + "fontFamily": "Style Script, cursive", + "slug": "wp-font-lib-style-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stylescript/v8/vm8xdRX3SV7Z0aPa88xzW5npeFT76NZnMw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Style Script" + } + ] + }, + { + "name": "Stylish", + "fontFamily": "Stylish, sans-serif", + "slug": "wp-font-lib-stylish", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stylish/v20/m8JSjfhPYriQkk7-fo35dLxEdmo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stylish" + } + ] + }, + { + "name": "Sue Ellen Francisco", + "fontFamily": "Sue Ellen Francisco, cursive", + "slug": "wp-font-lib-sue-ellen-francisco", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sueellenfrancisco/v16/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9ropF2lqk9H4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sue Ellen Francisco" + } + ] + }, + { + "name": "Suez One", + "fontFamily": "Suez One, serif", + "slug": "wp-font-lib-suez-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/suezone/v11/taiJGmd_EZ6rqscQgNFJkIqg-I0w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Suez One" + } + ] + }, + { + "name": "Sulphur Point", + "fontFamily": "Sulphur Point, sans-serif", + "slug": "wp-font-lib-sulphur-point", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLpkK5vv8KaycDcazWFPBj2afVU6n6kFUHPIFaU.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sulphur Point" + }, + { + "src": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLp5K5vv8KaycDcazWFPBj2aRfkSu6EuTHo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sulphur Point" + }, + { + "src": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLpkK5vv8KaycDcazWFPBj2afUU9n6kFUHPIFaU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sulphur Point" + } + ] + }, + { + "name": "Sumana", + "fontFamily": "Sumana, serif", + "slug": "wp-font-lib-sumana", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sumana/v10/4UaDrE5TqRBjGj-G8Bji76zR4w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sumana" + }, + { + "src": "http://fonts.gstatic.com/s/sumana/v10/4UaArE5TqRBjGj--TDfG54fN6ppsKg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sumana" + } + ] + }, + { + "name": "Sunflower", + "fontFamily": "Sunflower, sans-serif", + "slug": "wp-font-lib-sunflower", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-06MfiqYsGBGBzCw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sunflower" + }, + { + "src": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-0sMbiqYsGBGBzCw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sunflower" + }, + { + "src": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-0-MDiqYsGBGBzCw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sunflower" + } + ] + }, + { + "name": "Sunshiney", + "fontFamily": "Sunshiney, cursive", + "slug": "wp-font-lib-sunshiney", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sunshiney/v24/LDIwapGTLBwsS-wT4vcgE8moUePWkg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sunshiney" + } + ] + }, + { + "name": "Supermercado One", + "fontFamily": "Supermercado One, system-ui", + "slug": "wp-font-lib-supermercado-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/supermercadoone/v22/OpNXnpQWg8jc_xps_Gi14kVVEXOn60b3MClBRTs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Supermercado One" + } + ] + }, + { + "name": "Sura", + "fontFamily": "Sura, serif", + "slug": "wp-font-lib-sura", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sura/v16/SZc23FL5PbyzFf5UWzXtjUM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sura" + }, + { + "src": "http://fonts.gstatic.com/s/sura/v16/SZc53FL5PbyzLUJ7fz3GkUrS8DI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sura" + } + ] + }, + { + "name": "Suranna", + "fontFamily": "Suranna, serif", + "slug": "wp-font-lib-suranna", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/suranna/v13/gokuH6ztGkFjWe58tBRZT2KmgP0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Suranna" + } + ] + }, + { + "name": "Suravaram", + "fontFamily": "Suravaram, serif", + "slug": "wp-font-lib-suravaram", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/suravaram/v21/_gP61R_usiY7SCym4xIAi261Qv9roQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Suravaram" + } + ] + }, + { + "name": "Suwannaphum", + "fontFamily": "Suwannaphum, serif", + "slug": "wp-font-lib-suwannaphum", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnAgHV7GtDvc8jbe8hXXL3B9cSWXx2VZmk.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Suwannaphum" + }, + { + "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0J1-S8cRGcf3Ai.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Suwannaphum" + }, + { + "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnCgHV7GtDvc8jbe8hXXIWl_8C0Wg2V.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Suwannaphum" + }, + { + "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0Z0OS8cRGcf3Ai.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Suwannaphum" + }, + { + "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0h0uS8cRGcf3Ai.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Suwannaphum" + } + ] + }, + { + "name": "Swanky and Moo Moo", + "fontFamily": "Swanky and Moo Moo, cursive", + "slug": "wp-font-lib-swanky-and-moo-moo", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/swankyandmoomoo/v22/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUtbPkR64SYQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Swanky and Moo Moo" + } + ] + }, + { + "name": "Syncopate", + "fontFamily": "Syncopate, sans-serif", + "slug": "wp-font-lib-syncopate", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/syncopate/v19/pe0sMIuPIYBCpEV5eFdyAv2-C99ycg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Syncopate" + }, + { + "src": "http://fonts.gstatic.com/s/syncopate/v19/pe0pMIuPIYBCpEV5eFdKvtKaA_Rue1UwVg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Syncopate" + } + ] + }, + { + "name": "Syne", + "fontFamily": "Syne, sans-serif", + "slug": "wp-font-lib-syne", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_04uT6kR47NCV5Z.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Syne" + }, + { + "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_0KuT6kR47NCV5Z.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Syne" + }, + { + "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6kR47NCV5Z.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Syne" + }, + { + "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6kR47NCV5Z.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Syne" + }, + { + "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_24vj6kR47NCV5Z.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Syne" + } + ] + }, + { + "name": "Syne Mono", + "fontFamily": "Syne Mono, monospace", + "slug": "wp-font-lib-syne-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/synemono/v15/K2FzfZNHj_FHBmRbFvHzIqCkDyvqZA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Syne Mono" + } + ] + }, + { + "name": "Syne Tactile", + "fontFamily": "Syne Tactile, system-ui", + "slug": "wp-font-lib-syne-tactile", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/synetactile/v15/11hGGpna2UTQKjMCVzjAPMKh3ysdjvKU8Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Syne Tactile" + } + ] + }, + { + "name": "Tai Heritage Pro", + "fontFamily": "Tai Heritage Pro, serif", + "slug": "wp-font-lib-tai-heritage-pro", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/taiheritagepro/v6/sZlfdQid-zgaNiNIYcUzJMU3IYyNoHxSENxuLuE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tai Heritage Pro" + }, + { + "src": "http://fonts.gstatic.com/s/taiheritagepro/v6/sZlYdQid-zgaNiNIYcUzJMU3IYyNmMB9NNRFMuhjCXY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tai Heritage Pro" + } + ] + }, + { + "name": "Tajawal", + "fontFamily": "Tajawal, sans-serif", + "slug": "wp-font-lib-tajawal", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l_6gLrZjiLlJ-G0.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Tajawal" + }, + { + "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5qjLrZjiLlJ-G0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Tajawal" + }, + { + "src": "http://fonts.gstatic.com/s/tajawal/v9/Iura6YBj_oCad4k1rzaLCr5IlLA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tajawal" + }, + { + "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l8KiLrZjiLlJ-G0.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Tajawal" + }, + { + "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l4qkLrZjiLlJ-G0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tajawal" + }, + { + "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5anLrZjiLlJ-G0.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Tajawal" + }, + { + "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l7KmLrZjiLlJ-G0.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Tajawal" + } + ] + }, + { + "name": "Tangerine", + "fontFamily": "Tangerine, cursive", + "slug": "wp-font-lib-tangerine", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tangerine/v17/IurY6Y5j_oScZZow4VOBDpxNhLBQ4Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tangerine" + }, + { + "src": "http://fonts.gstatic.com/s/tangerine/v17/Iurd6Y5j_oScZZow4VO5srNpjJtM6G0t9w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tangerine" + } + ] + }, + { + "name": "Tapestry", + "fontFamily": "Tapestry, cursive", + "slug": "wp-font-lib-tapestry", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tapestry/v2/SlGTmQecrosEYXhaGBIkqnB6aSQU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tapestry" + } + ] + }, + { + "name": "Taprom", + "fontFamily": "Taprom, system-ui", + "slug": "wp-font-lib-taprom", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/taprom/v27/UcCn3F82JHycULbFQyk3-0kvHg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Taprom" + } + ] + }, + { + "name": "Tauri", + "fontFamily": "Tauri, sans-serif", + "slug": "wp-font-lib-tauri", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tauri/v16/TwMA-IISS0AM3IpVWHU_TBqO.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tauri" + } + ] + }, + { + "name": "Taviraj", + "fontFamily": "Taviraj, serif", + "slug": "wp-font-lib-taviraj", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcbv8Cj3ylylTXzRIorV8N1jU2gog.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcdv8Cj3ylylTXzTOwTM8lxr0iwolLl.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRCYKd-lbgUS5u0s.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTn-hRhWa8q0v8ag.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzREIJd-lbgUS5u0s.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT--tRhWa8q0v8ag.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcZv8Cj3ylylTXzfO4hU-FwnU0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcbv8Cj3ylylTXzTOwrV8N1jU2gog.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRBoId-lbgUS5u0s.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTo-pRhWa8q0v8ag.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRDYPd-lbgUS5u0s.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTj-1RhWa8q0v8ag.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRFIOd-lbgUS5u0s.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT6-xRhWa8q0v8ag.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRE4Nd-lbgUS5u0s.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT9-9RhWa8q0v8ag.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRGoMd-lbgUS5u0s.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT0-5RhWa8q0v8ag.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Taviraj" + } + ] + }, + { + "name": "Teko", + "fontFamily": "Teko, sans-serif", + "slug": "wp-font-lib-teko", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdQhfgCNqqVIuTN4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Teko" + }, + { + "src": "http://fonts.gstatic.com/s/teko/v16/LYjNdG7kmE0gTaR3pCtBtVs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Teko" + }, + { + "src": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdVBegCNqqVIuTN4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Teko" + }, + { + "src": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdXxZgCNqqVIuTN4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Teko" + }, + { + "src": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdRhYgCNqqVIuTN4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Teko" + } + ] + }, + { + "name": "Telex", + "fontFamily": "Telex, sans-serif", + "slug": "wp-font-lib-telex", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/telex/v17/ieVw2Y1fKWmIO9fTB1piKFIf.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Telex" + } + ] + }, + { + "name": "Tenali Ramakrishna", + "fontFamily": "Tenali Ramakrishna, sans-serif", + "slug": "wp-font-lib-tenali-ramakrishna", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tenaliramakrishna/v12/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8KJXqUFFvtA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tenali Ramakrishna" + } + ] + }, + { + "name": "Tenor Sans", + "fontFamily": "Tenor Sans, sans-serif", + "slug": "wp-font-lib-tenor-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tenorsans/v17/bx6ANxqUneKx06UkIXISr3JyC22IyqI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tenor Sans" + } + ] + }, + { + "name": "Text Me One", + "fontFamily": "Text Me One, sans-serif", + "slug": "wp-font-lib-text-me-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/textmeone/v21/i7dOIFdlayuLUvgoFvHQFWZcalayGhyV.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Text Me One" + } + ] + }, + { + "name": "Texturina", + "fontFamily": "Texturina, serif", + "slug": "wp-font-lib-texturina", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYG_Ug25riW1OD.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYGvUg25riW1OD.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2fGGvUg25riW1OD.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYGvUg25riW1OD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eqGvUg25riW1OD.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2dGHfUg25riW1OD.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2d_HfUg25riW1OD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYHfUg25riW1OD.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cxHfUg25riW1OD.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1i0Z7AXkODN94.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1j0Z7AXkODN94.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWUNj0Z7AXkODN94.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1j0Z7AXkODN94.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWS9j0Z7AXkODN94.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWcNk0Z7AXkODN94.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWfpk0Z7AXkODN94.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1k0Z7AXkODN94.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWbRk0Z7AXkODN94.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Texturina" + } + ] + }, + { + "name": "Thasadith", + "fontFamily": "Thasadith, sans-serif", + "slug": "wp-font-lib-thasadith", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/thasadith/v9/mtG44_1TIqPYrd_f5R1YsEkU0CWuFw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Thasadith" + }, + { + "src": "http://fonts.gstatic.com/s/thasadith/v9/mtG-4_1TIqPYrd_f5R1oskMQ8iC-F1ZE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Thasadith" + }, + { + "src": "http://fonts.gstatic.com/s/thasadith/v9/mtG94_1TIqPYrd_f5R1gDGYw2A6yHk9d8w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Thasadith" + }, + { + "src": "http://fonts.gstatic.com/s/thasadith/v9/mtGj4_1TIqPYrd_f5R1osnus3QS2PEpN8zxA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Thasadith" + } + ] + }, + { + "name": "The Girl Next Door", + "fontFamily": "The Girl Next Door, cursive", + "slug": "wp-font-lib-the-girl-next-door", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/thegirlnextdoor/v18/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIV7t7w6bE2A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "The Girl Next Door" + } + ] + }, + { + "name": "The Nautigal", + "fontFamily": "The Nautigal, cursive", + "slug": "wp-font-lib-the-nautigal", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/thenautigal/v3/VdGZAZ8ZH51Lvng9fQV2bfKr5wVk09Se5Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "The Nautigal" + }, + { + "src": "http://fonts.gstatic.com/s/thenautigal/v3/VdGGAZ8ZH51Lvng9fQV2bfKTWypA2_-C7LoS7g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "The Nautigal" + } + ] + }, + { + "name": "Tienne", + "fontFamily": "Tienne, serif", + "slug": "wp-font-lib-tienne", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tienne/v20/AYCKpX7pe9YCRP0LkEPHSFNyxw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tienne" + }, + { + "src": "http://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zLGzjQHhuzvef5Q.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tienne" + }, + { + "src": "http://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zFG7jQHhuzvef5Q.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Tienne" + } + ] + }, + { + "name": "Tillana", + "fontFamily": "Tillana, cursive", + "slug": "wp-font-lib-tillana", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tillana/v11/VuJxdNvf35P4qJ1OeKbXOIFneRo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tillana" + }, + { + "src": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQFL-HIlMZRNcp0o.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Tillana" + }, + { + "src": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQH75HIlMZRNcp0o.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Tillana" + }, + { + "src": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQBr4HIlMZRNcp0o.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tillana" + }, + { + "src": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQAb7HIlMZRNcp0o.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Tillana" + } + ] + }, + { + "name": "Tilt Neon", + "fontFamily": "Tilt Neon, system-ui", + "slug": "wp-font-lib-tilt-neon", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tiltneon/v8/E21L_d7gguXdwD9LEFY2WCeElCNtd-eBqpHp1TzrkJSmwpj5ndxquXK9WualJ9DS.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tilt Neon" + } + ] + }, + { + "name": "Tilt Prism", + "fontFamily": "Tilt Prism, system-ui", + "slug": "wp-font-lib-tilt-prism", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tiltprism/v9/5h11iZgyPHoZ3YikNzWGfWey2dCAZXT-bH9V4VGn-FJ7tLI25oc_rIbwoTSrn86NKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tilt Prism" + } + ] + }, + { + "name": "Tilt Warp", + "fontFamily": "Tilt Warp, system-ui", + "slug": "wp-font-lib-tilt-warp", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tiltwarp/v10/AlZc_zVDs5XpmO7yn3w7flUoytXJp3z29uEwmEMLEJljLXvT8UJSZTBxAVfMGOPb.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tilt Warp" + } + ] + }, + { + "name": "Timmana", + "fontFamily": "Timmana, sans-serif", + "slug": "wp-font-lib-timmana", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/timmana/v12/6xKvdShfL9yK-rvpCmvbKHwJUOM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Timmana" + } + ] + }, + { + "name": "Tinos", + "fontFamily": "Tinos, serif", + "slug": "wp-font-lib-tinos", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tinos/v24/buE4poGnedXvwgX8dGVh8TI-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tinos" + }, + { + "src": "http://fonts.gstatic.com/s/tinos/v24/buE2poGnedXvwjX-fmFD9CI-4NU.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tinos" + }, + { + "src": "http://fonts.gstatic.com/s/tinos/v24/buE1poGnedXvwj1AW0Fp2i43-cxL.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tinos" + }, + { + "src": "http://fonts.gstatic.com/s/tinos/v24/buEzpoGnedXvwjX-Rt1s0CoV_NxLeiw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Tinos" + } + ] + }, + { + "name": "Tiro Bangla", + "fontFamily": "Tiro Bangla, serif", + "slug": "wp-font-lib-tiro-bangla", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirobangla/v6/IFSgHe1Tm95E3O8b5i2V8MG9-UPeuz4i.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/tirobangla/v6/IFSiHe1Tm95E3O8b5i2V8PG_80f8vi4imBM.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Bangla" + } + ] + }, + { + "name": "Tiro Devanagari Hindi", + "fontFamily": "Tiro Devanagari Hindi, serif", + "slug": "wp-font-lib-tiro-devanagari-hindi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirodevanagarihindi/v5/55xyezN7P8T4e0_CfIJrwdodg9HoYw0i-M9fSOkOfG0Y3A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Devanagari Hindi" + }, + { + "src": "http://fonts.gstatic.com/s/tirodevanagarihindi/v5/55x8ezN7P8T4e0_CfIJrwdodg9HoYw0i-M9vSuMKXmgI3F_o.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Devanagari Hindi" + } + ] + }, + { + "name": "Tiro Devanagari Marathi", + "fontFamily": "Tiro Devanagari Marathi, serif", + "slug": "wp-font-lib-tiro-devanagari-marathi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1xPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkotDrDJYM2lAZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Devanagari Marathi" + }, + { + "src": "http://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1zPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkouDpBpIu30AZbUY.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Devanagari Marathi" + } + ] + }, + { + "name": "Tiro Devanagari Sanskrit", + "fontFamily": "Tiro Devanagari Sanskrit, serif", + "slug": "wp-font-lib-tiro-devanagari-sanskrit", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoAzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59pEoEqgtOh0w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Devanagari Sanskrit" + }, + { + "src": "http://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoGzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59ZEIsuoNax06MM.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Devanagari Sanskrit" + } + ] + }, + { + "name": "Tiro Gurmukhi", + "fontFamily": "Tiro Gurmukhi, serif", + "slug": "wp-font-lib-tiro-gurmukhi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirogurmukhi/v6/x3dmckXSYq-Uqjc048JUF7Jvly7HAQsyA2Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/tirogurmukhi/v6/x3d4ckXSYq-Uqjc048JUF7JvpyzNBSk3E2YljQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Gurmukhi" + } + ] + }, + { + "name": "Tiro Kannada", + "fontFamily": "Tiro Kannada, serif", + "slug": "wp-font-lib-tiro-kannada", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirokannada/v6/CSR44ztKmvqaDxEDJFY7CIYKSPl6tOU9Eg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/tirokannada/v6/CSRm4ztKmvqaDxEDJFY7CIY6SvN-luAtEnKp.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Kannada" + } + ] + }, + { + "name": "Tiro Tamil", + "fontFamily": "Tiro Tamil, serif", + "slug": "wp-font-lib-tiro-tamil", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirotamil/v10/m8JXjfVIf7OT22n3M-S_ULRvamODxdI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/tirotamil/v10/m8JVjfVIf7OT22n3M-S_YLZlbkGG1dKEDw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Tamil" + } + ] + }, + { + "name": "Tiro Telugu", + "fontFamily": "Tiro Telugu, serif", + "slug": "wp-font-lib-tiro-telugu", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirotelugu/v7/aFTQ7PxlZWk2EPiSymjXdKSNQqn0X0BO.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/tirotelugu/v7/aFTS7PxlZWk2EPiSymjXdJSPSK3WWlBOoas.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Telugu" + } + ] + }, + { + "name": "Titan One", + "fontFamily": "Titan One, system-ui", + "slug": "wp-font-lib-titan-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/titanone/v13/mFTzWbsGxbbS_J5cQcjykzIn2Etikg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Titan One" + } + ] + }, + { + "name": "Titillium Web", + "fontFamily": "Titillium Web, sans-serif", + "slug": "wp-font-lib-titillium-web", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffAzHKIx5YrSYqWM.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbewI1zZpaduWMmxA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffGjEKIx5YrSYqWM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbepI5zZpaduWMmxA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPecZTIAOhVxoMyOr9n_E7fRMTsDIRSfr0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCKZXbr2BsA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIx5YrSYqWM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzZpaduWMmxA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIx5YrSYqWM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZpaduWMmxA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffEDBKIx5YrSYqWM.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Titillium Web" + } + ] + }, + { + "name": "Tomorrow", + "fontFamily": "Tomorrow, sans-serif", + "slug": "wp-font-lib-tomorrow", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLgrETNbFtZCeGqgR2xe2XiKMiokE4.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLirETNbFtZCeGqgRXXQwHoLOqtgE5h0A.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0dWkXIBsShiVd4.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ63JDMCDjEd4yVY.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR15WUXIBsShiVd4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ8nKDMCDjEd4yVY.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLmrETNbFtZCeGqgSXVcWHALdio.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLgrETNbFtZCeGqgRXXe2XiKMiokE4.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0hWEXIBsShiVd4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ5HLDMCDjEd4yVY.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0NX0XIBsShiVd4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ73MDMCDjEd4yVY.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR1pXkXIBsShiVd4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ9nNDMCDjEd4yVY.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR11XUXIBsShiVd4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ8XODMCDjEd4yVY.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR1RXEXIBsShiVd4.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ-HPDMCDjEd4yVY.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + } + ] + }, + { + "name": "Tourney", + "fontFamily": "Tourney, system-ui", + "slug": "wp-font-lib-tourney", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQByZTp1I1LcGA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQFyZTp1I1LcGA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GZwFyZTp1I1LcGA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQFyZTp1I1LcGA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GCwFyZTp1I1LcGA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G5wZyZTp1I1LcGA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G3gZyZTp1I1LcGA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQZyZTp1I1LcGA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GkAZyZTp1I1LcGA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJzBxAVfMGOPb.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaJjBxAVfMGOPb.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8ULEJjBxAVfMGOPb.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJjBxAVfMGOPb.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKoJjBxAVfMGOPb.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJEITBxAVfMGOPb.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJ9ITBxAVfMGOPb.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaITBxAVfMGOPb.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIzITBxAVfMGOPb.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Tourney" + } + ] + }, + { + "name": "Trade Winds", + "fontFamily": "Trade Winds, system-ui", + "slug": "wp-font-lib-trade-winds", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tradewinds/v17/AYCPpXPpYNIIT7h8-QenM3Jq7PKP5Z_G.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Trade Winds" + } + ] + }, + { + "name": "Train One", + "fontFamily": "Train One, system-ui", + "slug": "wp-font-lib-train-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/trainone/v13/gyB-hwkiNtc6KnxUVjWHOqbZRY7JVQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Train One" + } + ] + }, + { + "name": "Trirong", + "fontFamily": "Trirong, serif", + "slug": "wp-font-lib-trirong", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3EqXNgp8wxdOdOl-go3YRl6ujngw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3CqXNgp8wxdOdOn44QuY5hyO33g8IY.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOl0QJ_a5L5uH-mts.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QFa9B4sP7itsB5g.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlyAK_a5L5uH-mts.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QcaxB4sP7itsB5g.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3GqXNgp8wxdOdOr4wi2aZg-ug.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3EqXNgp8wxdOdOn44o3YRl6ujngw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOl3gL_a5L5uH-mts.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QKa1B4sP7itsB5g.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOl1QM_a5L5uH-mts.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QBapB4sP7itsB5g.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlzAN_a5L5uH-mts.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QYatB4sP7itsB5g.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlywO_a5L5uH-mts.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QfahB4sP7itsB5g.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlwgP_a5L5uH-mts.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QWalB4sP7itsB5g.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Trirong" + } + ] + }, + { + "name": "Trispace", + "fontFamily": "Trispace, sans-serif", + "slug": "wp-font-lib-trispace", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9qoQl0zHugpt0.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Trispace" + }, + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9roQl0zHugpt0.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Trispace" + }, + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbCFroQl0zHugpt0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Trispace" + }, + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9roQl0zHugpt0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Trispace" + }, + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbE1roQl0zHugpt0.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Trispace" + }, + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbKFsoQl0zHugpt0.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Trispace" + }, + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbJhsoQl0zHugpt0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Trispace" + }, + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9soQl0zHugpt0.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Trispace" + } + ] + }, + { + "name": "Trocchi", + "fontFamily": "Trocchi, serif", + "slug": "wp-font-lib-trocchi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/trocchi/v15/qWcqB6WkuIDxDZLcDrtUvMeTYD0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Trocchi" + } + ] + }, + { + "name": "Trochut", + "fontFamily": "Trochut, system-ui", + "slug": "wp-font-lib-trochut", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/trochut/v20/CHyjV-fDDlP9bDIw5nSIfVIPLns.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Trochut" + }, + { + "src": "http://fonts.gstatic.com/s/trochut/v20/CHyhV-fDDlP9bDIw1naCeXAKPns8jw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Trochut" + }, + { + "src": "http://fonts.gstatic.com/s/trochut/v20/CHymV-fDDlP9bDIw3sinWVokMnIllmA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Trochut" + } + ] + }, + { + "name": "Truculenta", + "fontFamily": "Truculenta, sans-serif", + "slug": "wp-font-lib-truculenta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAjswcFHnJMMhg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAiswcFHnJMMhg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMg4iswcFHnJMMhg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAiswcFHnJMMhg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMmIiswcFHnJMMhg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMo4lswcFHnJMMhg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMrclswcFHnJMMhg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAlswcFHnJMMhg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMvklswcFHnJMMhg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Truculenta" + } + ] + }, + { + "name": "Trykker", + "fontFamily": "Trykker, serif", + "slug": "wp-font-lib-trykker", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/trykker/v21/KtktALyWZJXudUPzhNnoOd2j22U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Trykker" + } + ] + }, + { + "name": "Tsukimi Rounded", + "fontFamily": "Tsukimi Rounded, sans-serif", + "slug": "wp-font-lib-tsukimi-rounded", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tsukimirounded/v8/sJoZ3LJNksWZO0LvnZwkF3HtoB7VkVsqN7MT3T9X8g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Tsukimi Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/tsukimirounded/v8/sJoc3LJNksWZO0LvnZwkF3HtoB7tPXMOP5gP1A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tsukimi Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/tsukimirounded/v8/sJoZ3LJNksWZO0LvnZwkF3HtoB7VyVoqN7MT3T9X8g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Tsukimi Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/tsukimirounded/v8/sJoZ3LJNksWZO0LvnZwkF3HtoB7V5V0qN7MT3T9X8g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Tsukimi Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/tsukimirounded/v8/sJoZ3LJNksWZO0LvnZwkF3HtoB7VgVwqN7MT3T9X8g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tsukimi Rounded" + } + ] + }, + { + "name": "Tulpen One", + "fontFamily": "Tulpen One, system-ui", + "slug": "wp-font-lib-tulpen-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tulpenone/v21/dFa6ZfeC474skLgesc0CWj0w_HyIRlE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tulpen One" + } + ] + }, + { + "name": "Turret Road", + "fontFamily": "Turret Road, system-ui", + "slug": "wp-font-lib-turret-road", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0ONEdeLYk1Mq3ap.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Turret Road" + }, + { + "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0PpEteLYk1Mq3ap.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Turret Road" + }, + { + "src": "http://fonts.gstatic.com/s/turretroad/v7/pxiAypMgpcBFjE84Zv-fE3tFOvODSVFF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Turret Road" + }, + { + "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0OxE9eLYk1Mq3ap.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Turret Road" + }, + { + "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0P5FdeLYk1Mq3ap.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Turret Road" + }, + { + "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0PlFteLYk1Mq3ap.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Turret Road" + } + ] + }, + { + "name": "Twinkle Star", + "fontFamily": "Twinkle Star, cursive", + "slug": "wp-font-lib-twinkle-star", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/twinklestar/v3/pe0pMI6IL4dPoFl9LGEmY6WaA_Rue1UwVg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Twinkle Star" + } + ] + }, + { + "name": "Ubuntu", + "fontFamily": "Ubuntu, sans-serif", + "slug": "wp-font-lib-ubuntu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoC1CzTt2aMH4V_gg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Ubuntu" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZftWyIPYBvgpUI.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Ubuntu" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgo6eAT3v02QFg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ubuntu" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCu6KVjbNBYlgoKeg7znUiAFpxm.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Ubuntu" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3Tt2aMH4V_gg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Ubuntu" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejYHtGyIPYBvgpUI.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Ubuntu" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvTt2aMH4V_gg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Ubuntu" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZPsmyIPYBvgpUI.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Ubuntu" + } + ] + }, + { + "name": "Ubuntu Condensed", + "fontFamily": "Ubuntu Condensed, sans-serif", + "slug": "wp-font-lib-ubuntu-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ubuntucondensed/v16/u-4k0rCzjgs5J7oXnJcM_0kACGMtf-fVqvHoJXw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ubuntu Condensed" + } + ] + }, + { + "name": "Ubuntu Mono", + "fontFamily": "Ubuntu Mono, monospace", + "slug": "wp-font-lib-ubuntu-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ubuntumono/v15/KFOjCneDtsqEr0keqCMhbBc9AMX6lJBP.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ubuntu Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntumono/v15/KFOhCneDtsqEr0keqCMhbCc_CsHYkYBPY3o.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Ubuntu Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntumono/v15/KFO-CneDtsqEr0keqCMhbC-BL-Hyv4xGemO1.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Ubuntu Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntumono/v15/KFO8CneDtsqEr0keqCMhbCc_Mn33tYhkf3O1GVg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Ubuntu Mono" + } + ] + }, + { + "name": "Uchen", + "fontFamily": "Uchen, serif", + "slug": "wp-font-lib-uchen", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/uchen/v7/nKKZ-GokGZ1baIaSEQGodLxA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Uchen" + } + ] + }, + { + "name": "Ultra", + "fontFamily": "Ultra, serif", + "slug": "wp-font-lib-ultra", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ultra/v19/zOLy4prXmrtY-tT6yLOD6NxF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ultra" + } + ] + }, + { + "name": "Unbounded", + "fontFamily": "Unbounded, system-ui", + "slug": "wp-font-lib-unbounded", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG65jx043HgP6LR0Y.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Unbounded" + }, + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG60bx043HgP6LR0Y.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Unbounded" + }, + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6xjx043HgP6LR0Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Unbounded" + }, + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6yrx043HgP6LR0Y.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Unbounded" + }, + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG68b2043HgP6LR0Y.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Unbounded" + }, + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6__2043HgP6LR0Y.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Unbounded" + }, + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG65j2043HgP6LR0Y.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Unbounded" + }, + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG67H2043HgP6LR0Y.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Unbounded" + } + ] + }, + { + "name": "Uncial Antiqua", + "fontFamily": "Uncial Antiqua, system-ui", + "slug": "wp-font-lib-uncial-antiqua", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/uncialantiqua/v20/N0bM2S5WOex4OUbESzoESK-i-PfRS5VBBSSF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Uncial Antiqua" + } + ] + }, + { + "name": "Underdog", + "fontFamily": "Underdog, system-ui", + "slug": "wp-font-lib-underdog", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/underdog/v23/CHygV-jCElj7diMroVSiU14GN2Il.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Underdog" + } + ] + }, + { + "name": "Unica One", + "fontFamily": "Unica One, system-ui", + "slug": "wp-font-lib-unica-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/unicaone/v15/DPEuYwWHyAYGVTSmalshdtffuEY7FA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Unica One" + } + ] + }, + { + "name": "UnifrakturCook", + "fontFamily": "UnifrakturCook, system-ui", + "slug": "wp-font-lib-unifrakturcook", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/unifrakturcook/v19/IurA6Yli8YOdcoky-0PTTdkm56n05Uw13ILXs-h6.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "UnifrakturCook" + } + ] + }, + { + "name": "UnifrakturMaguntia", + "fontFamily": "UnifrakturMaguntia, system-ui", + "slug": "wp-font-lib-unifrakturmaguntia", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/unifrakturmaguntia/v16/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVun2xNNgNa1A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "UnifrakturMaguntia" + } + ] + }, + { + "name": "Unkempt", + "fontFamily": "Unkempt, system-ui", + "slug": "wp-font-lib-unkempt", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/unkempt/v19/2EbnL-Z2DFZue0DSSYYf8z2Yt_c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Unkempt" + }, + { + "src": "http://fonts.gstatic.com/s/unkempt/v19/2EbiL-Z2DFZue0DScTow1zWzq_5uT84.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Unkempt" + } + ] + }, + { + "name": "Unlock", + "fontFamily": "Unlock, system-ui", + "slug": "wp-font-lib-unlock", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/unlock/v24/7Au-p_8ykD-cDl7GKAjSwkUVOQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Unlock" + } + ] + }, + { + "name": "Unna", + "fontFamily": "Unna, serif", + "slug": "wp-font-lib-unna", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/unna/v21/AYCEpXzofN0NCpgBlGHCWFM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Unna" + }, + { + "src": "http://fonts.gstatic.com/s/unna/v21/AYCKpXzofN0NOpoLkEPHSFNyxw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Unna" + }, + { + "src": "http://fonts.gstatic.com/s/unna/v21/AYCLpXzofN0NMiQusGnpRFpr3vc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Unna" + }, + { + "src": "http://fonts.gstatic.com/s/unna/v21/AYCJpXzofN0NOpozLGzjQHhuzvef5Q.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Unna" + } + ] + }, + { + "name": "Updock", + "fontFamily": "Updock, cursive", + "slug": "wp-font-lib-updock", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/updock/v2/nuF4D_3dVZ70UI9SjLK3602XBw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Updock" + } + ] + }, + { + "name": "Urbanist", + "fontFamily": "Urbanist, sans-serif", + "slug": "wp-font-lib-urbanist", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx8fFpOrS8SlKw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSx4fFpOrS8SlKw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDlR4fFpOrS8SlKw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx4fFpOrS8SlKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqD-R4fFpOrS8SlKw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDFRkfFpOrS8SlKw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDLBkfFpOrS8SlKw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSxkfFpOrS8SlKw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDYhkfFpOrS8SlKw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VJmvacG1K4S1.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113VZmvacG1K4S1.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA12pVZmvacG1K4S1.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VZmvacG1K4S1.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA13FVZmvacG1K4S1.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10pUpmvacG1K4S1.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10QUpmvacG1K4S1.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113UpmvacG1K4S1.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA11eUpmvacG1K4S1.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Urbanist" + } + ] + }, + { + "name": "VT323", + "fontFamily": "VT323, monospace", + "slug": "wp-font-lib-vt323", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vt323/v17/pxiKyp0ihIEF2hsYHpT2dkNE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "VT323" + } + ] + }, + { + "name": "Vampiro One", + "fontFamily": "Vampiro One, system-ui", + "slug": "wp-font-lib-vampiro-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vampiroone/v18/gokqH6DoDl5yXvJytFsdLkqnsvhIor3K.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vampiro One" + } + ] + }, + { + "name": "Varela", + "fontFamily": "Varela, sans-serif", + "slug": "wp-font-lib-varela", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/varela/v16/DPEtYwqExx0AWHXJBBQFfvzDsQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Varela" + } + ] + }, + { + "name": "Varela Round", + "fontFamily": "Varela Round, sans-serif", + "slug": "wp-font-lib-varela-round", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/varelaround/v20/w8gdH283Tvk__Lua32TysjIvoMGOD9gxZw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Varela Round" + } + ] + }, + { + "name": "Varta", + "fontFamily": "Varta, sans-serif", + "slug": "wp-font-lib-varta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x96j4EirE-9PGLfQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Varta" + }, + { + "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9tD4EirE-9PGLfQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Varta" + }, + { + "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9hj4EirE-9PGLfQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Varta" + }, + { + "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9ajkEirE-9PGLfQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Varta" + }, + { + "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9UzkEirE-9PGLfQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Varta" + } + ] + }, + { + "name": "Vast Shadow", + "fontFamily": "Vast Shadow, system-ui", + "slug": "wp-font-lib-vast-shadow", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vastshadow/v15/pe0qMImKOZ1V62ZwbVY9dfe6Kdpickwp.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vast Shadow" + } + ] + }, + { + "name": "Vazirmatn", + "fontFamily": "Vazirmatn, sans-serif", + "slug": "wp-font-lib-vazirmatn", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgyOReZ72DF_QY.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklegzOReZ72DF_QY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklTYzOReZ72DF_QY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgzOReZ72DF_QY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklVozOReZ72DF_QY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklbY0OReZ72DF_QY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklY80OReZ72DF_QY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRkleg0OReZ72DF_QY.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklcE0OReZ72DF_QY.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + } + ] + }, + { + "name": "Vesper Libre", + "fontFamily": "Vesper Libre, serif", + "slug": "wp-font-lib-vesper-libre", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6CNxyWnf-uxPdXDHUD_Rd4D0-N2qIWVQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vesper Libre" + }, + { + "src": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdA-2ap0okKXKvPlw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Vesper Libre" + }, + { + "src": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAs2Cp0okKXKvPlw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Vesper Libre" + }, + { + "src": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAi2Kp0okKXKvPlw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Vesper Libre" + } + ] + }, + { + "name": "Viaoda Libre", + "fontFamily": "Viaoda Libre, system-ui", + "slug": "wp-font-lib-viaoda-libre", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/viaodalibre/v15/vEFW2_lWCgoR6OKuRz9kcRVJb2IY2tOHXg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Viaoda Libre" + } + ] + }, + { + "name": "Vibes", + "fontFamily": "Vibes, system-ui", + "slug": "wp-font-lib-vibes", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vibes/v14/QdVYSTsmIB6tmbd3HpbsuBlh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vibes" + } + ] + }, + { + "name": "Vibur", + "fontFamily": "Vibur, cursive", + "slug": "wp-font-lib-vibur", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vibur/v23/DPEiYwmEzw0QRjTpLjoJd-Xa.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vibur" + } + ] + }, + { + "name": "Vidaloka", + "fontFamily": "Vidaloka, serif", + "slug": "wp-font-lib-vidaloka", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vidaloka/v18/7cHrv4c3ipenMKlEass8yn4hnCci.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vidaloka" + } + ] + }, + { + "name": "Viga", + "fontFamily": "Viga, sans-serif", + "slug": "wp-font-lib-viga", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/viga/v14/xMQbuFFdSaiX_QIjD4e2OX8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Viga" + } + ] + }, + { + "name": "Vina Sans", + "fontFamily": "Vina Sans, system-ui", + "slug": "wp-font-lib-vina-sans", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vinasans/v2/m8JQjfZKf6-d2273MP7zcJ5BZmqa3A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vina Sans" + } + ] + }, + { + "name": "Voces", + "fontFamily": "Voces, system-ui", + "slug": "wp-font-lib-voces", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/voces/v20/-F6_fjJyLyU8d4PBBG7YpzlJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Voces" + } + ] + }, + { + "name": "Volkhov", + "fontFamily": "Volkhov, serif", + "slug": "wp-font-lib-volkhov", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/volkhov/v17/SlGQmQieoJcKemNeQTIOhHxzcD0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Volkhov" + }, + { + "src": "http://fonts.gstatic.com/s/volkhov/v17/SlGSmQieoJcKemNecTAEgF52YD0NYw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Volkhov" + }, + { + "src": "http://fonts.gstatic.com/s/volkhov/v17/SlGVmQieoJcKemNeeY4hoHRYbDQUego.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Volkhov" + }, + { + "src": "http://fonts.gstatic.com/s/volkhov/v17/SlGXmQieoJcKemNecTA8PHFSaBYRagrQrA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Volkhov" + } + ] + }, + { + "name": "Vollkorn", + "fontFamily": "Vollkorn, serif", + "slug": "wp-font-lib-vollkorn", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2MHGuGWOdEbD63w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2AnGuGWOdEbD63w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df27nauGWOdEbD63w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df213auGWOdEbD63w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2sHauGWOdEbD63w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2mXauGWOdEbD63w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJGWmmZM7Xq34g9.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJ0WmmZM7Xq34g9.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKYXWmZM7Xq34g9.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKhXWmZM7Xq34g9.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLGXWmZM7Xq34g9.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLvXWmZM7Xq34g9.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Vollkorn" + } + ] + }, + { + "name": "Vollkorn SC", + "fontFamily": "Vollkorn SC, serif", + "slug": "wp-font-lib-vollkorn-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_v6-zQ3rXpceZj9cqnVhF5NH-iSq_E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vollkorn SC" + }, + { + "src": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVimhGluqYbPN5Yjn.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Vollkorn SC" + }, + { + "src": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVinFG1uqYbPN5Yjn.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Vollkorn SC" + }, + { + "src": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVin9GVuqYbPN5Yjn.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Vollkorn SC" + } + ] + }, + { + "name": "Voltaire", + "fontFamily": "Voltaire, sans-serif", + "slug": "wp-font-lib-voltaire", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/voltaire/v18/1Pttg8PcRfSblAvGvQooYKVnBOif.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Voltaire" + } + ] + }, + { + "name": "Vujahday Script", + "fontFamily": "Vujahday Script, cursive", + "slug": "wp-font-lib-vujahday-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vujahdayscript/v4/RWmQoKGA8fEkrIPtSZ3_J7er2dUiDEtvAlaMKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vujahday Script" + } + ] + }, + { + "name": "Waiting for the Sunrise", + "fontFamily": "Waiting for the Sunrise, cursive", + "slug": "wp-font-lib-waiting-for-the-sunrise", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/waitingforthesunrise/v16/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZQ9h_ZYk5J.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Waiting for the Sunrise" + } + ] + }, + { + "name": "Wallpoet", + "fontFamily": "Wallpoet, system-ui", + "slug": "wp-font-lib-wallpoet", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/wallpoet/v16/f0X10em2_8RnXVVdUNbu7cXP8L8G.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Wallpoet" + } + ] + }, + { + "name": "Walter Turncoat", + "fontFamily": "Walter Turncoat, cursive", + "slug": "wp-font-lib-walter-turncoat", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/walterturncoat/v19/snfys0Gs98ln43n0d-14ULoToe67YB2dQ5ZPqQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Walter Turncoat" + } + ] + }, + { + "name": "Warnes", + "fontFamily": "Warnes, system-ui", + "slug": "wp-font-lib-warnes", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/warnes/v25/pONn1hc0GsW6sW5OpiC2o6Lkqg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Warnes" + } + ] + }, + { + "name": "Water Brush", + "fontFamily": "Water Brush, cursive", + "slug": "wp-font-lib-water-brush", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/waterbrush/v2/AYCPpXPqc8cJWLhp4hywKHJq7PKP5Z_G.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Water Brush" + } + ] + }, + { + "name": "Waterfall", + "fontFamily": "Waterfall, cursive", + "slug": "wp-font-lib-waterfall", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/waterfall/v3/MCoRzAfo293fACdFKcwY2rH8D_EZwA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Waterfall" + } + ] + }, + { + "name": "Wellfleet", + "fontFamily": "Wellfleet, system-ui", + "slug": "wp-font-lib-wellfleet", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/wellfleet/v20/nuF7D_LfQJb3VYgX6eyT42aLDhO2HA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Wellfleet" + } + ] + }, + { + "name": "Wendy One", + "fontFamily": "Wendy One, sans-serif", + "slug": "wp-font-lib-wendy-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/wendyone/v15/2sDcZGJOipXfgfXV5wgDb2-4C7wFZQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Wendy One" + } + ] + }, + { + "name": "Whisper", + "fontFamily": "Whisper, cursive", + "slug": "wp-font-lib-whisper", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/whisper/v2/q5uHsoqtKftx74K9milCBxxdmYU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Whisper" + } + ] + }, + { + "name": "WindSong", + "fontFamily": "WindSong, cursive", + "slug": "wp-font-lib-windsong", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/windsong/v8/KR1WBsyu-P-GFEW57r95HdG6vjH3.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "WindSong" + }, + { + "src": "http://fonts.gstatic.com/s/windsong/v8/KR1RBsyu-P-GFEW57oeNNPWylS3-jVXm.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "WindSong" + } + ] + }, + { + "name": "Wire One", + "fontFamily": "Wire One, sans-serif", + "slug": "wp-font-lib-wire-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/wireone/v24/qFdH35Wah5htUhV75WGiWdrCwwcJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Wire One" + } + ] + }, + { + "name": "Wix Madefor Display", + "fontFamily": "Wix Madefor Display, sans-serif", + "slug": "wp-font-lib-wix-madefor-display", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYFhYltkv_3HQKgh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Display" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYFTYltkv_3HQKgh.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Display" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYG_ZVtkv_3HQKgh.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Display" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYGGZVtkv_3HQKgh.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Display" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYHhZVtkv_3HQKgh.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Display" + } + ] + }, + { + "name": "Wix Madefor Text", + "fontFamily": "Wix Madefor Text, sans-serif", + "slug": "wp-font-lib-wix-madefor-text", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cK_NOeFgpRt9rN5.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3dw_GiJBP86N53IY.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cKNNOeFgpRt9rN5.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3dz3GiJBP86N53IY.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cJhM-eFgpRt9rN5.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3d9HBiJBP86N53IY.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cJYM-eFgpRt9rN5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3d-jBiJBP86N53IY.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cI_M-eFgpRt9rN5.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3d4_BiJBP86N53IY.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Wix Madefor Text" + } + ] + }, + { + "name": "Work Sans", + "fontFamily": "Work Sans, sans-serif", + "slug": "wp-font-lib-work-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nWNigDp6_cOyA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nXNigDp6_cOyA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32KxfXNigDp6_cOyA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNigDp6_cOyA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K3vXNigDp6_cOyA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQNigDp6_cOyA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K67QNigDp6_cOyA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nQNigDp6_cOyA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K-DQNigDp6_cOyA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3moJo43ZKyDSQQ.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmsJo43ZKyDSQQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUgGsJo43ZKyDSQQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3msJo43ZKyDSQQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU7GsJo43ZKyDSQQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUAGwJo43ZKyDSQQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUOWwJo43ZKyDSQQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmwJo43ZKyDSQQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUd2wJo43ZKyDSQQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Work Sans" + } + ] + }, + { + "name": "Xanh Mono", + "fontFamily": "Xanh Mono, monospace", + "slug": "wp-font-lib-xanh-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/xanhmono/v17/R70YjykVmvKCep-vWhSYmACQXzLhTg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Xanh Mono" + }, + { + "src": "http://fonts.gstatic.com/s/xanhmono/v17/R70ejykVmvKCep-vWhSomgqUfTfxTo24.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Xanh Mono" + } + ] + }, + { + "name": "Yaldevi", + "fontFamily": "Yaldevi, sans-serif", + "slug": "wp-font-lib-yaldevi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpfxJzvobxLCBJkS.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Yaldevi" + }, + { + "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpcvJzvobxLCBJkS.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Yaldevi" + }, + { + "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdxJzvobxLCBJkS.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yaldevi" + }, + { + "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdDJzvobxLCBJkS.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Yaldevi" + }, + { + "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpevIDvobxLCBJkS.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Yaldevi" + }, + { + "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpeWIDvobxLCBJkS.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Yaldevi" + } + ] + }, + { + "name": "Yanone Kaffeesatz", + "fontFamily": "Yanone Kaffeesatz, sans-serif", + "slug": "wp-font-lib-yanone-kaffeesatz", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftodtWpcGuLCnXkVA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Yanone Kaffeesatz" + }, + { + "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoqNWpcGuLCnXkVA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Yanone Kaffeesatz" + }, + { + "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIfto9tWpcGuLCnXkVA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yanone Kaffeesatz" + }, + { + "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoxNWpcGuLCnXkVA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Yanone Kaffeesatz" + }, + { + "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoKNKpcGuLCnXkVA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Yanone Kaffeesatz" + }, + { + "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoEdKpcGuLCnXkVA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Yanone Kaffeesatz" + } + ] + }, + { + "name": "Yantramanav", + "fontFamily": "Yantramanav, sans-serif", + "slug": "wp-font-lib-yantramanav", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yantramanav/v11/flU-Rqu5zY00QEpyWJYWN5-QXeNzDB41rZg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Yantramanav" + }, + { + "src": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59Yf8NZIhI8tIHh.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Yantramanav" + }, + { + "src": "http://fonts.gstatic.com/s/yantramanav/v11/flU8Rqu5zY00QEpyWJYWN6f0V-dRCQ41.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yantramanav" + }, + { + "src": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN58AfsNZIhI8tIHh.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Yantramanav" + }, + { + "src": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59IeMNZIhI8tIHh.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Yantramanav" + }, + { + "src": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59wesNZIhI8tIHh.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Yantramanav" + } + ] + }, + { + "name": "Yatra One", + "fontFamily": "Yatra One, system-ui", + "slug": "wp-font-lib-yatra-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yatraone/v14/C8ch4copsHzj8p7NaF0xw1OBbRDvXw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yatra One" + } + ] + }, + { + "name": "Yellowtail", + "fontFamily": "Yellowtail, cursive", + "slug": "wp-font-lib-yellowtail", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yellowtail/v18/OZpGg_pnoDtINPfRIlLotlzNwED-b4g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yellowtail" + } + ] + }, + { + "name": "Yeon Sung", + "fontFamily": "Yeon Sung, system-ui", + "slug": "wp-font-lib-yeon-sung", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yeonsung/v20/QldMNTpbohAGtsJvUn6xSVNazqx2xg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yeon Sung" + } + ] + }, + { + "name": "Yeseva One", + "fontFamily": "Yeseva One, system-ui", + "slug": "wp-font-lib-yeseva-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yesevaone/v20/OpNJno4ck8vc-xYpwWWxpipfWhXD00c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yeseva One" + } + ] + }, + { + "name": "Yesteryear", + "fontFamily": "Yesteryear, cursive", + "slug": "wp-font-lib-yesteryear", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yesteryear/v14/dg4g_p78rroaKl8kRKo1r7wHTwonmyw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yesteryear" + } + ] + }, + { + "name": "Yomogi", + "fontFamily": "Yomogi, cursive", + "slug": "wp-font-lib-yomogi", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yomogi/v8/VuJwdNrS2ZL7rpoPWIz5NIh-YA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yomogi" + } + ] + }, + { + "name": "Yrsa", + "fontFamily": "Yrsa, serif", + "slug": "wp-font-lib-yrsa", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCjASNNV9rRPfrKu.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCieSNNV9rRPfrKu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCisSNNV9rRPfrKu.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaChAT9NV9rRPfrKu.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCh5T9NV9rRPfrKu.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC2UW_LBte6KuGEo.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WCzsW_LBte6KuGEo.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WCwkW_LBte6KuGEo.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC-UR_LBte6KuGEo.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC9wR_LBte6KuGEo.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Yrsa" + } + ] + }, + { + "name": "Ysabeau", + "fontFamily": "Ysabeau, sans-serif", + "slug": "wp-font-lib-ysabeau", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OWCTYwI8Gcw6Oi.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7MWCDYwI8Gcw6Oi.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7PICDYwI8Gcw6Oi.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OWCDYwI8Gcw6Oi.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OkCDYwI8Gcw6Oi.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7NIDzYwI8Gcw6Oi.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7NxDzYwI8Gcw6Oi.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7MWDzYwI8Gcw6Oi.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7M_DzYwI8Gcw6Oi.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS95yKcW-xrOiIUw.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS15zKcW-xrOiIUw.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS4BzKcW-xrOiIUw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS95zKcW-xrOiIUw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS-xzKcW-xrOiIUw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeSwB0KcW-xrOiIUw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeSzl0KcW-xrOiIUw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS150KcW-xrOiIUw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS3d0KcW-xrOiIUw.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + } + ] + }, + { + "name": "Yuji Boku", + "fontFamily": "Yuji Boku, serif", + "slug": "wp-font-lib-yuji-boku", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yujiboku/v5/P5sAzZybeNzXsA9xj1Fkjb2r2dgvJA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yuji Boku" + } + ] + }, + { + "name": "Yuji Hentaigana Akari", + "fontFamily": "Yuji Hentaigana Akari, cursive", + "slug": "wp-font-lib-yuji-hentaigana-akari", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yujihentaiganaakari/v11/cY9bfiyVT0VB6QuhWKOrpr6z58lnb_zYFnLIRTzODYALaA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yuji Hentaigana Akari" + } + ] + }, + { + "name": "Yuji Hentaigana Akebono", + "fontFamily": "Yuji Hentaigana Akebono, cursive", + "slug": "wp-font-lib-yuji-hentaigana-akebono", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yujihentaiganaakebono/v12/EJRGQhkhRNwM-RtitGUwh930GU_f5KAlkuL0wQy9NKXRzrrF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yuji Hentaigana Akebono" + } + ] + }, + { + "name": "Yuji Mai", + "fontFamily": "Yuji Mai, serif", + "slug": "wp-font-lib-yuji-mai", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yujimai/v5/ZgNQjPxdJ7DEHrS0gC38hmHmNpCO.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yuji Mai" + } + ] + }, + { + "name": "Yuji Syuku", + "fontFamily": "Yuji Syuku, serif", + "slug": "wp-font-lib-yuji-syuku", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yujisyuku/v5/BngNUXdTV3vO6Lw5ApOPqPfgwqiA-Rk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yuji Syuku" + } + ] + }, + { + "name": "Yusei Magic", + "fontFamily": "Yusei Magic, sans-serif", + "slug": "wp-font-lib-yusei-magic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yuseimagic/v12/yYLt0hbAyuCmoo5wlhPkpjHR-tdfcIT_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yusei Magic" + } + ] + }, + { + "name": "ZCOOL KuaiLe", + "fontFamily": "ZCOOL KuaiLe, sans-serif", + "slug": "wp-font-lib-zcool-kuaile", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zcoolkuaile/v19/tssqApdaRQokwFjFJjvM6h2WpozzoXhC2g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "ZCOOL KuaiLe" + } + ] + }, + { + "name": "ZCOOL QingKe HuangYou", + "fontFamily": "ZCOOL QingKe HuangYou, sans-serif", + "slug": "wp-font-lib-zcool-qingke-huangyou", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zcoolqingkehuangyou/v15/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mRIi_28c8bHWA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "ZCOOL QingKe HuangYou" + } + ] + }, + { + "name": "ZCOOL XiaoWei", + "fontFamily": "ZCOOL XiaoWei, sans-serif", + "slug": "wp-font-lib-zcool-xiaowei", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zcoolxiaowei/v14/i7dMIFFrTRywPpUVX9_RJyM1YFKQHwyVd3U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "ZCOOL XiaoWei" + } + ] + }, + { + "name": "Zen Antique", + "fontFamily": "Zen Antique, serif", + "slug": "wp-font-lib-zen-antique", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenantique/v12/AYCPpXPnd91Ma_Zf-Ri2JXJq7PKP5Z_G.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Antique" + } + ] + }, + { + "name": "Zen Antique Soft", + "fontFamily": "Zen Antique Soft, serif", + "slug": "wp-font-lib-zen-antique-soft", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenantiquesoft/v12/DtV4JwqzSL1q_KwnEWMc_3xfgW6ihwBmkui5HNg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Antique Soft" + } + ] + }, + { + "name": "Zen Dots", + "fontFamily": "Zen Dots, system-ui", + "slug": "wp-font-lib-zen-dots", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zendots/v10/XRXX3ICfm00IGoesQeaETM_FcCIG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Dots" + } + ] + }, + { + "name": "Zen Kaku Gothic Antique", + "fontFamily": "Zen Kaku Gothic Antique, sans-serif", + "slug": "wp-font-lib-zen-kaku-gothic-antique", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cM9TarWJtyZyGU.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic Antique" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLQKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB21-g3RKjc4d7.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic Antique" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22dU9DarWJtyZyGU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic Antique" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cc8jarWJtyZyGU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic Antique" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22ck8DarWJtyZyGU.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic Antique" + } + ] + }, + { + "name": "Zen Kaku Gothic New", + "fontFamily": "Zen Kaku Gothic New, sans-serif", + "slug": "wp-font-lib-zen-kaku-gothic-new", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqpdKaWTSTGlMyd8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic New" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMYW2drQpDw0GjzrVNFf_valaDBcznOkjtiTWz5UGA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic New" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqs9LaWTSTGlMyd8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic New" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqodNaWTSTGlMyd8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic New" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqr9PaWTSTGlMyd8.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic New" + } + ] + }, + { + "name": "Zen Kurenaido", + "fontFamily": "Zen Kurenaido, sans-serif", + "slug": "wp-font-lib-zen-kurenaido", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenkurenaido/v13/3XFsEr0515BK2u6UUptu_gWJZfz22PRLd0U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Kurenaido" + } + ] + }, + { + "name": "Zen Loop", + "fontFamily": "Zen Loop, system-ui", + "slug": "wp-font-lib-zen-loop", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenloop/v7/h0GrssK16UsnJwHsEK9zqwzX5vOG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Loop" + }, + { + "src": "http://fonts.gstatic.com/s/zenloop/v7/h0GtssK16UsnJwHsEJ9xoQj14-OGJ0w.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Zen Loop" + } + ] + }, + { + "name": "Zen Maru Gothic", + "fontFamily": "Zen Maru Gothic, sans-serif", + "slug": "wp-font-lib-zen-maru-gothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-cQWpCPJqa_ajlvw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Zen Maru Gothic" + }, + { + "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0SIpIxzW5b-RxT-6A8jWAtCp-k7UJmNLGG9A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Maru Gothic" + }, + { + "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-cGWtCPJqa_ajlvw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Zen Maru Gothic" + }, + { + "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-cUW1CPJqa_ajlvw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Zen Maru Gothic" + }, + { + "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-caW9CPJqa_ajlvw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Zen Maru Gothic" + } + ] + }, + { + "name": "Zen Old Mincho", + "fontFamily": "Zen Old Mincho, serif", + "slug": "wp-font-lib-zen-old-mincho", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss0ApVaYytLwxTqcxfMyBveyYb3g31S2s8p.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Old Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb4Dqlla8dMgPgBu.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Zen Old Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb4vrVla8dMgPgBu.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Zen Old Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb5LrFla8dMgPgBu.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Zen Old Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb5zrlla8dMgPgBu.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Zen Old Mincho" + } + ] + }, + { + "name": "Zen Tokyo Zoo", + "fontFamily": "Zen Tokyo Zoo, system-ui", + "slug": "wp-font-lib-zen-tokyo-zoo", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zentokyozoo/v7/NGSyv5ffC0J_BK6aFNtr6sRv8a1uRWe9amg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Tokyo Zoo" + } + ] + }, + { + "name": "Zeyada", + "fontFamily": "Zeyada, cursive", + "slug": "wp-font-lib-zeyada", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zeyada/v15/11hAGpPTxVPUbgZDNGatWKaZ3g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zeyada" + } + ] + }, + { + "name": "Zhi Mang Xing", + "fontFamily": "Zhi Mang Xing, cursive", + "slug": "wp-font-lib-zhi-mang-xing", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zhimangxing/v17/f0Xw0ey79sErYFtWQ9a2rq-g0actfektIJ0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zhi Mang Xing" + } + ] + }, + { + "name": "Zilla Slab", + "fontFamily": "Zilla Slab, serif", + "slug": "wp-font-lib-zilla-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYpEY2HSjWlhzbaw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CVHapXnp2fazkfg.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa6ZfeM_74wlPZtksIFWj0w_HyIRlE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa4ZfeM_74wlPZtksIFaj86-F6NVlFqdA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYskZ2HSjWlhzbaw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CDHepXnp2fazkfg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYuUe2HSjWlhzbaw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CIHCpXnp2fazkfg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYoEf2HSjWlhzbaw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CRHGpXnp2fazkfg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Zilla Slab" + } + ] + }, + { + "name": "Zilla Slab Highlight", + "fontFamily": "Zilla Slab Highlight, system-ui", + "slug": "wp-font-lib-zilla-slab-highlight", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zillaslabhighlight/v17/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtIY2DwSXlM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zilla Slab Highlight" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslabhighlight/v17/gNMUW2BrTpK8-inLtBJgMMfbm6uNVDvRxiP0TET4YmVF0Mb6.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Zilla Slab Highlight" + } + ] + } + ], + "categories": [ + "sans-serif", + "serif", + "display", + "handwriting", + "monospace" + ] +} From d4703884109c8ba514f2968961dd7bfd2becd227 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Mon, 17 Jul 2023 13:55:44 -0300 Subject: [PATCH 002/169] load font library --- lib/load.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/load.php b/lib/load.php index ea9aabd5427184..4d58166c575681 100644 --- a/lib/load.php +++ b/lib/load.php @@ -163,6 +163,10 @@ function gutenberg_is_experiment_enabled( $name ) { require __DIR__ . '/experimental/fonts-api/bc-layer/class-wp-web-fonts.php'; } +// Fonts Library +require __DIR__ . '/experimental/fonts-library/class-wp-fonts-library.php'; +require __DIR__ . '/experimental/fonts-library/class-wp-rest-fonts-library-controller.php'; + // Plugin specific code. require __DIR__ . '/script-loader.php'; require __DIR__ . '/global-styles-and-settings.php'; From df4708c6d457afb10721bc7780fc2483b9d2cbea Mon Sep 17 00:00:00 2001 From: Jeff Ong Date: Mon, 17 Jul 2023 16:38:00 -0400 Subject: [PATCH 003/169] Format php. --- .../fonts-library/class-wp-fonts-library.php | 846 +++++++++--------- ...class-wp-rest-fonts-library-controller.php | 285 +++--- 2 files changed, 564 insertions(+), 567 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 273116f2925e12..ab2c775aa2c3ec 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -5,74 +5,72 @@ * * @package gutenberg * @since x.x.x - * */ class WP_Font_Family { - const ALLOWED_FONT_MIME_TYPES = array( + const ALLOWED_FONT_MIME_TYPES = array( 'otf' => 'font/otf', 'ttf' => 'font/ttf', 'woff' => 'font/woff', 'woff2' => 'font/woff2', ); - private $data; - private $relative_fonts_path; + private $data; + private $relative_fonts_path; - public function __construct( $font_family = array() ) { - $this->data = $font_family; - $this->relative_fonts_path = content_url('/fonts/'); + public function __construct( $font_family = array() ) { + $this->data = $font_family; + $this->relative_fonts_path = content_url( '/fonts/' ); } - /** - * Returns the font family data - * - * @return array An array in fontFamily theme.json format. - */ - public function get_data() { - return $this->data; - } - - /** - * Returns the font family data - * - * @return string fontFamily in theme.json format as stringified JSON. - */ - public function get_data_as_json () { - return wp_json_encode( $this->get_data() ); - } - - /** - * Returns if the font family has font faces defined - * - * @return bool true if the font family has font faces defined, false otherwise. - */ - public function has_font_faces () { - return ( - isset( $this->data['fontFace'] ) - && is_array( $this->data['fontFace'] ) - && !empty( $this->data['fontFace'] ) - ); - } - - /** - * Returns the absolute path to the fonts directory. - * - * @return string Path to the fonts directory. - */ - static public function get_fonts_directory () { - return path_join( WP_CONTENT_DIR, 'fonts' ); - } - - /** - * Define WP_FONTS_DIR constant to make it available to the rest of the code. - * - */ - static public function define_fonts_directory () { - define( 'WP_FONTS_DIR', self::get_fonts_directory() ); - } - - /** + /** + * Returns the font family data + * + * @return array An array in fontFamily theme.json format. + */ + public function get_data() { + return $this->data; + } + + /** + * Returns the font family data + * + * @return string fontFamily in theme.json format as stringified JSON. + */ + public function get_data_as_json() { + return wp_json_encode( $this->get_data() ); + } + + /** + * Returns if the font family has font faces defined + * + * @return bool true if the font family has font faces defined, false otherwise. + */ + public function has_font_faces() { + return ( + isset( $this->data['fontFace'] ) + && is_array( $this->data['fontFace'] ) + && ! empty( $this->data['fontFace'] ) + ); + } + + /** + * Returns the absolute path to the fonts directory. + * + * @return string Path to the fonts directory. + */ + static public function get_fonts_directory() { + return path_join( WP_CONTENT_DIR, 'fonts' ); + } + + /** + * Define WP_FONTS_DIR constant to make it available to the rest of the code. + */ + static public function define_fonts_directory() { + define( 'WP_FONTS_DIR', self::get_fonts_directory() ); + } + + /** * Returns whether the given file has a font MIME type. * * @param string $filepath The file to check. @@ -83,374 +81,374 @@ static private function has_font_mime_type( $filepath ) { return in_array( $filetype['type'], self::ALLOWED_FONT_MIME_TYPES, true ); } - /** - * Removes font family assets - * - * @param array $font_family - * @return bool True if assets were removed, false otherwise. - */ - private function remove_font_family_assets () { - if ( $this->has_font_faces() ) { - foreach ( $this->data['fontFace'] as $font_face ) { - $were_assets_removed = $this->delete_font_face_assets( $font_face ); - if ( $were_assets_removed === false ) { - return false; - } - } - } - return true; - } - - /** - * Removes a font family from the database and deletes its assets. - * - * @return bool|WP_Error True if the font family was uninstalled, WP_Error otherwise. - */ - public function uninstall () { - $post = $this->get_data_from_post(); - if ( $post === null ) { - return new WP_Error( 'font_family_not_found', __( 'The font family could not be found.') ); - } - $were_assets_removed = $this->remove_font_family_assets(); - if ( $were_assets_removed === true ) { - $was_post_deleted = wp_delete_post ( $post->ID, true ); - if ( $was_post_deleted === null ) { - return new WP_Error( 'font_family_not_deleted', __( 'The font family could not be deleted.') ); - } - } - return true; - } - - /** - * Deletes a specified font asset file from the fonts directory. - * - * @param string $src The path of the font asset file to delete. - * @return bool Whether the file was deleted. - */ - static private function delete_asset( $src ) { - $filename = basename( $src ); - $file_path = path_join( WP_FONTS_DIR, $filename ); - - if ( ! file_exists( $file_path ) ) { - return false; - } - wp_delete_file( $file_path ); - - // If the file still exists after trying to delete it, return false - if ( file_exists( $file_path ) ) { - return false; - } - - // return true if the file was deleted - return true; - } - - /** - * Deletes all font face asset files associated with a given font face. - * - * @param array $font_face The font face array containing the 'src' attribute with the file path(s) to be deleted. - */ - static private function delete_font_face_assets( $font_face ) { - $srcs = !empty ( $font_face['src'] ) && is_array( $font_face['src'] ) - ? $font_face['src'] - : array( $font_face['src'] ); - foreach ( $srcs as $src ) { - $was_asset_removed = self::delete_asset($src); - if ( ! $was_asset_removed ) { - // Bail if any of the assets could not be removed - return false; - } - } - return true; - } - - /** - * Downloads a font asset. - * - * Downloads a font asset from a specified source URL and saves it to the font directory. - * - * @param string $src The source URL of the font asset to be downloaded. - * @param string $filename The filename to save the downloaded font asset as. - * @return string|bool The relative path to the downloaded font asset. False if the download failed. - */ - private function download_asset( $src, $filename ) { - $file_path = path_join( WP_FONTS_DIR, $filename ); - - // Checks if the file to be downloaded has a font mime type - if ( ! self::has_font_mime_type( $file_path ) ) { - return false; - } - - // Downloads the font asset or returns false - $temp_file = download_url( $src ); - if ( is_wp_error( $temp_file ) ) { - @unlink( $temp_file ); - return false; - } - - // Moves the file to the fonts directory or return false - $renamed_file = rename( $temp_file, $file_path ); - // Cleans the temp file - @unlink( $temp_file ); - - if ( ! $renamed_file ) { - return false; - } - - // Returns the relative path to the downloaded font asset to be used as font face src - return "{$this->relative_fonts_path}{$filename}"; - } - - /** - * Merges two fonts and their font faces. - * - * @param array $font1 The first font to merge. - * @param array $font2 The second font to merge. - * - * @return array The merged font. - */ - static private function merge_fonts ( $font1, $font2 ) { - $font_faces_1 = $font1['fontFace'] ?? array(); - $font_faces_2 = $font2['fontFace'] ?? array(); - - $merged_font_faces = array_merge( $font_faces_1, $font_faces_2 ); - $merged_font_faces = array_map("unserialize", array_unique(array_map("serialize", $merged_font_faces))); - - $merged_font = array_merge( $font1, $font2 ); - $merged_fonts = array_unique( $merged_font ); - $merged_font['fontFace'] = $merged_font_faces; - - return $merged_font; - } - - /** - * Move an uploaded font face asset from temp folder to the wp fonts directory - * - * This is used when uploading local fonts - * - * @param array $font_face Font face to download. - * @return array New font face with all assets downloaded and referenced in the font face definition. - */ - private function move_font_face_asset ( $font_face, $file ) { - $new_font_face = $font_face; - $filename = self::get_filename_from_font_face( $font_face, $file['name'] ); - $filepath= path_join( WP_FONTS_DIR, $filename ); - - // Remove the uploaded font asset reference from the font face definition because it is no longer needed. - unset( $new_font_face['file'] ); - - // If the filepath has not a font mime type, we don't move the file and return the font face definition without src to be ignored later - if ( ! self::has_font_mime_type( $filepath ) ) { - return $new_font_face; - } - - // Move the uploaded font asset from the temp folder to the wp fonts directory - $file_was_moved = move_uploaded_file( $file['tmp_name'], $filepath ); - - if ( $file_was_moved ) { - // If the file was successfully moved, we update the font face definition to reference the new file location - $new_font_face['src'] = "{$this->relative_fonts_path}{$filename}"; - } - - return $new_font_face; - } - - /** - * Sanitizes the font family data using WP_Theme_JSON. - * - * @param array $font A font family definition. - * @return array A sanitized font family defintion. - */ - private function sanitize() { - // Creates the structure of theme.json array with the new fonts - $fonts_json = array( - 'version' => '2', - 'settings' => array( - 'typography' => array( - 'fontFamilies' => array( $this->data ) - ) - ) - ); - // Creates a new WP_Theme_JSON object with the new fonts to mmake profit of the sanitization and validation - $theme_json = new WP_Theme_JSON( $fonts_json ); - $theme_data = $theme_json->get_data(); - $sanitized_font = !empty( $theme_data['settings']['typography']['fontFamilies'] ) - ? $theme_data['settings']['typography']['fontFamilies'][0] - : array(); - $this->data = $sanitized_font; - return $this->data; - } - - /** - * Generates a filename for a font face asset. - * - * Creates a filename for a font face asset using font family, style, weight and extension information. - * - * @param array $font_face The font face array containing 'fontFamily', 'fontStyle', and 'fontWeight' attributes. - * @param string $url The URL of the font face asset, used to derive the file extension. - * @param int $i Optional counter for appending to the filename, default is 1. - * @return string The generated filename for the font face asset. - */ - static private function get_filename_from_font_face ( $font_face, $url, $i=1 ) { - $extension = pathinfo( $url, PATHINFO_EXTENSION ); - $family = sanitize_title( $font_face['fontFamily'] ); - $style = sanitize_title( $font_face['fontStyle'] ); - $weight = sanitize_title( $font_face['fontWeight'] ); - $filename = "{$family}_{$style}_{$weight}"; - if ($i > 1) { - $filename .= "_{$i}"; - } - return "{$filename}.{$extension}"; - } - - /** - * Downloads font face assets. - * - * Downloads the font face asset(s) associated with a font face. It works with both single - * source URLs and arrays of multiple source URLs. - * - * @param array $font_face The font face array containing the 'src' attribute with the source URL(s) of the assets. - * @return array The modified font face array with the new source URL(s) to the downloaded assets. - */ - private function download_font_face_assets ( $font_face ) { - $new_font_face = $font_face; - $srcs = !empty ( $font_face['src'] ) && is_array( $font_face['src'] ) - ? $font_face['src'] - : array( $font_face['src'] ); - $new_font_face['src'] = array(); - $i = 0; - foreach ( $srcs as $src ) { - $filename = self::get_filename_from_font_face( $font_face, $src, $i++ ); - $new_src = $this->download_asset($src, $filename); - if ( $new_src ) { - $new_font_face['src'][] = $new_src; - } - } - if ( count( $new_font_face['src'] ) === 1 ) { - $new_font_face['src'] = $new_font_face['src'][0]; - } - return $new_font_face; - } - - - public function download_or_move_font_faces ( $files ) { - if ( $this->has_font_faces() ) { - $new_font_faces = array(); - foreach ( $this->data['fontFace'] as $font_face ) { - if ( empty( $files ) ){ - // If we are installing local fonts, we need to move the font face assets from the temp folder to the wp fonts directory - $new_font_face = $this->download_font_face_assets( $font_face ); - } else { - // If we are installing google fonts, we need to download the font face assets - $new_font_face = $this->move_font_face_asset( $font_face, $files[ $font_face[ 'file' ] ] ); - } - // If the font face assets were successfully downloaded, we add the font face to the new font. - // Font faces with failed downloads are not added to the new font - if ( !empty ( $new_font_face['src'] ) ){ - $new_font_faces[] = $new_font_face; - } - } - if ( !empty ( $new_font_faces ) ) { - $this->data['fontFace'] = $new_font_faces; - return true; - } - return WP_Error( 'font_face_download_failed', __( 'The font face assets could not be written.' ) ); - } - return true; - } - - /** - * Get the post for a font family - * - * @return WP_Post|null The post for this font family object or null if the post does not exist - */ - private function get_font_post () { - $args = array ( - 'post_type' => 'wp_fonts_library', - 'post_name' => $this->data['slug'], - 'name' => $this->data['slug'], - 'posts_per_page' => 1, - ); - - $posts_query = new WP_Query( $args ); - - if ( $posts_query->have_posts() ) { - $post = $posts_query->posts[0]; - return $post; - } - - return null; - } - - /** - * Get the data for this object from the database and set it to the data property - * - * @return WP_Post|null The post for this font family object or null if the post does not exist - */ - private function get_data_from_post () { - $post = $this->get_font_post(); - if ( $post ) { - $data = json_decode( $post->post_content, true ); - $this->data = $data; - return $post; - } - return null; - } - - /** - * Create a post for a font family - * - * @param array $font_family - * @return int - */ - private function create_font_post () { - $post = array( - 'post_title' => $this->data['name'], - 'post_name' => $this->data['slug'], - 'post_type' => 'wp_fonts_library', - 'post_content' => $this->get_data_as_json(), - 'post_status' => 'publish', - ); - $post_id = wp_insert_post( $post ); - if ( $post_id === 0 ) { - return WP_Error( 'font_post_creation_failed', __( 'Font post creation failed' ) ); - } - return $post_id; - } - - /** - * @param array $font_family - * @param WP_Post $post - * @return int - */ - private function update_font_post ( $post ) { - $post_font_data = json_decode( $post->post_content, true ); - $new_data = $this->merge_fonts( $post_font_data, $this->data ); - $this->data = $new_data; - - $post = array( - 'ID' => $post->ID, - 'post_content' => $this->get_data_as_json(), - ); - - $post_id = wp_update_post( $post ); - return $post_id; - } - - /** - * Creates a post for a font in the fonts library if it doesn't exist, or updates it if it does. - * - * @param array $font_family - * @return WP_Post - */ - public function create_or_update_font_post () { - $post = $this->get_font_post(); - if ( $post ) { - return $this->update_font_post( $post ); - } - return $this->create_font_post(); - } + /** + * Removes font family assets + * + * @param array $font_family + * @return bool True if assets were removed, false otherwise. + */ + private function remove_font_family_assets() { + if ( $this->has_font_faces() ) { + foreach ( $this->data['fontFace'] as $font_face ) { + $were_assets_removed = $this->delete_font_face_assets( $font_face ); + if ( $were_assets_removed === false ) { + return false; + } + } + } + return true; + } + + /** + * Removes a font family from the database and deletes its assets. + * + * @return bool|WP_Error True if the font family was uninstalled, WP_Error otherwise. + */ + public function uninstall() { + $post = $this->get_data_from_post(); + if ( $post === null ) { + return new WP_Error( 'font_family_not_found', __( 'The font family could not be found.' ) ); + } + $were_assets_removed = $this->remove_font_family_assets(); + if ( $were_assets_removed === true ) { + $was_post_deleted = wp_delete_post( $post->ID, true ); + if ( $was_post_deleted === null ) { + return new WP_Error( 'font_family_not_deleted', __( 'The font family could not be deleted.' ) ); + } + } + return true; + } + + /** + * Deletes a specified font asset file from the fonts directory. + * + * @param string $src The path of the font asset file to delete. + * @return bool Whether the file was deleted. + */ + static private function delete_asset( $src ) { + $filename = basename( $src ); + $file_path = path_join( WP_FONTS_DIR, $filename ); + + if ( ! file_exists( $file_path ) ) { + return false; + } + wp_delete_file( $file_path ); + + // If the file still exists after trying to delete it, return false + if ( file_exists( $file_path ) ) { + return false; + } + + // return true if the file was deleted + return true; + } + + /** + * Deletes all font face asset files associated with a given font face. + * + * @param array $font_face The font face array containing the 'src' attribute with the file path(s) to be deleted. + */ + static private function delete_font_face_assets( $font_face ) { + $srcs = ! empty( $font_face['src'] ) && is_array( $font_face['src'] ) + ? $font_face['src'] + : array( $font_face['src'] ); + foreach ( $srcs as $src ) { + $was_asset_removed = self::delete_asset( $src ); + if ( ! $was_asset_removed ) { + // Bail if any of the assets could not be removed + return false; + } + } + return true; + } + + /** + * Downloads a font asset. + * + * Downloads a font asset from a specified source URL and saves it to the font directory. + * + * @param string $src The source URL of the font asset to be downloaded. + * @param string $filename The filename to save the downloaded font asset as. + * @return string|bool The relative path to the downloaded font asset. False if the download failed. + */ + private function download_asset( $src, $filename ) { + $file_path = path_join( WP_FONTS_DIR, $filename ); + + // Checks if the file to be downloaded has a font mime type + if ( ! self::has_font_mime_type( $file_path ) ) { + return false; + } + + // Downloads the font asset or returns false + $temp_file = download_url( $src ); + if ( is_wp_error( $temp_file ) ) { + @unlink( $temp_file ); + return false; + } + + // Moves the file to the fonts directory or return false + $renamed_file = rename( $temp_file, $file_path ); + // Cleans the temp file + @unlink( $temp_file ); + + if ( ! $renamed_file ) { + return false; + } + + // Returns the relative path to the downloaded font asset to be used as font face src + return "{$this->relative_fonts_path}{$filename}"; + } + + /** + * Merges two fonts and their font faces. + * + * @param array $font1 The first font to merge. + * @param array $font2 The second font to merge. + * + * @return array The merged font. + */ + static private function merge_fonts( $font1, $font2 ) { + $font_faces_1 = $font1['fontFace'] ?? array(); + $font_faces_2 = $font2['fontFace'] ?? array(); + + $merged_font_faces = array_merge( $font_faces_1, $font_faces_2 ); + $merged_font_faces = array_map( 'unserialize', array_unique( array_map( 'serialize', $merged_font_faces ) ) ); + + $merged_font = array_merge( $font1, $font2 ); + $merged_fonts = array_unique( $merged_font ); + $merged_font['fontFace'] = $merged_font_faces; + + return $merged_font; + } + + /** + * Move an uploaded font face asset from temp folder to the wp fonts directory + * + * This is used when uploading local fonts + * + * @param array $font_face Font face to download. + * @return array New font face with all assets downloaded and referenced in the font face definition. + */ + private function move_font_face_asset( $font_face, $file ) { + $new_font_face = $font_face; + $filename = self::get_filename_from_font_face( $font_face, $file['name'] ); + $filepath = path_join( WP_FONTS_DIR, $filename ); + + // Remove the uploaded font asset reference from the font face definition because it is no longer needed. + unset( $new_font_face['file'] ); + + // If the filepath has not a font mime type, we don't move the file and return the font face definition without src to be ignored later + if ( ! self::has_font_mime_type( $filepath ) ) { + return $new_font_face; + } + + // Move the uploaded font asset from the temp folder to the wp fonts directory + $file_was_moved = move_uploaded_file( $file['tmp_name'], $filepath ); + + if ( $file_was_moved ) { + // If the file was successfully moved, we update the font face definition to reference the new file location + $new_font_face['src'] = "{$this->relative_fonts_path}{$filename}"; + } + + return $new_font_face; + } + + /** + * Sanitizes the font family data using WP_Theme_JSON. + * + * @param array $font A font family definition. + * @return array A sanitized font family defintion. + */ + private function sanitize() { + // Creates the structure of theme.json array with the new fonts + $fonts_json = array( + 'version' => '2', + 'settings' => array( + 'typography' => array( + 'fontFamilies' => array( $this->data ), + ), + ), + ); + // Creates a new WP_Theme_JSON object with the new fonts to mmake profit of the sanitization and validation + $theme_json = new WP_Theme_JSON( $fonts_json ); + $theme_data = $theme_json->get_data(); + $sanitized_font = ! empty( $theme_data['settings']['typography']['fontFamilies'] ) + ? $theme_data['settings']['typography']['fontFamilies'][0] + : array(); + $this->data = $sanitized_font; + return $this->data; + } + + /** + * Generates a filename for a font face asset. + * + * Creates a filename for a font face asset using font family, style, weight and extension information. + * + * @param array $font_face The font face array containing 'fontFamily', 'fontStyle', and 'fontWeight' attributes. + * @param string $url The URL of the font face asset, used to derive the file extension. + * @param int $i Optional counter for appending to the filename, default is 1. + * @return string The generated filename for the font face asset. + */ + static private function get_filename_from_font_face( $font_face, $url, $i = 1 ) { + $extension = pathinfo( $url, PATHINFO_EXTENSION ); + $family = sanitize_title( $font_face['fontFamily'] ); + $style = sanitize_title( $font_face['fontStyle'] ); + $weight = sanitize_title( $font_face['fontWeight'] ); + $filename = "{$family}_{$style}_{$weight}"; + if ( $i > 1 ) { + $filename .= "_{$i}"; + } + return "{$filename}.{$extension}"; + } + + /** + * Downloads font face assets. + * + * Downloads the font face asset(s) associated with a font face. It works with both single + * source URLs and arrays of multiple source URLs. + * + * @param array $font_face The font face array containing the 'src' attribute with the source URL(s) of the assets. + * @return array The modified font face array with the new source URL(s) to the downloaded assets. + */ + private function download_font_face_assets( $font_face ) { + $new_font_face = $font_face; + $srcs = ! empty( $font_face['src'] ) && is_array( $font_face['src'] ) + ? $font_face['src'] + : array( $font_face['src'] ); + $new_font_face['src'] = array(); + $i = 0; + foreach ( $srcs as $src ) { + $filename = self::get_filename_from_font_face( $font_face, $src, $i++ ); + $new_src = $this->download_asset( $src, $filename ); + if ( $new_src ) { + $new_font_face['src'][] = $new_src; + } + } + if ( count( $new_font_face['src'] ) === 1 ) { + $new_font_face['src'] = $new_font_face['src'][0]; + } + return $new_font_face; + } + + + public function download_or_move_font_faces( $files ) { + if ( $this->has_font_faces() ) { + $new_font_faces = array(); + foreach ( $this->data['fontFace'] as $font_face ) { + if ( empty( $files ) ) { + // If we are installing local fonts, we need to move the font face assets from the temp folder to the wp fonts directory + $new_font_face = $this->download_font_face_assets( $font_face ); + } else { + // If we are installing google fonts, we need to download the font face assets + $new_font_face = $this->move_font_face_asset( $font_face, $files[ $font_face['file'] ] ); + } + // If the font face assets were successfully downloaded, we add the font face to the new font. + // Font faces with failed downloads are not added to the new font + if ( ! empty( $new_font_face['src'] ) ) { + $new_font_faces[] = $new_font_face; + } + } + if ( ! empty( $new_font_faces ) ) { + $this->data['fontFace'] = $new_font_faces; + return true; + } + return WP_Error( 'font_face_download_failed', __( 'The font face assets could not be written.' ) ); + } + return true; + } + + /** + * Get the post for a font family + * + * @return WP_Post|null The post for this font family object or null if the post does not exist + */ + private function get_font_post() { + $args = array( + 'post_type' => 'wp_fonts_library', + 'post_name' => $this->data['slug'], + 'name' => $this->data['slug'], + 'posts_per_page' => 1, + ); + + $posts_query = new WP_Query( $args ); + + if ( $posts_query->have_posts() ) { + $post = $posts_query->posts[0]; + return $post; + } + + return null; + } + + /** + * Get the data for this object from the database and set it to the data property + * + * @return WP_Post|null The post for this font family object or null if the post does not exist + */ + private function get_data_from_post() { + $post = $this->get_font_post(); + if ( $post ) { + $data = json_decode( $post->post_content, true ); + $this->data = $data; + return $post; + } + return null; + } + + /** + * Create a post for a font family + * + * @param array $font_family + * @return int + */ + private function create_font_post() { + $post = array( + 'post_title' => $this->data['name'], + 'post_name' => $this->data['slug'], + 'post_type' => 'wp_fonts_library', + 'post_content' => $this->get_data_as_json(), + 'post_status' => 'publish', + ); + $post_id = wp_insert_post( $post ); + if ( $post_id === 0 ) { + return WP_Error( 'font_post_creation_failed', __( 'Font post creation failed' ) ); + } + return $post_id; + } + + /** + * @param array $font_family + * @param WP_Post $post + * @return int + */ + private function update_font_post( $post ) { + $post_font_data = json_decode( $post->post_content, true ); + $new_data = $this->merge_fonts( $post_font_data, $this->data ); + $this->data = $new_data; + + $post = array( + 'ID' => $post->ID, + 'post_content' => $this->get_data_as_json(), + ); + + $post_id = wp_update_post( $post ); + return $post_id; + } + + /** + * Creates a post for a font in the fonts library if it doesn't exist, or updates it if it does. + * + * @param array $font_family + * @return WP_Post + */ + public function create_or_update_font_post() { + $post = $this->get_font_post(); + if ( $post ) { + return $this->update_font_post( $post ); + } + return $this->create_font_post(); + } } -add_action( 'init', array( 'WP_Font_Family', 'define_fonts_directory' ) ); \ No newline at end of file +add_action( 'init', array( 'WP_Font_Family', 'define_fonts_directory' ) ); diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index e704b300ad8b3d..a87a16d01fada8 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -1,22 +1,21 @@ rest_base = 'fonts_library'; - $this->namespace = 'wp/v2'; - } + public function __construct() { + $this->rest_base = 'fonts_library'; + $this->namespace = 'wp/v2'; + } - public function register_routes () { - register_rest_route( + public function register_routes() { + register_rest_route( $this->namespace, '/' . $this->rest_base, array( @@ -28,7 +27,7 @@ public function register_routes () { ) ); - register_rest_route( + register_rest_route( $this->namespace, '/' . $this->rest_base, array( @@ -39,7 +38,7 @@ public function register_routes () { ), ) ); - register_rest_route( + register_rest_route( $this->namespace, '/' . $this->rest_base . '/google_fonts', array( @@ -51,30 +50,30 @@ public function register_routes () { ) ); - } + } - /** - * Removes a font family from the fonts library and all their assets - * + /** + * Removes a font family from the fonts library and all their assets + * * @param WP_REST_Request $request Full details about the request. * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure. */ - function uninstall_font_family ( $request ) { - $data = array ( - 'slug' => $request['slug'], - ); - $font = new WP_Font_Family ( $data ); - return new WP_REST_Response( $font->uninstall() ); - } - - /** - * Check if user has permissions to update the fonts library - * + function uninstall_font_family( $request ) { + $data = array( + 'slug' => $request['slug'], + ); + $font = new WP_Font_Family( $data ); + return new WP_REST_Response( $font->uninstall() ); + } + + /** + * Check if user has permissions to update the fonts library + * * @param WP_REST_Request $request Full details about the request. * @return true|WP_Error True if the request has write access for the item, WP_Error object otherwise. */ - function update_fonts_library_permissions_check ( $request ) { - if ( ! current_user_can( 'edit_theme_options' ) ) { + function update_fonts_library_permissions_check( $request ) { + if ( ! current_user_can( 'edit_theme_options' ) ) { return new WP_Error( 'rest_cannot_update_fonts_library', __( 'Sorry, you are not allowed to update the fonts library on this site.' ), @@ -83,33 +82,33 @@ function update_fonts_library_permissions_check ( $request ) { ) ); } - - // Create fonts directory if it doesn't exist - wp_mkdir_p( WP_FONTS_DIR ); - - // The update endpoints requires write access to the temp and the fonts directories - $temp_dir = get_temp_dir(); - if ( ! is_writable( $temp_dir ) || ! wp_is_writable( WP_FONTS_DIR ) ) { - return new WP_Error( - 'rest_cannot_write_fonts_folder', - __( 'Error: WordPress does not have permission to write the fonts folder on your server.' ), - array( - 'status' => 500, - ) - ); - } + + // Create fonts directory if it doesn't exist + wp_mkdir_p( WP_FONTS_DIR ); + + // The update endpoints requires write access to the temp and the fonts directories + $temp_dir = get_temp_dir(); + if ( ! is_writable( $temp_dir ) || ! wp_is_writable( WP_FONTS_DIR ) ) { + return new WP_Error( + 'rest_cannot_write_fonts_folder', + __( 'Error: WordPress does not have permission to write the fonts folder on your server.' ), + array( + 'status' => 500, + ) + ); + } return true; - } + } - /** - * Check if user has permissions to read the fonts library - * + /** + * Check if user has permissions to read the fonts library + * * @param WP_REST_Request $request Full details about the request. * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise. */ - function read_fonts_library_permissions_check ( $request ) { - if ( !current_user_can( 'edit_posts' ) ) { + function read_fonts_library_permissions_check( $request ) { + if ( ! current_user_can( 'edit_posts' ) ) { return new WP_Error( 'rest_cannot_read_fonts_library', __( 'Sorry, you are not allowed to read the fonts library on this site.' ), @@ -120,105 +119,105 @@ function read_fonts_library_permissions_check ( $request ) { } return true; - } - - /** - * Fetches the Google Fonts JSON file. - * - * Reads the "google-fonts.json" file from the file system and returns its content. - * - * @return WP_REST_Response|WP_Error The content of the "google-fonts.json" file wrapped in a WP_REST_Response object. - */ - function get_google_fonts () { - $file = file_get_contents( - path_join ( dirname(__FILE__),"google-fonts.json" ) - ); - if ( $file ) { - return new WP_REST_Response( json_decode( $file ) ); - } - return new WP_Error( - 'rest_cant_read_google_fonts', - __( 'Error reading Google Fonts JSON file.' ), - array( 'status' => 500 ) - ); - } - - /** - * Installs new fonts. - * - * Takes a request containing new fonts to install, downloads their assets, and adds them to the fonts library. - * - * @param WP_REST_Request $request The request object containing the new fonts to install in the request parameters. - * @return WP_REST_Response|WP_Error The updated fonts library post content. - */ - function install_fonts ( $request ) { - // Get new fonts to install - $fonts_to_install = $request->get_param('fontFamilies'); - - // As we are receiving form data, the font families are encoded as a string. - // We are using form data because local fonts need to use that format to attach the files in the request - $fonts_to_install = json_decode( $fonts_to_install, true ); - - if ( empty ( $fonts_to_install ) ) { - return new WP_Error( 'no_fonts_to_install', __( 'No fonts to install' ), array( 'status' => 400 ) ); - } - - // Get uploaded files (used when installing local fonts) - $files = $request->get_file_params(); - - // Download or move the new fonts assets to the fonts folder - $fonts = $this->download_or_move_fonts( $fonts_to_install, $files ); - - $response = array(); - if ( !empty( $fonts ) ){ - foreach ( $fonts as $font ) { - $font->create_or_update_font_post(); - $response[] = $font->get_data(); - } - - return new WP_REST_Response( $response ); - } - - return new WP_Error( 'error_installing_fonts', __( 'Error installing fonts. No font was installed.' ), array( 'status' => 500 ) ); - } - - /** - * Download or move new font assets to the fonts folder - * - * @param array $fonts Fonts to install. - * @param array $files Uploaded files (used when installing local fonts). - * - * @return array New fonts with all assets downloaded referenced in the font families definition. - */ - function download_or_move_fonts ( $font_families, $files ) { - $new_fonts = array(); - foreach ( $font_families as $font_family ) { - $font = new WP_Font_Family( $font_family ); - $were_assets_written = $font->download_or_move_font_faces( $files ); - // If the font face assets were successfully downloaded, we add the font to the new fonts array. - // Fonts without no font faces successfully downloaded are not added to the new fonts array - if ( $were_assets_written ) { - $new_fonts[] = $font; - } - } - return $new_fonts; - } - - function register_post_type () { - $args = array( - 'public' => true, - 'label' => 'Font Library', - 'show_in_rest' => true, - ); - register_post_type( 'wp_fonts_library', $args ); - } + } + + /** + * Fetches the Google Fonts JSON file. + * + * Reads the "google-fonts.json" file from the file system and returns its content. + * + * @return WP_REST_Response|WP_Error The content of the "google-fonts.json" file wrapped in a WP_REST_Response object. + */ + function get_google_fonts() { + $file = file_get_contents( + path_join( dirname( __FILE__ ), 'google-fonts.json' ) + ); + if ( $file ) { + return new WP_REST_Response( json_decode( $file ) ); + } + return new WP_Error( + 'rest_cant_read_google_fonts', + __( 'Error reading Google Fonts JSON file.' ), + array( 'status' => 500 ) + ); + } + + /** + * Installs new fonts. + * + * Takes a request containing new fonts to install, downloads their assets, and adds them to the fonts library. + * + * @param WP_REST_Request $request The request object containing the new fonts to install in the request parameters. + * @return WP_REST_Response|WP_Error The updated fonts library post content. + */ + function install_fonts( $request ) { + // Get new fonts to install + $fonts_to_install = $request->get_param( 'fontFamilies' ); + + // As we are receiving form data, the font families are encoded as a string. + // We are using form data because local fonts need to use that format to attach the files in the request + $fonts_to_install = json_decode( $fonts_to_install, true ); + + if ( empty( $fonts_to_install ) ) { + return new WP_Error( 'no_fonts_to_install', __( 'No fonts to install' ), array( 'status' => 400 ) ); + } + + // Get uploaded files (used when installing local fonts) + $files = $request->get_file_params(); + + // Download or move the new fonts assets to the fonts folder + $fonts = $this->download_or_move_fonts( $fonts_to_install, $files ); + + $response = array(); + if ( ! empty( $fonts ) ) { + foreach ( $fonts as $font ) { + $font->create_or_update_font_post(); + $response[] = $font->get_data(); + } + + return new WP_REST_Response( $response ); + } + + return new WP_Error( 'error_installing_fonts', __( 'Error installing fonts. No font was installed.' ), array( 'status' => 500 ) ); + } + + /** + * Download or move new font assets to the fonts folder + * + * @param array $fonts Fonts to install. + * @param array $files Uploaded files (used when installing local fonts). + * + * @return array New fonts with all assets downloaded referenced in the font families definition. + */ + function download_or_move_fonts( $font_families, $files ) { + $new_fonts = array(); + foreach ( $font_families as $font_family ) { + $font = new WP_Font_Family( $font_family ); + $were_assets_written = $font->download_or_move_font_faces( $files ); + // If the font face assets were successfully downloaded, we add the font to the new fonts array. + // Fonts without no font faces successfully downloaded are not added to the new fonts array + if ( $were_assets_written ) { + $new_fonts[] = $font; + } + } + return $new_fonts; + } + + function register_post_type() { + $args = array( + 'public' => true, + 'label' => 'Font Library', + 'show_in_rest' => true, + ); + register_post_type( 'wp_fonts_library', $args ); + } } -function fonts_library_register_routes () { +function fonts_library_register_routes() { $fonts_library = new WP_Fonts_Library_Controller(); $fonts_library->register_routes(); - $fonts_library->register_post_type(); + $fonts_library->register_post_type(); } -add_action( 'rest_api_init', 'fonts_library_register_routes' ); \ No newline at end of file +add_action( 'rest_api_init', 'fonts_library_register_routes' ); From ccc563660c33dd5e4fdd43efd46393211ae00b99 Mon Sep 17 00:00:00 2001 From: Jeff Ong Date: Mon, 17 Jul 2023 16:38:20 -0400 Subject: [PATCH 004/169] Update comment. --- lib/experimental/fonts-library/class-wp-fonts-library.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index ab2c775aa2c3ec..a0be2afdb59dd0 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -269,7 +269,7 @@ private function sanitize() { ), ), ); - // Creates a new WP_Theme_JSON object with the new fonts to mmake profit of the sanitization and validation + // Creates a new WP_Theme_JSON object with the new fonts to leverage sanitization and validation $theme_json = new WP_Theme_JSON( $fonts_json ); $theme_data = $theme_json->get_data(); $sanitized_font = ! empty( $theme_data['settings']['typography']['fontFamilies'] ) From da9d7ea8edcd873ad4bfc54d9b96942d636d1315 Mon Sep 17 00:00:00 2001 From: Jeff Ong Date: Mon, 17 Jul 2023 17:01:49 -0400 Subject: [PATCH 005/169] Fix array key merge. --- .../fonts-library/class-wp-fonts-library.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index a0be2afdb59dd0..3844687e40c012 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -212,11 +212,13 @@ static private function merge_fonts( $font1, $font2 ) { $font_faces_2 = $font2['fontFace'] ?? array(); $merged_font_faces = array_merge( $font_faces_1, $font_faces_2 ); - $merged_font_faces = array_map( 'unserialize', array_unique( array_map( 'serialize', $merged_font_faces ) ) ); - $merged_font = array_merge( $font1, $font2 ); - $merged_fonts = array_unique( $merged_font ); - $merged_font['fontFace'] = $merged_font_faces; + $serialized_faces = array_map('serialize', $merged_font_faces); + $unique_serialized_faces = array_unique($serialized_faces); + $unique_faces = array_map('unserialize', $unique_serialized_faces); + + $merged_font = array_merge( $font1, $font2 ); + $merged_font['fontFace'] = $unique_faces; return $merged_font; } From b318ab8379e506d34e083efd67783a1795fee852 Mon Sep 17 00:00:00 2001 From: Jeff Ong Date: Mon, 17 Jul 2023 17:02:43 -0400 Subject: [PATCH 006/169] Format php. --- lib/experimental/fonts-library/class-wp-fonts-library.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 3844687e40c012..95191bb8a3cb02 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -213,11 +213,11 @@ static private function merge_fonts( $font1, $font2 ) { $merged_font_faces = array_merge( $font_faces_1, $font_faces_2 ); - $serialized_faces = array_map('serialize', $merged_font_faces); - $unique_serialized_faces = array_unique($serialized_faces); - $unique_faces = array_map('unserialize', $unique_serialized_faces); + $serialized_faces = array_map( 'serialize', $merged_font_faces ); + $unique_serialized_faces = array_unique( $serialized_faces ); + $unique_faces = array_map( 'unserialize', $unique_serialized_faces ); - $merged_font = array_merge( $font1, $font2 ); + $merged_font = array_merge( $font1, $font2 ); $merged_font['fontFace'] = $unique_faces; return $merged_font; From 9c4f88e8af82fadfad0079aaa204ffcc8718ebc0 Mon Sep 17 00:00:00 2001 From: Vicente Canales Date: Mon, 17 Jul 2023 17:13:31 -0400 Subject: [PATCH 007/169] linting: lint and add comments where needed --- .../fonts-library/class-wp-fonts-library.php | 54 +++++++++++++------ 1 file changed, 37 insertions(+), 17 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 95191bb8a3cb02..7d5d21c99d0e97 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -15,9 +15,24 @@ class WP_Font_Family { 'woff2' => 'font/woff2', ); + /** + * Font family data + * + * @var array + */ private $data; + /** + * Relative path to the fonts directory + * + * @var string + */ private $relative_fonts_path; + /** + * WP_Font_Family constructor. + * + * @param array $font_family Font family data. + */ public function __construct( $font_family = array() ) { $this->data = $font_family; $this->relative_fonts_path = content_url( '/fonts/' ); @@ -84,7 +99,7 @@ static private function has_font_mime_type( $filepath ) { /** * Removes font family assets * - * @param array $font_family + * @param array $font_family The font family data. * @return bool True if assets were removed, false otherwise. */ private function remove_font_family_assets() { @@ -106,7 +121,7 @@ private function remove_font_family_assets() { */ public function uninstall() { $post = $this->get_data_from_post(); - if ( $post === null ) { + if ( null === $post ) { return new WP_Error( 'font_family_not_found', __( 'The font family could not be found.' ) ); } $were_assets_removed = $this->remove_font_family_assets(); @@ -174,28 +189,28 @@ static private function delete_font_face_assets( $font_face ) { private function download_asset( $src, $filename ) { $file_path = path_join( WP_FONTS_DIR, $filename ); - // Checks if the file to be downloaded has a font mime type + // Checks if the file to be downloaded has a font mime type. if ( ! self::has_font_mime_type( $file_path ) ) { return false; } - // Downloads the font asset or returns false + // Downloads the font asset or returns false. $temp_file = download_url( $src ); if ( is_wp_error( $temp_file ) ) { @unlink( $temp_file ); return false; } - // Moves the file to the fonts directory or return false + // Moves the file to the fonts directory or return false. $renamed_file = rename( $temp_file, $file_path ); - // Cleans the temp file + // Cleans the temp file. @unlink( $temp_file ); if ( ! $renamed_file ) { return false; } - // Returns the relative path to the downloaded font asset to be used as font face src + // Returns the relative path to the downloaded font asset to be used as font face src. return "{$this->relative_fonts_path}{$filename}"; } @@ -229,6 +244,7 @@ static private function merge_fonts( $font1, $font2 ) { * This is used when uploading local fonts * * @param array $font_face Font face to download. + * @param array $file Uploaded file. * @return array New font face with all assets downloaded and referenced in the font face definition. */ private function move_font_face_asset( $font_face, $file ) { @@ -258,11 +274,10 @@ private function move_font_face_asset( $font_face, $file ) { /** * Sanitizes the font family data using WP_Theme_JSON. * - * @param array $font A font family definition. * @return array A sanitized font family defintion. */ private function sanitize() { - // Creates the structure of theme.json array with the new fonts + // Creates the structure of theme.json array with the new fonts. $fonts_json = array( 'version' => '2', 'settings' => array( @@ -271,7 +286,7 @@ private function sanitize() { ), ), ); - // Creates a new WP_Theme_JSON object with the new fonts to leverage sanitization and validation + // Creates a new WP_Theme_JSON object with the new fonts to mmake profit of the sanitization and validation. $theme_json = new WP_Theme_JSON( $fonts_json ); $theme_data = $theme_json->get_data(); $sanitized_font = ! empty( $theme_data['settings']['typography']['fontFamilies'] ) @@ -333,19 +348,25 @@ private function download_font_face_assets( $font_face ) { } + /** + * Downloads font face assets if the font family is a Google font, or moves them if it is a local font. + * + * @param array $files An array of files to be installed. + * @return bool|WP_Error + */ public function download_or_move_font_faces( $files ) { if ( $this->has_font_faces() ) { $new_font_faces = array(); foreach ( $this->data['fontFace'] as $font_face ) { if ( empty( $files ) ) { - // If we are installing local fonts, we need to move the font face assets from the temp folder to the wp fonts directory + // If we are installing local fonts, we need to move the font face assets from the temp folder to the wp fonts directory. $new_font_face = $this->download_font_face_assets( $font_face ); } else { - // If we are installing google fonts, we need to download the font face assets + // If we are installing google fonts, we need to download the font face assets. $new_font_face = $this->move_font_face_asset( $font_face, $files[ $font_face['file'] ] ); } // If the font face assets were successfully downloaded, we add the font face to the new font. - // Font faces with failed downloads are not added to the new font + // Font faces with failed downloads are not added to the new font. if ( ! empty( $new_font_face['src'] ) ) { $new_font_faces[] = $new_font_face; } @@ -400,7 +421,6 @@ private function get_data_from_post() { /** * Create a post for a font family * - * @param array $font_family * @return int */ private function create_font_post() { @@ -419,8 +439,9 @@ private function create_font_post() { } /** - * @param array $font_family - * @param WP_Post $post + * Update a post for a font family + * + * @param WP_Post $post The post to update. * @return int */ private function update_font_post( $post ) { @@ -440,7 +461,6 @@ private function update_font_post( $post ) { /** * Creates a post for a font in the fonts library if it doesn't exist, or updates it if it does. * - * @param array $font_family * @return WP_Post */ public function create_or_update_font_post() { From 5ef49fdc71d34d2059d618b31544e4a7a43a4712 Mon Sep 17 00:00:00 2001 From: Vicente Canales Date: Mon, 17 Jul 2023 17:27:27 -0400 Subject: [PATCH 008/169] linting: add comments on rest fonts library file --- ...class-wp-rest-fonts-library-controller.php | 45 +++++++++++++------ 1 file changed, 32 insertions(+), 13 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index a87a16d01fada8..8ca0502afa7879 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -1,19 +1,32 @@ rest_base = 'fonts_library'; $this->namespace = 'wp/v2'; } + /** + * Registers the routes for the objects of the controller. + */ public function register_routes() { register_rest_route( $this->namespace, @@ -83,10 +96,10 @@ function update_fonts_library_permissions_check( $request ) { ); } - // Create fonts directory if it doesn't exist + // Create fonts directory if it doesn't exist. wp_mkdir_p( WP_FONTS_DIR ); - // The update endpoints requires write access to the temp and the fonts directories + // The update endpoints requires write access to the temp and the fonts directories. $temp_dir = get_temp_dir(); if ( ! is_writable( $temp_dir ) || ! wp_is_writable( WP_FONTS_DIR ) ) { return new WP_Error( @@ -107,11 +120,11 @@ function update_fonts_library_permissions_check( $request ) { * @param WP_REST_Request $request Full details about the request. * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise. */ - function read_fonts_library_permissions_check( $request ) { + function read_fonts_library_permissions_check() { if ( ! current_user_can( 'edit_posts' ) ) { return new WP_Error( 'rest_cannot_read_fonts_library', - __( 'Sorry, you are not allowed to read the fonts library on this site.' ), + __( 'Sorry, you are not allowed to read the fonts library on this site.', 'gutenberg' ), array( 'status' => rest_authorization_required_code(), ) @@ -137,7 +150,7 @@ function get_google_fonts() { } return new WP_Error( 'rest_cant_read_google_fonts', - __( 'Error reading Google Fonts JSON file.' ), + __( 'Error reading Google Fonts JSON file.', 'gutenberg' ), array( 'status' => 500 ) ); } @@ -151,21 +164,21 @@ function get_google_fonts() { * @return WP_REST_Response|WP_Error The updated fonts library post content. */ function install_fonts( $request ) { - // Get new fonts to install + // Get new fonts to install. $fonts_to_install = $request->get_param( 'fontFamilies' ); // As we are receiving form data, the font families are encoded as a string. - // We are using form data because local fonts need to use that format to attach the files in the request + // We are using form data because local fonts need to use that format to attach the files in the request. $fonts_to_install = json_decode( $fonts_to_install, true ); if ( empty( $fonts_to_install ) ) { return new WP_Error( 'no_fonts_to_install', __( 'No fonts to install' ), array( 'status' => 400 ) ); } - // Get uploaded files (used when installing local fonts) + // Get uploaded files (used when installing local fonts). $files = $request->get_file_params(); - // Download or move the new fonts assets to the fonts folder + // Download or move the new fonts assets to the fonts folder. $fonts = $this->download_or_move_fonts( $fonts_to_install, $files ); $response = array(); @@ -184,7 +197,7 @@ function install_fonts( $request ) { /** * Download or move new font assets to the fonts folder * - * @param array $fonts Fonts to install. + * @param array $font_families Font families to install. * @param array $files Uploaded files (used when installing local fonts). * * @return array New fonts with all assets downloaded referenced in the font families definition. @@ -203,6 +216,9 @@ function download_or_move_fonts( $font_families, $files ) { return $new_fonts; } + /** + * Registers the fonts library post type. + */ function register_post_type() { $args = array( 'public' => true, @@ -214,8 +230,11 @@ function register_post_type() { } +/** + * Registers the routes for the objects of the controller. + */ function fonts_library_register_routes() { - $fonts_library = new WP_Fonts_Library_Controller(); + $fonts_library = new WP_REST_Fonts_Library_Controller(); $fonts_library->register_routes(); $fonts_library->register_post_type(); } From 1661b6d194bb42c234fa92bb5d6ed32fb2040877 Mon Sep 17 00:00:00 2001 From: Vicente Canales Date: Mon, 17 Jul 2023 17:53:59 -0400 Subject: [PATCH 009/169] lint: fix filedocs --- .../fonts-library/class-wp-fonts-library.php | 52 ++++++++++--------- ...class-wp-rest-fonts-library-controller.php | 29 ++++++----- 2 files changed, 43 insertions(+), 38 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 7d5d21c99d0e97..a427b8507a3f18 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -1,12 +1,18 @@ 'font/otf', @@ -29,7 +35,7 @@ class WP_Font_Family { private $relative_fonts_path; /** - * WP_Font_Family constructor. + * WP_Fonts_Library constructor. * * @param array $font_family Font family data. */ @@ -99,14 +105,13 @@ static private function has_font_mime_type( $filepath ) { /** * Removes font family assets * - * @param array $font_family The font family data. * @return bool True if assets were removed, false otherwise. */ private function remove_font_family_assets() { if ( $this->has_font_faces() ) { foreach ( $this->data['fontFace'] as $font_face ) { $were_assets_removed = $this->delete_font_face_assets( $font_face ); - if ( $were_assets_removed === false ) { + if ( false === $were_assets_removed ) { return false; } } @@ -122,13 +127,13 @@ private function remove_font_family_assets() { public function uninstall() { $post = $this->get_data_from_post(); if ( null === $post ) { - return new WP_Error( 'font_family_not_found', __( 'The font family could not be found.' ) ); + return new WP_Error( 'font_family_not_found', __( 'The font family could not be found.', 'gutenberg' ) ); } $were_assets_removed = $this->remove_font_family_assets(); - if ( $were_assets_removed === true ) { + if ( true === $were_assets_removed ) { $was_post_deleted = wp_delete_post( $post->ID, true ); - if ( $was_post_deleted === null ) { - return new WP_Error( 'font_family_not_deleted', __( 'The font family could not be deleted.' ) ); + if ( null === $was_post_deleted ) { + return new WP_Error( 'font_family_not_deleted', __( 'The font family could not be deleted.', 'gutenberg' ) ); } } return true; @@ -149,12 +154,12 @@ static private function delete_asset( $src ) { } wp_delete_file( $file_path ); - // If the file still exists after trying to delete it, return false + // If the file still exists after trying to delete it, return false. if ( file_exists( $file_path ) ) { return false; } - // return true if the file was deleted + // return true if the file was deleted. return true; } @@ -170,7 +175,7 @@ static private function delete_font_face_assets( $font_face ) { foreach ( $srcs as $src ) { $was_asset_removed = self::delete_asset( $src ); if ( ! $was_asset_removed ) { - // Bail if any of the assets could not be removed + // Bail if any of the assets could not be removed. return false; } } @@ -223,9 +228,8 @@ private function download_asset( $src, $filename ) { * @return array The merged font. */ static private function merge_fonts( $font1, $font2 ) { - $font_faces_1 = $font1['fontFace'] ?? array(); - $font_faces_2 = $font2['fontFace'] ?? array(); - + $font_faces_1 = isset( $font1['fontFace'] ) ? $font1['fontFace'] : array(); + $font_faces_2 = isset( $font2['fontFace'] ) ? $font2['fontFace'] : array(); $merged_font_faces = array_merge( $font_faces_1, $font_faces_2 ); $serialized_faces = array_map( 'serialize', $merged_font_faces ); @@ -255,16 +259,16 @@ private function move_font_face_asset( $font_face, $file ) { // Remove the uploaded font asset reference from the font face definition because it is no longer needed. unset( $new_font_face['file'] ); - // If the filepath has not a font mime type, we don't move the file and return the font face definition without src to be ignored later + // If the filepath has not a font mime type, we don't move the file and return the font face definition without src to be ignored later. if ( ! self::has_font_mime_type( $filepath ) ) { return $new_font_face; } - // Move the uploaded font asset from the temp folder to the wp fonts directory + // Move the uploaded font asset from the temp folder to the wp fonts directory. $file_was_moved = move_uploaded_file( $file['tmp_name'], $filepath ); if ( $file_was_moved ) { - // If the file was successfully moved, we update the font face definition to reference the new file location + // If the file was successfully moved, we update the font face definition to reference the new file location. $new_font_face['src'] = "{$this->relative_fonts_path}{$filename}"; } @@ -375,7 +379,7 @@ public function download_or_move_font_faces( $files ) { $this->data['fontFace'] = $new_font_faces; return true; } - return WP_Error( 'font_face_download_failed', __( 'The font face assets could not be written.' ) ); + return WP_Error( 'font_face_download_failed', __( 'The font face assets could not be written.', 'gutenberg' ) ); } return true; } @@ -432,8 +436,8 @@ private function create_font_post() { 'post_status' => 'publish', ); $post_id = wp_insert_post( $post ); - if ( $post_id === 0 ) { - return WP_Error( 'font_post_creation_failed', __( 'Font post creation failed' ) ); + if ( 0 === $post_id ) { + return WP_Error( 'font_post_creation_failed', __( 'Font post creation failed', 'gutenberg' ) ); } return $post_id; } @@ -473,4 +477,4 @@ public function create_or_update_font_post() { } -add_action( 'init', array( 'WP_Font_Family', 'define_fonts_directory' ) ); +add_action( 'init', array( 'WP_Fonts_Library', 'define_fonts_directory' ) ); diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index 8ca0502afa7879..0fbb581b99528d 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -1,18 +1,21 @@ $request['slug'], ); - $font = new WP_Font_Family( $data ); + $font = new WP_Fonts_Family( $data ); return new WP_REST_Response( $font->uninstall() ); } /** * Check if user has permissions to update the fonts library * - * @param WP_REST_Request $request Full details about the request. * @return true|WP_Error True if the request has write access for the item, WP_Error object otherwise. */ - function update_fonts_library_permissions_check( $request ) { + function update_fonts_library_permissions_check() { if ( ! current_user_can( 'edit_theme_options' ) ) { return new WP_Error( 'rest_cannot_update_fonts_library', - __( 'Sorry, you are not allowed to update the fonts library on this site.' ), + __( 'Sorry, you are not allowed to update the fonts library on this site.', 'gutenberg' ), array( 'status' => rest_authorization_required_code(), ) @@ -104,7 +106,7 @@ function update_fonts_library_permissions_check( $request ) { if ( ! is_writable( $temp_dir ) || ! wp_is_writable( WP_FONTS_DIR ) ) { return new WP_Error( 'rest_cannot_write_fonts_folder', - __( 'Error: WordPress does not have permission to write the fonts folder on your server.' ), + __( 'Error: WordPress does not have permission to write the fonts folder on your server.', 'gutenberg' ), array( 'status' => 500, ) @@ -117,7 +119,6 @@ function update_fonts_library_permissions_check( $request ) { /** * Check if user has permissions to read the fonts library * - * @param WP_REST_Request $request Full details about the request. * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise. */ function read_fonts_library_permissions_check() { @@ -172,7 +173,7 @@ function install_fonts( $request ) { $fonts_to_install = json_decode( $fonts_to_install, true ); if ( empty( $fonts_to_install ) ) { - return new WP_Error( 'no_fonts_to_install', __( 'No fonts to install' ), array( 'status' => 400 ) ); + return new WP_Error( 'no_fonts_to_install', __( 'No fonts to install', 'gutenberg' ), array( 'status' => 400 ) ); } // Get uploaded files (used when installing local fonts). @@ -191,7 +192,7 @@ function install_fonts( $request ) { return new WP_REST_Response( $response ); } - return new WP_Error( 'error_installing_fonts', __( 'Error installing fonts. No font was installed.' ), array( 'status' => 500 ) ); + return new WP_Error( 'error_installing_fonts', __( 'Error installing fonts. No font was installed.', 'gutenberg' ), array( 'status' => 500 ) ); } /** @@ -205,10 +206,10 @@ function install_fonts( $request ) { function download_or_move_fonts( $font_families, $files ) { $new_fonts = array(); foreach ( $font_families as $font_family ) { - $font = new WP_Font_Family( $font_family ); + $font = new WP_Fonts_Family( $font_family ); $were_assets_written = $font->download_or_move_font_faces( $files ); // If the font face assets were successfully downloaded, we add the font to the new fonts array. - // Fonts without no font faces successfully downloaded are not added to the new fonts array + // Fonts without no font faces successfully downloaded are not added to the new fonts array. if ( $were_assets_written ) { $new_fonts[] = $font; } From 5c81374392be91eb1b6a1a8bedea9b407ab7173f Mon Sep 17 00:00:00 2001 From: Vicente Canales Date: Mon, 17 Jul 2023 18:01:08 -0400 Subject: [PATCH 010/169] lint: fix lib loader errors --- lib/load.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/load.php b/lib/load.php index 4d58166c575681..f0ca830385fc2f 100644 --- a/lib/load.php +++ b/lib/load.php @@ -28,7 +28,7 @@ function gutenberg_is_experiment_enabled( $name ) { return ! empty( $experiments[ $name ] ); } -// These files only need to be loaded if within a rest server instance +// These files only need to be loaded if within a rest server instance. // which this class will exist if that is the case. if ( class_exists( 'WP_REST_Controller' ) ) { if ( ! class_exists( 'WP_REST_Block_Editor_Settings_Controller' ) ) { @@ -163,7 +163,7 @@ function gutenberg_is_experiment_enabled( $name ) { require __DIR__ . '/experimental/fonts-api/bc-layer/class-wp-web-fonts.php'; } -// Fonts Library +// Fonts Library. require __DIR__ . '/experimental/fonts-library/class-wp-fonts-library.php'; require __DIR__ . '/experimental/fonts-library/class-wp-rest-fonts-library-controller.php'; From 74f83f26c0d6ac0ad6311b592b770268e185a8ca Mon Sep 17 00:00:00 2001 From: Sarah Norris Date: Tue, 18 Jul 2023 15:58:47 +0100 Subject: [PATCH 011/169] Misc updates to comments for consistency --- .../fonts-library/class-wp-fonts-library.php | 32 +++++++++---------- ...class-wp-rest-fonts-library-controller.php | 14 ++++---- 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index a427b8507a3f18..13d2640b2ddf8f 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -4,9 +4,9 @@ * * This file contains functions and definitions for the Gutenberg Fonts Library. * - * @package Gutenberg - * @subpackage Fonts-Library - * @since x.x.x + * @package Gutenberg + * @subpackage Fonts Library + * @since X.X.X */ /** @@ -28,7 +28,7 @@ class WP_Fonts_Library { */ private $data; /** - * Relative path to the fonts directory + * Relative path to the fonts directory. * * @var string */ @@ -45,7 +45,7 @@ public function __construct( $font_family = array() ) { } /** - * Returns the font family data + * Returns the font family data. * * @return array An array in fontFamily theme.json format. */ @@ -54,7 +54,7 @@ public function get_data() { } /** - * Returns the font family data + * Returns the font family data. * * @return string fontFamily in theme.json format as stringified JSON. */ @@ -63,7 +63,7 @@ public function get_data_as_json() { } /** - * Returns if the font family has font faces defined + * Returns if the font family has font faces defined. * * @return bool true if the font family has font faces defined, false otherwise. */ @@ -103,7 +103,7 @@ static private function has_font_mime_type( $filepath ) { } /** - * Removes font family assets + * Removes font family assets. * * @return bool True if assets were removed, false otherwise. */ @@ -243,9 +243,9 @@ static private function merge_fonts( $font1, $font2 ) { } /** - * Move an uploaded font face asset from temp folder to the wp fonts directory + * Move an uploaded font face asset from temp folder to the wp fonts directory. * - * This is used when uploading local fonts + * This is used when uploading local fonts. * * @param array $font_face Font face to download. * @param array $file Uploaded file. @@ -385,9 +385,9 @@ public function download_or_move_font_faces( $files ) { } /** - * Get the post for a font family + * Get the post for a font family. * - * @return WP_Post|null The post for this font family object or null if the post does not exist + * @return WP_Post|null The post for this font family object or null if the post does not exist. */ private function get_font_post() { $args = array( @@ -408,9 +408,9 @@ private function get_font_post() { } /** - * Get the data for this object from the database and set it to the data property + * Get the data for this object from the database and set it to the data property. * - * @return WP_Post|null The post for this font family object or null if the post does not exist + * @return WP_Post|null The post for this font family object or null if the post does not exist. */ private function get_data_from_post() { $post = $this->get_font_post(); @@ -423,7 +423,7 @@ private function get_data_from_post() { } /** - * Create a post for a font family + * Create a post for a font family. * * @return int */ @@ -443,7 +443,7 @@ private function create_font_post() { } /** - * Update a post for a font family + * Update a post for a font family. * * @param WP_Post $post The post to update. * @return int diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index 0fbb581b99528d..a3f98b0f03920f 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -1,6 +1,6 @@ download_or_move_font_faces( $files ); // If the font face assets were successfully downloaded, we add the font to the new fonts array. - // Fonts without no font faces successfully downloaded are not added to the new fonts array. + // Fonts without font faces successfully downloaded are not added to the new fonts array. if ( $were_assets_written ) { $new_fonts[] = $font; } From 98532191fa941f242801b454db422fa904963ff3 Mon Sep 17 00:00:00 2001 From: Sarah Norris Date: Tue, 18 Jul 2023 16:22:22 +0100 Subject: [PATCH 012/169] Update controller name in load.php --- lib/load.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/load.php b/lib/load.php index f0ca830385fc2f..67bb59b227a4ad 100644 --- a/lib/load.php +++ b/lib/load.php @@ -138,7 +138,7 @@ function gutenberg_is_experiment_enabled( $name ) { * the Font Face (redesigned Fonts API) to be merged before the Fonts Library while * keeping Fonts API available for sites that are using it. */ -if ( class_exists( 'WP_Fonts_Library' ) || class_exists( 'WP_Fonts_Library_Controller' ) ) { +if ( class_exists( 'WP_Fonts_Library' ) || class_exists( 'WP_REST_Fonts_Library_Controller' ) ) { if ( ! class_exists( 'WP_Font_Face' ) ) { require __DIR__ . '/experimental/fonts/class-wp-font-face.php'; require __DIR__ . '/experimental/fonts/class-wp-font-face-resolver.php'; From b929bf03a2c546797d2f2f446c251bbae241ccab Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 18 Jul 2023 12:39:36 -0300 Subject: [PATCH 013/169] Add an install method to the font family class to simplify the code --- .../fonts-library/class-wp-fonts-library.php | 17 +++++++++ ...class-wp-rest-fonts-library-controller.php | 37 +++++-------------- 2 files changed, 26 insertions(+), 28 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 13d2640b2ddf8f..6e0dd00a1f344a 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -475,6 +475,23 @@ public function create_or_update_font_post() { return $this->create_font_post(); } + /** + * Install the font family into the library + * + * @return WP_Post|WP_Error + */ + public function install ( $files = null ) { + $were_assets_written = $this->download_or_move_font_faces( $files ); + if ( $were_assets_written ) { + $post_id = $this->create_or_update_font_post(); + if ( $post_id ){ + return $this->get_data(); + } + return WP_Error( 'font_post_creation_failed', __( 'Font post creation failed', 'gutenberg' ) ); + } + return WP_Error( 'font_face_download_failed', __( 'The font face assets could not be written.', 'gutenberg' ) ); + } + } add_action( 'init', array( 'WP_Fonts_Library', 'define_fonts_directory' ) ); diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index a3f98b0f03920f..816385f1313bbc 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -179,44 +179,25 @@ function install_fonts( $request ) { // Get uploaded files (used when installing local fonts). $files = $request->get_file_params(); - // Download or move the new fonts assets to the fonts folder. - $fonts = $this->download_or_move_fonts( $fonts_to_install, $files ); + // iterates the fonts data received and creates a new WP_Fonts_Library_Family object for each one. + $fonts_installed = array(); + foreach ( $fonts_to_install as $font_data ) { + $font = new WP_Fonts_Library( $font_data ); + $font->install( $files ); + $fonts_installed[] = $font; + } $response = array(); - if ( ! empty( $fonts ) ) { - foreach ( $fonts as $font ) { - $font->create_or_update_font_post(); + if ( ! empty( $fonts_installed ) ) { + foreach ( $fonts_installed as $font ) { $response[] = $font->get_data(); } - return new WP_REST_Response( $response ); } return new WP_Error( 'error_installing_fonts', __( 'Error installing fonts. No font was installed.', 'gutenberg' ), array( 'status' => 500 ) ); } - /** - * Download or move new font assets to the fonts folder. - * - * @param array $font_families Font families to install. - * @param array $files Uploaded files (used when installing local fonts). - * - * @return array New fonts with all assets downloaded referenced in the font families definition. - */ - function download_or_move_fonts( $font_families, $files ) { - $new_fonts = array(); - foreach ( $font_families as $font_family ) { - $font = new WP_Fonts_Family( $font_family ); - $were_assets_written = $font->download_or_move_font_faces( $files ); - // If the font face assets were successfully downloaded, we add the font to the new fonts array. - // Fonts without font faces successfully downloaded are not added to the new fonts array. - if ( $were_assets_written ) { - $new_fonts[] = $font; - } - } - return $new_fonts; - } - /** * Registers the fonts library post type. */ From 0c8978e30fa254a39fd8196585994e1ff0e51728 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 18 Jul 2023 12:43:19 -0300 Subject: [PATCH 014/169] Renaming the Fonts Library class to Fonts Library Family to emphasize the class produces Font Family Objects --- ...onts-library.php => class-wp-fonts-library-family.php} | 8 ++++---- .../class-wp-rest-fonts-library-controller.php | 2 +- lib/load.php | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) rename lib/experimental/fonts-library/{class-wp-fonts-library.php => class-wp-fonts-library-family.php} (98%) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library-family.php similarity index 98% rename from lib/experimental/fonts-library/class-wp-fonts-library.php rename to lib/experimental/fonts-library/class-wp-fonts-library-family.php index 6e0dd00a1f344a..7b99e5205fb299 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library-family.php @@ -1,6 +1,6 @@ 'font/otf', @@ -35,7 +35,7 @@ class WP_Fonts_Library { private $relative_fonts_path; /** - * WP_Fonts_Library constructor. + * WP_Fonts_Library_Family constructor. * * @param array $font_family Font family data. */ @@ -494,4 +494,4 @@ public function install ( $files = null ) { } -add_action( 'init', array( 'WP_Fonts_Library', 'define_fonts_directory' ) ); +add_action( 'init', array( 'WP_Fonts_Library_Family', 'define_fonts_directory' ) ); diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index 816385f1313bbc..586c46810918d4 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -182,7 +182,7 @@ function install_fonts( $request ) { // iterates the fonts data received and creates a new WP_Fonts_Library_Family object for each one. $fonts_installed = array(); foreach ( $fonts_to_install as $font_data ) { - $font = new WP_Fonts_Library( $font_data ); + $font = new WP_Fonts_Library_Family( $font_data ); $font->install( $files ); $fonts_installed[] = $font; } diff --git a/lib/load.php b/lib/load.php index 67bb59b227a4ad..62471743cb5cb5 100644 --- a/lib/load.php +++ b/lib/load.php @@ -138,7 +138,7 @@ function gutenberg_is_experiment_enabled( $name ) { * the Font Face (redesigned Fonts API) to be merged before the Fonts Library while * keeping Fonts API available for sites that are using it. */ -if ( class_exists( 'WP_Fonts_Library' ) || class_exists( 'WP_REST_Fonts_Library_Controller' ) ) { +if ( class_exists( 'WP_Fonts_Library_Family' ) || class_exists( 'WP_REST_Fonts_Library_Controller' ) ) { if ( ! class_exists( 'WP_Font_Face' ) ) { require __DIR__ . '/experimental/fonts/class-wp-font-face.php'; require __DIR__ . '/experimental/fonts/class-wp-font-face-resolver.php'; @@ -164,7 +164,7 @@ function gutenberg_is_experiment_enabled( $name ) { } // Fonts Library. -require __DIR__ . '/experimental/fonts-library/class-wp-fonts-library.php'; +require __DIR__ . '/experimental/fonts-library/class-wp-fonts-library-family.php'; require __DIR__ . '/experimental/fonts-library/class-wp-rest-fonts-library-controller.php'; // Plugin specific code. From a51b59b09322f83704d4799f06d02b9662e541f2 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 18 Jul 2023 12:50:07 -0300 Subject: [PATCH 015/169] Renaming WP_Fonts_Library_Family to WP_Font_Family --- ...wp-fonts-library-family.php => class-wp-font-family.php} | 6 +++--- .../class-wp-rest-fonts-library-controller.php | 6 +++--- lib/load.php | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) rename lib/experimental/fonts-library/{class-wp-fonts-library-family.php => class-wp-font-family.php} (98%) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library-family.php b/lib/experimental/fonts-library/class-wp-font-family.php similarity index 98% rename from lib/experimental/fonts-library/class-wp-fonts-library-family.php rename to lib/experimental/fonts-library/class-wp-font-family.php index 7b99e5205fb299..f916f8f880d1d2 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -12,7 +12,7 @@ /** * Fonts Library class. */ -class WP_Fonts_Library_Family { +class WP_Font_Family { const ALLOWED_FONT_MIME_TYPES = array( 'otf' => 'font/otf', @@ -35,7 +35,7 @@ class WP_Fonts_Library_Family { private $relative_fonts_path; /** - * WP_Fonts_Library_Family constructor. + * WP_Font_Family constructor. * * @param array $font_family Font family data. */ @@ -494,4 +494,4 @@ public function install ( $files = null ) { } -add_action( 'init', array( 'WP_Fonts_Library_Family', 'define_fonts_directory' ) ); +add_action( 'init', array( 'WP_Font_Family', 'define_fonts_directory' ) ); diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index 586c46810918d4..7ed00547b72e4c 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -78,7 +78,7 @@ function uninstall_font_family( $request ) { $data = array( 'slug' => $request['slug'], ); - $font = new WP_Fonts_Family( $data ); + $font = new WP_Font_Family( $data ); return new WP_REST_Response( $font->uninstall() ); } @@ -179,10 +179,10 @@ function install_fonts( $request ) { // Get uploaded files (used when installing local fonts). $files = $request->get_file_params(); - // iterates the fonts data received and creates a new WP_Fonts_Library_Family object for each one. + // iterates the fonts data received and creates a new WP_Font_Family object for each one. $fonts_installed = array(); foreach ( $fonts_to_install as $font_data ) { - $font = new WP_Fonts_Library_Family( $font_data ); + $font = new WP_Font_Family( $font_data ); $font->install( $files ); $fonts_installed[] = $font; } diff --git a/lib/load.php b/lib/load.php index 62471743cb5cb5..64bac6c08cacf0 100644 --- a/lib/load.php +++ b/lib/load.php @@ -138,7 +138,7 @@ function gutenberg_is_experiment_enabled( $name ) { * the Font Face (redesigned Fonts API) to be merged before the Fonts Library while * keeping Fonts API available for sites that are using it. */ -if ( class_exists( 'WP_Fonts_Library_Family' ) || class_exists( 'WP_REST_Fonts_Library_Controller' ) ) { +if ( class_exists( 'WP_Font_Family' ) || class_exists( 'WP_REST_Fonts_Library_Controller' ) ) { if ( ! class_exists( 'WP_Font_Face' ) ) { require __DIR__ . '/experimental/fonts/class-wp-font-face.php'; require __DIR__ . '/experimental/fonts/class-wp-font-face-resolver.php'; @@ -164,7 +164,7 @@ function gutenberg_is_experiment_enabled( $name ) { } // Fonts Library. -require __DIR__ . '/experimental/fonts-library/class-wp-fonts-library-family.php'; +require __DIR__ . '/experimental/fonts-library/class-wp-font-family.php'; require __DIR__ . '/experimental/fonts-library/class-wp-rest-fonts-library-controller.php'; // Plugin specific code. From 999775e96a4c6624370300390ce83f2a04dd9bdc Mon Sep 17 00:00:00 2001 From: Vicente Canales Date: Tue, 18 Jul 2023 12:53:03 -0400 Subject: [PATCH 016/169] lint: make sure coding standards test passes --- lib/experimental/fonts-library/class-wp-font-family.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index f916f8f880d1d2..7a895e8784ef82 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -478,13 +478,15 @@ public function create_or_update_font_post() { /** * Install the font family into the library * + * @param array $files Array of font files to be installed. + * * @return WP_Post|WP_Error */ - public function install ( $files = null ) { + public function install( $files = null ) { $were_assets_written = $this->download_or_move_font_faces( $files ); if ( $were_assets_written ) { $post_id = $this->create_or_update_font_post(); - if ( $post_id ){ + if ( $post_id ) { return $this->get_data(); } return WP_Error( 'font_post_creation_failed', __( 'Font post creation failed', 'gutenberg' ) ); From b1be3fe8e39e999990cadbe0171b890fd9037934 Mon Sep 17 00:00:00 2001 From: Sarah Norris Date: Tue, 18 Jul 2023 17:39:48 +0100 Subject: [PATCH 017/169] Replace include for admin.php with file.php --- lib/experimental/fonts-library/class-wp-font-family.php | 5 +++++ .../fonts-library/class-wp-rest-fonts-library-controller.php | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 7a895e8784ef82..6a7529270fcf22 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -199,6 +199,11 @@ private function download_asset( $src, $filename ) { return false; } + // Include file with download_url() if function doesn't exist. + if ( ! function_exists( 'download_url' ) ) { + require_once ABSPATH . 'wp-admin/includes/file.php'; + } + // Downloads the font asset or returns false. $temp_file = download_url( $src ); if ( is_wp_error( $temp_file ) ) { diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index 7ed00547b72e4c..ce180df6612108 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -9,11 +9,6 @@ * @since X.X.X */ -/** - * Include admin functions. - */ -include( ABSPATH . 'wp-admin/includes/admin.php' ); - /** * Fonts Library Controller class. */ From 76c5074650db53577d82a81d3e9e665c9537d150 Mon Sep 17 00:00:00 2001 From: Sarah Norris Date: Tue, 18 Jul 2023 17:51:18 +0100 Subject: [PATCH 018/169] Fix linter errors --- lib/experimental/fonts-library/class-wp-font-family.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 6a7529270fcf22..a6c4ccbed3ea26 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -483,8 +483,7 @@ public function create_or_update_font_post() { /** * Install the font family into the library * - * @param array $files Array of font files to be installed. - * + * @param array $files An array of files to be installed, default is null. * @return WP_Post|WP_Error */ public function install( $files = null ) { From 31591a55f5dfa0b619ffa44b6a4c68e3a5bc767e Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 18 Jul 2023 14:28:46 -0300 Subject: [PATCH 019/169] adding 1 php test --- .../fonts-library/class-wp-fonts-library-test.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 phpunit/fonts-library/class-wp-fonts-library-test.php diff --git a/phpunit/fonts-library/class-wp-fonts-library-test.php b/phpunit/fonts-library/class-wp-fonts-library-test.php new file mode 100644 index 00000000000000..24e128804fb9ff --- /dev/null +++ b/phpunit/fonts-library/class-wp-fonts-library-test.php @@ -0,0 +1,14 @@ +assertTrue( str_contains( WP_Font_Family::get_fonts_directory(), '/wp-content/fonts' ) ); + } + +} \ No newline at end of file From d7dcaaf290ca808aab0acf7f010c9029d560f47a Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 18 Jul 2023 16:28:44 -0300 Subject: [PATCH 020/169] fix test --- phpunit/fonts-library/class-wp-fonts-library-test.php | 1 + 1 file changed, 1 insertion(+) diff --git a/phpunit/fonts-library/class-wp-fonts-library-test.php b/phpunit/fonts-library/class-wp-fonts-library-test.php index 24e128804fb9ff..0a1b02dfd70d60 100644 --- a/phpunit/fonts-library/class-wp-fonts-library-test.php +++ b/phpunit/fonts-library/class-wp-fonts-library-test.php @@ -11,4 +11,5 @@ function test_get_fonts_directory () { $this->assertTrue( str_contains( WP_Font_Family::get_fonts_directory(), '/wp-content/fonts' ) ); } + } \ No newline at end of file From 24ce14e75f621a6505bd006ebdee377940f5f8c0 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 18 Jul 2023 16:38:47 -0300 Subject: [PATCH 021/169] Move a few methods from Font Family class to Fonts Library --- .../fonts-library/class-wp-font-family.php | 28 ++-------------- .../fonts-library/class-wp-fonts-library.php | 32 +++++++++++++++++++ lib/load.php | 1 + 3 files changed, 36 insertions(+), 25 deletions(-) create mode 100644 lib/experimental/fonts-library/class-wp-fonts-library.php diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index a6c4ccbed3ea26..ec1498b01bd631 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -27,12 +27,7 @@ class WP_Font_Family { * @var array */ private $data; - /** - * Relative path to the fonts directory. - * - * @var string - */ - private $relative_fonts_path; + /** * WP_Font_Family constructor. @@ -41,7 +36,6 @@ class WP_Font_Family { */ public function __construct( $font_family = array() ) { $this->data = $font_family; - $this->relative_fonts_path = content_url( '/fonts/' ); } /** @@ -75,21 +69,7 @@ public function has_font_faces() { ); } - /** - * Returns the absolute path to the fonts directory. - * - * @return string Path to the fonts directory. - */ - static public function get_fonts_directory() { - return path_join( WP_CONTENT_DIR, 'fonts' ); - } - /** - * Define WP_FONTS_DIR constant to make it available to the rest of the code. - */ - static public function define_fonts_directory() { - define( 'WP_FONTS_DIR', self::get_fonts_directory() ); - } /** * Returns whether the given file has a font MIME type. @@ -221,7 +201,7 @@ private function download_asset( $src, $filename ) { } // Returns the relative path to the downloaded font asset to be used as font face src. - return "{$this->relative_fonts_path}{$filename}"; + return "{WP_Fonts_Library::get_relative_fonts_path()}{$filename}"; } /** @@ -274,7 +254,7 @@ private function move_font_face_asset( $font_face, $file ) { if ( $file_was_moved ) { // If the file was successfully moved, we update the font face definition to reference the new file location. - $new_font_face['src'] = "{$this->relative_fonts_path}{$filename}"; + $new_font_face['src'] = "{WP_Fonts_Library::get_relative_fonts_path()}{$filename}"; } return $new_font_face; @@ -499,5 +479,3 @@ public function install( $files = null ) { } } - -add_action( 'init', array( 'WP_Font_Family', 'define_fonts_directory' ) ); diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php new file mode 100644 index 00000000000000..73c9ae537ea8d0 --- /dev/null +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -0,0 +1,32 @@ + Date: Tue, 18 Jul 2023 16:46:05 -0300 Subject: [PATCH 022/169] move more methods to Fonts Library class --- .../fonts-library/class-wp-font-family.php | 26 +++---------------- .../fonts-library/class-wp-fonts-library.php | 18 +++++++++++++ 2 files changed, 21 insertions(+), 23 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index ec1498b01bd631..fac34fb114c618 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -14,13 +14,6 @@ */ class WP_Font_Family { - const ALLOWED_FONT_MIME_TYPES = array( - 'otf' => 'font/otf', - 'ttf' => 'font/ttf', - 'woff' => 'font/woff', - 'woff2' => 'font/woff2', - ); - /** * Font family data * @@ -35,7 +28,7 @@ class WP_Font_Family { * @param array $font_family Font family data. */ public function __construct( $font_family = array() ) { - $this->data = $font_family; + $this->data = $font_family; } /** @@ -69,19 +62,6 @@ public function has_font_faces() { ); } - - - /** - * Returns whether the given file has a font MIME type. - * - * @param string $filepath The file to check. - * @return bool True if the file has a font MIME type, false otherwise. - */ - static private function has_font_mime_type( $filepath ) { - $filetype = wp_check_filetype( $filepath, self::ALLOWED_FONT_MIME_TYPES ); - return in_array( $filetype['type'], self::ALLOWED_FONT_MIME_TYPES, true ); - } - /** * Removes font family assets. * @@ -175,7 +155,7 @@ private function download_asset( $src, $filename ) { $file_path = path_join( WP_FONTS_DIR, $filename ); // Checks if the file to be downloaded has a font mime type. - if ( ! self::has_font_mime_type( $file_path ) ) { + if ( ! WP_Fonts_Library::has_font_mime_type( $file_path ) ) { return false; } @@ -245,7 +225,7 @@ private function move_font_face_asset( $font_face, $file ) { unset( $new_font_face['file'] ); // If the filepath has not a font mime type, we don't move the file and return the font face definition without src to be ignored later. - if ( ! self::has_font_mime_type( $filepath ) ) { + if ( ! WP_Fonts_Library::has_font_mime_type( $filepath ) ) { return $new_font_face; } diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 73c9ae537ea8d0..f5a22d754ffe7b 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -2,6 +2,13 @@ class WP_Fonts_Library { + const ALLOWED_FONT_MIME_TYPES = array( + 'otf' => 'font/otf', + 'ttf' => 'font/ttf', + 'woff' => 'font/woff', + 'woff2' => 'font/woff2', + ); + /** * Returns the absolute path to the fonts directory. * @@ -27,6 +34,17 @@ static public function define_fonts_directory() { define( 'WP_FONTS_DIR', self::get_fonts_directory() ); } + /** + * Returns whether the given file has a font MIME type. + * + * @param string $filepath The file to check. + * @return bool True if the file has a font MIME type, false otherwise. + */ + static public function has_font_mime_type( $filepath ) { + $filetype = wp_check_filetype( $filepath, self::ALLOWED_FONT_MIME_TYPES ); + return in_array( $filetype['type'], self::ALLOWED_FONT_MIME_TYPES, true ); + } + } add_action( 'init', array( 'WP_Fonts_Library', 'define_fonts_directory' ) ); From 9cd7cee8be36bd03bc55b6c1b8c990bc9025ccb9 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 19 Jul 2023 09:46:27 -0300 Subject: [PATCH 023/169] Breaking the classes in to smaller ones and adding tests --- .../class-wp-font-family-utils.php | 76 ++++++++++ .../fonts-library/class-wp-font-family.php | 55 +------- .../fonts-library/class-wp-fonts-library.php | 11 -- lib/load.php | 1 + .../class-wp-font-family-test.php | 34 +++++ .../class-wp-font-family-utils-test.php | 130 ++++++++++++++++++ .../class-wp-fonts-library-test.php | 17 ++- 7 files changed, 258 insertions(+), 66 deletions(-) create mode 100644 lib/experimental/fonts-library/class-wp-font-family-utils.php create mode 100644 phpunit/fonts-library/class-wp-font-family-test.php create mode 100644 phpunit/fonts-library/class-wp-font-family-utils-test.php diff --git a/lib/experimental/fonts-library/class-wp-font-family-utils.php b/lib/experimental/fonts-library/class-wp-font-family-utils.php new file mode 100644 index 00000000000000..b0b50b64bd7d97 --- /dev/null +++ b/lib/experimental/fonts-library/class-wp-font-family-utils.php @@ -0,0 +1,76 @@ + 1 ) { + $filename .= "_{$i}"; + } + return "{$filename}.{$extension}"; + } + + /** + * Merges two fonts and their font faces. + * + * @param array $font1 The first font to merge. + * @param array $font2 The second font to merge. + * + * @return array|WP_Error The merged font or WP_Error if the fonts have different slugs. + */ + static public function merge_fonts_data( $font1, $font2 ) { + if ( $font1['slug'] !== $font2['slug'] ) { + return new WP_Error( 'fonts_must_have_same_slug', __( 'Fonts must have the same slug to be merged.', 'gutenberg' ) ); + } + $font_faces_1 = isset( $font1['fontFace'] ) ? $font1['fontFace'] : array(); + $font_faces_2 = isset( $font2['fontFace'] ) ? $font2['fontFace'] : array(); + $merged_font_faces = array_merge( $font_faces_1, $font_faces_2 ); + + $serialized_faces = array_map( 'serialize', $merged_font_faces ); + $unique_serialized_faces = array_unique( $serialized_faces ); + $unique_faces = array_map( 'unserialize', $unique_serialized_faces ); + + $merged_font = array_merge( $font1, $font2 ); + $merged_font['fontFace'] = $unique_faces; + + return $merged_font; + } + + /** + * Returns whether the given file has a font MIME type. + * + * @param string $filepath The file to check. + * @return bool True if the file has a font MIME type, false otherwise. + */ + static public function has_font_mime_type( $filepath ) { + $filetype = wp_check_filetype( $filepath, WP_Fonts_Library::ALLOWED_FONT_MIME_TYPES ); + return in_array( $filetype['type'], WP_Fonts_Library::ALLOWED_FONT_MIME_TYPES, true ); + } + +} diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index fac34fb114c618..1f4f5dc4a3dcd6 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -155,7 +155,7 @@ private function download_asset( $src, $filename ) { $file_path = path_join( WP_FONTS_DIR, $filename ); // Checks if the file to be downloaded has a font mime type. - if ( ! WP_Fonts_Library::has_font_mime_type( $file_path ) ) { + if ( ! WP_Font_Family_Utils::has_font_mime_type( $file_path ) ) { return false; } @@ -184,29 +184,6 @@ private function download_asset( $src, $filename ) { return "{WP_Fonts_Library::get_relative_fonts_path()}{$filename}"; } - /** - * Merges two fonts and their font faces. - * - * @param array $font1 The first font to merge. - * @param array $font2 The second font to merge. - * - * @return array The merged font. - */ - static private function merge_fonts( $font1, $font2 ) { - $font_faces_1 = isset( $font1['fontFace'] ) ? $font1['fontFace'] : array(); - $font_faces_2 = isset( $font2['fontFace'] ) ? $font2['fontFace'] : array(); - $merged_font_faces = array_merge( $font_faces_1, $font_faces_2 ); - - $serialized_faces = array_map( 'serialize', $merged_font_faces ); - $unique_serialized_faces = array_unique( $serialized_faces ); - $unique_faces = array_map( 'unserialize', $unique_serialized_faces ); - - $merged_font = array_merge( $font1, $font2 ); - $merged_font['fontFace'] = $unique_faces; - - return $merged_font; - } - /** * Move an uploaded font face asset from temp folder to the wp fonts directory. * @@ -218,14 +195,14 @@ static private function merge_fonts( $font1, $font2 ) { */ private function move_font_face_asset( $font_face, $file ) { $new_font_face = $font_face; - $filename = self::get_filename_from_font_face( $font_face, $file['name'] ); + $filename = WP_Font_Family_Utils::get_filename_from_font_face( $font_face, $file['name'] ); $filepath = path_join( WP_FONTS_DIR, $filename ); // Remove the uploaded font asset reference from the font face definition because it is no longer needed. unset( $new_font_face['file'] ); // If the filepath has not a font mime type, we don't move the file and return the font face definition without src to be ignored later. - if ( ! WP_Fonts_Library::has_font_mime_type( $filepath ) ) { + if ( ! WP_Font_Family_Utils::has_font_mime_type( $filepath ) ) { return $new_font_face; } @@ -265,28 +242,6 @@ private function sanitize() { return $this->data; } - /** - * Generates a filename for a font face asset. - * - * Creates a filename for a font face asset using font family, style, weight and extension information. - * - * @param array $font_face The font face array containing 'fontFamily', 'fontStyle', and 'fontWeight' attributes. - * @param string $url The URL of the font face asset, used to derive the file extension. - * @param int $i Optional counter for appending to the filename, default is 1. - * @return string The generated filename for the font face asset. - */ - static private function get_filename_from_font_face( $font_face, $url, $i = 1 ) { - $extension = pathinfo( $url, PATHINFO_EXTENSION ); - $family = sanitize_title( $font_face['fontFamily'] ); - $style = sanitize_title( $font_face['fontStyle'] ); - $weight = sanitize_title( $font_face['fontWeight'] ); - $filename = "{$family}_{$style}_{$weight}"; - if ( $i > 1 ) { - $filename .= "_{$i}"; - } - return "{$filename}.{$extension}"; - } - /** * Downloads font face assets. * @@ -304,7 +259,7 @@ private function download_font_face_assets( $font_face ) { $new_font_face['src'] = array(); $i = 0; foreach ( $srcs as $src ) { - $filename = self::get_filename_from_font_face( $font_face, $src, $i++ ); + $filename = WP_Font_Family_Utils::get_filename_from_font_face( $font_face, $src, $i++ ); $new_src = $this->download_asset( $src, $filename ); if ( $new_src ) { $new_font_face['src'][] = $new_src; @@ -415,7 +370,7 @@ private function create_font_post() { */ private function update_font_post( $post ) { $post_font_data = json_decode( $post->post_content, true ); - $new_data = $this->merge_fonts( $post_font_data, $this->data ); + $new_data = WP_Font_Family_Utils->merge_fonts_data( $post_font_data, $this->data ); $this->data = $new_data; $post = array( diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index f5a22d754ffe7b..e5cc1c18525b4d 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -34,17 +34,6 @@ static public function define_fonts_directory() { define( 'WP_FONTS_DIR', self::get_fonts_directory() ); } - /** - * Returns whether the given file has a font MIME type. - * - * @param string $filepath The file to check. - * @return bool True if the file has a font MIME type, false otherwise. - */ - static public function has_font_mime_type( $filepath ) { - $filetype = wp_check_filetype( $filepath, self::ALLOWED_FONT_MIME_TYPES ); - return in_array( $filetype['type'], self::ALLOWED_FONT_MIME_TYPES, true ); - } - } add_action( 'init', array( 'WP_Fonts_Library', 'define_fonts_directory' ) ); diff --git a/lib/load.php b/lib/load.php index 9a153568bfdc5e..57ffad6c08ee60 100644 --- a/lib/load.php +++ b/lib/load.php @@ -165,6 +165,7 @@ function gutenberg_is_experiment_enabled( $name ) { // Fonts Library. require __DIR__ . '/experimental/fonts-library/class-wp-fonts-library.php'; +require __DIR__ . '/experimental/fonts-library/class-wp-font-family-utils.php'; require __DIR__ . '/experimental/fonts-library/class-wp-font-family.php'; require __DIR__ . '/experimental/fonts-library/class-wp-rest-fonts-library-controller.php'; diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php new file mode 100644 index 00000000000000..a4b75edf56e449 --- /dev/null +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -0,0 +1,34 @@ + 'Piazzolla', + 'slug' => 'piazzolla', + 'fontFamily' => 'Piazzolla', + 'fontFace' => [ + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + 'src' => [ + 'http://example.com/fonts/piazzolla1.ttf', + ] + ) + ] + ); + + $font = new WP_Font_Family( $data ); + $this->assertEquals( $font->get_data()['slug'], 'piazzolla' ); + $this->assertEquals( count( $font->get_data()['fontFace'] ), 1 ); + } + + +} diff --git a/phpunit/fonts-library/class-wp-font-family-utils-test.php b/phpunit/fonts-library/class-wp-font-family-utils-test.php new file mode 100644 index 00000000000000..f75ac98818f8fb --- /dev/null +++ b/phpunit/fonts-library/class-wp-font-family-utils-test.php @@ -0,0 +1,130 @@ +assertFalse( + WP_Font_Family_Utils::has_font_mime_type( '/temp/not-a-font.ttf.exe' ) + ); + $this->assertFalse( + WP_Font_Family_Utils::has_font_mime_type( '/temp/not-a-font.otf.php' ) + ); + $this->assertTrue( + WP_Font_Family_Utils::has_font_mime_type( '/temp/piazzolla_400_italic.ttf' ) + ); + $this->assertTrue( + WP_Font_Family_Utils::has_font_mime_type( '/temp/piazzolla_400_italic.otf' ) + ); + $this->assertTrue( + WP_Font_Family_Utils::has_font_mime_type( '/temp/piazzolla_400_italic.woff' ) + ); + $this->assertTrue( + WP_Font_Family_Utils::has_font_mime_type( '/temp/piazzolla_400_italic.woff2' ) + ); + } + + function test_get_filename_from_font_face () { + $font_face = array ( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + 'src' => [ + 'http://example.com/fonts/piazzolla1.ttf', + 'http://example.com/fonts/piazzolla2.ttf', + 'http://example.com/fonts/piazzolla3.ttf', + ] + ); + + $this->assertEquals( + WP_Font_Family_Utils::get_filename_from_font_face( $font_face, $font_face['src'][0] ), + 'piazzolla_italic_400.ttf' + ); + + $this->assertEquals( + WP_Font_Family_Utils::get_filename_from_font_face( $font_face, $font_face['src'][1], 2 ), + 'piazzolla_italic_400_2.ttf' + ); + + $this->assertEquals( + WP_Font_Family_Utils::get_filename_from_font_face( $font_face, $font_face['src'][2], 3 ), + 'piazzolla_italic_400_3.ttf' + ); + } + + function test_merge_fonts_data () { + $font1 = array( + 'slug' => 'Piazzolla', + 'name' => 'Piazzolla', + 'fontFamily'=> 'Piazzolla', + 'fontFace'=> [ + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + 'src' => 'http://example.com/fonts/piazzolla_400_italic.ttf' + ), + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '500', + 'src' => 'http://example.com/fonts/piazzolla_500_italic.ttf' + ) + ] + ); + + $font2 = array( + 'slug' => 'Piazzolla', + 'fontFamily'=> 'Piazzolla', + 'fontFace'=> [ + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + 'src' => 'http://example.com/fonts/piazzolla_400_italic.ttf' + ), + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'normal', + 'fontWeight' => '400', + 'src' => 'http://example.com/fonts/piazzolla_400_normal.ttf' + ), + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '700', + 'src' => 'http://example.com/fonts/piazzolla_700_italic.ttf' + ) + ] + ); + + $font3 = array( + 'slug'=> 'encode-sans', + 'name'=> 'Encode Sans', + 'fontFamily'=> 'Encode Sans', + ); + + // Fonts with same slug should be merged + $merged_font = WP_Font_Family_Utils::merge_fonts_data( $font1, $font2 ); + $this->assertFalse( $merged_font instanceof WP_Error ); + + // Total of font faces without duplicates + $this->assertEquals( + count( $merged_font['fontFace'] ), 4 + ); + + // Missing keys should be added to the merged result + $this->assertEquals( + $merged_font['name'], 'Piazzolla' + ); + + // Fonts with different slugs should not be merged + $merged_font = WP_Font_Family_Utils::merge_fonts_data( $font1, $font3 ); + $this->assertTrue( $merged_font instanceof WP_Error ); + } + +} diff --git a/phpunit/fonts-library/class-wp-fonts-library-test.php b/phpunit/fonts-library/class-wp-fonts-library-test.php index 0a1b02dfd70d60..c190b646497ff8 100644 --- a/phpunit/fonts-library/class-wp-fonts-library-test.php +++ b/phpunit/fonts-library/class-wp-fonts-library-test.php @@ -1,15 +1,22 @@ assertTrue( str_contains( WP_Font_Family::get_fonts_directory(), '/wp-content/fonts' ) ); + $this->assertTrue( + str_ends_with( WP_Fonts_Library::get_fonts_directory(), '/wp-content/fonts' ) + ); } - -} \ No newline at end of file + function test_get_relative_fonts_path () { + $this->assertTrue( + str_ends_with( WP_Fonts_Library::get_relative_fonts_path(), '/wp-content/fonts/' ) + ); + } + +} From 6163367e59db9013250b52ac254520ce6730c310 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 19 Jul 2023 10:05:02 -0300 Subject: [PATCH 024/169] add tests font Font Family class --- .../class-wp-font-family-test.php | 56 ++++++++++++------- 1 file changed, 37 insertions(+), 19 deletions(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index a4b75edf56e449..c6326b877c7efc 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -7,28 +7,46 @@ class WP_Font_Family_Test extends WP_UnitTestCase { - function test_construct () { - - $data = array( - 'name' => 'Piazzolla', - 'slug' => 'piazzolla', - 'fontFamily' => 'Piazzolla', - 'fontFace' => [ - array( - 'fontFamily' => 'Piazzolla', - 'fontStyle' => 'italic', - 'fontWeight' => '400', - 'src' => [ - 'http://example.com/fonts/piazzolla1.ttf', - ] - ) - ] - ); - - $font = new WP_Font_Family( $data ); + const FONT_DATA_1 = array( + 'name' => 'Piazzolla', + 'slug' => 'piazzolla', + 'fontFamily' => 'Piazzolla', + 'fontFace' => [ + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + 'src' => [ + 'http://example.com/fonts/piazzolla1.ttf', + ] + ) + ] + ); + + const FONT_DATA_2 = array( + 'name' => 'Arial', + 'slug' => 'arial', + 'fontFamily' => 'Arial', + ); + + function test_get_data () { + $font = new WP_Font_Family( self::FONT_DATA_1 ); $this->assertEquals( $font->get_data()['slug'], 'piazzolla' ); $this->assertEquals( count( $font->get_data()['fontFace'] ), 1 ); } + function test_get_data_as_json () { + $font = new WP_Font_Family( self::FONT_DATA_1 ); + $this->assertEquals( $font->get_data_as_json(), wp_json_encode( self::FONT_DATA_1 ) ); + } + + function test_has_font_faces () { + $font1 = new WP_Font_Family( self::FONT_DATA_1 ); + $this->assertTrue( $font1->has_font_faces() ); + + $font2 = new WP_Font_Family( self::FONT_DATA_2 ); + $this->assertFalse( $font2->has_font_faces() ); + } + } From ced015c0f852731728028cc3af07f8d53dfaf908 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 19 Jul 2023 12:30:31 -0300 Subject: [PATCH 025/169] Create fonts dir at init of wordpress --- lib/experimental/fonts-library/class-wp-fonts-library.php | 6 ++++++ .../class-wp-rest-fonts-library-controller.php | 3 --- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index e5cc1c18525b4d..deffc6b21d8a7c 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -34,6 +34,12 @@ static public function define_fonts_directory() { define( 'WP_FONTS_DIR', self::get_fonts_directory() ); } + static public function create_fonts_directory () { + // Create fonts directory if it doesn't exist. + wp_mkdir_p( self::get_fonts_directory() ); + } + } add_action( 'init', array( 'WP_Fonts_Library', 'define_fonts_directory' ) ); +add_action( 'init', array( 'WP_Fonts_Library', 'create_fonts_directory' ) ); \ No newline at end of file diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index ce180df6612108..29dc8aedeb7078 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -93,9 +93,6 @@ function update_fonts_library_permissions_check() { ); } - // Create fonts directory if it doesn't exist. - wp_mkdir_p( WP_FONTS_DIR ); - // The update endpoints requires write access to the temp and the fonts directories. $temp_dir = get_temp_dir(); if ( ! is_writable( $temp_dir ) || ! wp_is_writable( WP_FONTS_DIR ) ) { From 58dba259d0fdcf20ae115e92ebab46485ef7eb4a Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 19 Jul 2023 12:31:03 -0300 Subject: [PATCH 026/169] Testing and refactoring WP_Font_Family class --- .../fonts-library/class-wp-font-family.php | 17 +++-- .../class-wp-font-family-test.php | 63 +++++++++++++++++-- 2 files changed, 67 insertions(+), 13 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 1f4f5dc4a3dcd6..e20753f5ebbc19 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -167,7 +167,6 @@ private function download_asset( $src, $filename ) { // Downloads the font asset or returns false. $temp_file = download_url( $src ); if ( is_wp_error( $temp_file ) ) { - @unlink( $temp_file ); return false; } @@ -181,7 +180,7 @@ private function download_asset( $src, $filename ) { } // Returns the relative path to the downloaded font asset to be used as font face src. - return "{WP_Fonts_Library::get_relative_fonts_path()}{$filename}"; + return WP_Fonts_Library::get_relative_fonts_path() . $filename; } /** @@ -211,7 +210,7 @@ private function move_font_face_asset( $font_face, $file ) { if ( $file_was_moved ) { // If the file was successfully moved, we update the font face definition to reference the new file location. - $new_font_face['src'] = "{WP_Fonts_Library::get_relative_fonts_path()}{$filename}"; + $new_font_face['src'] = WP_Fonts_Library::get_relative_fonts_path() . $filename; } return $new_font_face; @@ -278,7 +277,7 @@ private function download_font_face_assets( $font_face ) { * @param array $files An array of files to be installed. * @return bool|WP_Error */ - public function download_or_move_font_faces( $files ) { + private function download_or_move_font_faces( $files ) { if ( $this->has_font_faces() ) { $new_font_faces = array(); foreach ( $this->data['fontFace'] as $font_face ) { @@ -299,7 +298,7 @@ public function download_or_move_font_faces( $files ) { $this->data['fontFace'] = $new_font_faces; return true; } - return WP_Error( 'font_face_download_failed', __( 'The font face assets could not be written.', 'gutenberg' ) ); + return new WP_Error( 'font_face_download_failed', __( 'The font face assets could not be written.', 'gutenberg' ) ); } return true; } @@ -309,7 +308,7 @@ public function download_or_move_font_faces( $files ) { * * @return WP_Post|null The post for this font family object or null if the post does not exist. */ - private function get_font_post() { + public function get_font_post() { $args = array( 'post_type' => 'wp_fonts_library', 'post_name' => $this->data['slug'], @@ -387,7 +386,7 @@ private function update_font_post( $post ) { * * @return WP_Post */ - public function create_or_update_font_post() { + private function create_or_update_font_post() { $post = $this->get_font_post(); if ( $post ) { return $this->update_font_post( $post ); @@ -408,9 +407,9 @@ public function install( $files = null ) { if ( $post_id ) { return $this->get_data(); } - return WP_Error( 'font_post_creation_failed', __( 'Font post creation failed', 'gutenberg' ) ); + return new WP_Error( 'font_post_creation_failed', __( 'Font post creation failed', 'gutenberg' ) ); } - return WP_Error( 'font_face_download_failed', __( 'The font face assets could not be written.', 'gutenberg' ) ); + return new WP_Error( 'font_face_download_failed', __( 'The font face assets could not be written.', 'gutenberg' ) ); } } diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index c6326b877c7efc..bc221d7f204834 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -16,9 +16,7 @@ class WP_Font_Family_Test extends WP_UnitTestCase { 'fontFamily' => 'Piazzolla', 'fontStyle' => 'italic', 'fontWeight' => '400', - 'src' => [ - 'http://example.com/fonts/piazzolla1.ttf', - ] + 'src' => 'http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf' ) ] ); @@ -43,10 +41,67 @@ function test_get_data_as_json () { function test_has_font_faces () { $font1 = new WP_Font_Family( self::FONT_DATA_1 ); $this->assertTrue( $font1->has_font_faces() ); - + $font2 = new WP_Font_Family( self::FONT_DATA_2 ); $this->assertFalse( $font2->has_font_faces() ); } + function test_install_and_uninstall_google_font () { + $font = new WP_Font_Family( self::FONT_DATA_1 ); + $font->install(); + + // Check that the post was created + $post = $font->get_font_post(); + $this->assertInstanceof( 'WP_Post', $post ); + + // Check that the post has the correct data + $this->assertEquals( $post->post_title, 'Piazzolla' ); + $this->assertEquals( $post->post_name, 'piazzolla' ); + $content = json_decode( $post->post_content, true ); + $this->assertEquals( $content['fontFamily'], 'Piazzolla' ); + $this->assertEquals( $content['slug'], 'piazzolla' ); + $this->assertEquals( $content['fontFace'][0]['fontFamily'], 'Piazzolla' ); + $this->assertEquals( $content['fontFace'][0]['fontStyle'], 'italic' ); + $this->assertEquals( $content['fontFace'][0]['fontWeight'], '400' ); + + // Check that the font file src was updated to the local font asset + $this->assertTrue( str_ends_with( $content['fontFace'][0]['src'], '/piazzolla_italic_400.ttf' ) ); + + // Check that the font file was created + $this->assertTrue( file_exists( WP_FONTS_DIR . '/piazzolla_italic_400.ttf' ) ); + + $font->uninstall(); + + // Check that the post was deleted + $post = $font->get_font_post(); + $this->assertNull( $post ); + + // Check that the font asset was deleted + $this->assertFalse( file_exists( WP_FONTS_DIR . '/piazzolla_italic_400.ttf' ) ); + } + + function test_install_and_uninstall_font_without_faces () { + $font = new WP_Font_Family( self::FONT_DATA_2 ); + $font->install(); + + // Check that the post was created + $post = $font->get_font_post(); + $this->assertInstanceof( 'WP_Post', $post ); + + // Check that the post has the correct data + $this->assertEquals( $post->post_title, 'Arial' ); + $this->assertEquals( $post->post_name, 'arial' ); + $content = json_decode( $post->post_content, true ); + $this->assertEquals( $content['fontFamily'], 'Arial' ); + $this->assertEquals( $content['slug'], 'arial' ); + $this->assertArrayNotHasKey( 'fontFace', $content ); + + $font->uninstall(); + + // Check that the post was deleted + $post = $font->get_font_post(); + $this->assertNull( $post ); + } + } From 228f3d0826561ef0541089c00289e834a2a843c4 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 19 Jul 2023 12:43:46 -0300 Subject: [PATCH 027/169] PHP formatting --- .../fonts-library/class-wp-font-family.php | 2 +- .../fonts-library/class-wp-fonts-library.php | 26 +-- .../class-wp-font-family-test.php | 190 +++++++-------- .../class-wp-font-family-utils-test.php | 220 +++++++++--------- .../class-wp-fonts-library-test.php | 22 +- 5 files changed, 231 insertions(+), 229 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index e20753f5ebbc19..104504913b3162 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -20,7 +20,7 @@ class WP_Font_Family { * @var array */ private $data; - + /** * WP_Font_Family constructor. diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index deffc6b21d8a7c..8195453481ba2c 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -2,7 +2,7 @@ class WP_Fonts_Library { - const ALLOWED_FONT_MIME_TYPES = array( + const ALLOWED_FONT_MIME_TYPES = array( 'otf' => 'font/otf', 'ttf' => 'font/ttf', 'woff' => 'font/woff', @@ -18,14 +18,14 @@ static public function get_fonts_directory() { return path_join( WP_CONTENT_DIR, 'fonts' ); } - /** - * Returns the relative path to the fonts directory. - * - * @return string Relative path to the fonts directory. - */ - static public function get_relative_fonts_path() { - return content_url( '/fonts/' ); - } + /** + * Returns the relative path to the fonts directory. + * + * @return string Relative path to the fonts directory. + */ + static public function get_relative_fonts_path() { + return content_url( '/fonts/' ); + } /** * Define WP_FONTS_DIR constant to make it available to the rest of the code. @@ -34,12 +34,12 @@ static public function define_fonts_directory() { define( 'WP_FONTS_DIR', self::get_fonts_directory() ); } - static public function create_fonts_directory () { - // Create fonts directory if it doesn't exist. + static public function create_fonts_directory() { + // Create fonts directory if it doesn't exist. wp_mkdir_p( self::get_fonts_directory() ); - } + } } add_action( 'init', array( 'WP_Fonts_Library', 'define_fonts_directory' ) ); -add_action( 'init', array( 'WP_Fonts_Library', 'create_fonts_directory' ) ); \ No newline at end of file +add_action( 'init', array( 'WP_Fonts_Library', 'create_fonts_directory' ) ); diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index bc221d7f204834..0ee8e084312c24 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -7,101 +7,101 @@ class WP_Font_Family_Test extends WP_UnitTestCase { - const FONT_DATA_1 = array( - 'name' => 'Piazzolla', - 'slug' => 'piazzolla', - 'fontFamily' => 'Piazzolla', - 'fontFace' => [ - array( - 'fontFamily' => 'Piazzolla', - 'fontStyle' => 'italic', - 'fontWeight' => '400', - 'src' => 'http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf' - ) - ] - ); - - const FONT_DATA_2 = array( - 'name' => 'Arial', - 'slug' => 'arial', - 'fontFamily' => 'Arial', - ); - - function test_get_data () { - $font = new WP_Font_Family( self::FONT_DATA_1 ); - $this->assertEquals( $font->get_data()['slug'], 'piazzolla' ); - $this->assertEquals( count( $font->get_data()['fontFace'] ), 1 ); - } - - function test_get_data_as_json () { - $font = new WP_Font_Family( self::FONT_DATA_1 ); - $this->assertEquals( $font->get_data_as_json(), wp_json_encode( self::FONT_DATA_1 ) ); - } - - function test_has_font_faces () { - $font1 = new WP_Font_Family( self::FONT_DATA_1 ); - $this->assertTrue( $font1->has_font_faces() ); - - $font2 = new WP_Font_Family( self::FONT_DATA_2 ); - $this->assertFalse( $font2->has_font_faces() ); - } - - function test_install_and_uninstall_google_font () { - $font = new WP_Font_Family( self::FONT_DATA_1 ); - $font->install(); - - // Check that the post was created - $post = $font->get_font_post(); - $this->assertInstanceof( 'WP_Post', $post ); - - // Check that the post has the correct data - $this->assertEquals( $post->post_title, 'Piazzolla' ); - $this->assertEquals( $post->post_name, 'piazzolla' ); - $content = json_decode( $post->post_content, true ); - $this->assertEquals( $content['fontFamily'], 'Piazzolla' ); - $this->assertEquals( $content['slug'], 'piazzolla' ); - $this->assertEquals( $content['fontFace'][0]['fontFamily'], 'Piazzolla' ); - $this->assertEquals( $content['fontFace'][0]['fontStyle'], 'italic' ); - $this->assertEquals( $content['fontFace'][0]['fontWeight'], '400' ); - - // Check that the font file src was updated to the local font asset - $this->assertTrue( str_ends_with( $content['fontFace'][0]['src'], '/piazzolla_italic_400.ttf' ) ); - - // Check that the font file was created - $this->assertTrue( file_exists( WP_FONTS_DIR . '/piazzolla_italic_400.ttf' ) ); - - $font->uninstall(); - - // Check that the post was deleted - $post = $font->get_font_post(); - $this->assertNull( $post ); - - // Check that the font asset was deleted - $this->assertFalse( file_exists( WP_FONTS_DIR . '/piazzolla_italic_400.ttf' ) ); - } - - function test_install_and_uninstall_font_without_faces () { - $font = new WP_Font_Family( self::FONT_DATA_2 ); - $font->install(); - - // Check that the post was created - $post = $font->get_font_post(); - $this->assertInstanceof( 'WP_Post', $post ); - - // Check that the post has the correct data - $this->assertEquals( $post->post_title, 'Arial' ); - $this->assertEquals( $post->post_name, 'arial' ); - $content = json_decode( $post->post_content, true ); - $this->assertEquals( $content['fontFamily'], 'Arial' ); - $this->assertEquals( $content['slug'], 'arial' ); - $this->assertArrayNotHasKey( 'fontFace', $content ); - - $font->uninstall(); - - // Check that the post was deleted - $post = $font->get_font_post(); - $this->assertNull( $post ); - } + const FONT_DATA_1 = array( + 'name' => 'Piazzolla', + 'slug' => 'piazzolla', + 'fontFamily' => 'Piazzolla', + 'fontFace' => array( + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + 'src' => 'http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf', + ), + ), + ); + + const FONT_DATA_2 = array( + 'name' => 'Arial', + 'slug' => 'arial', + 'fontFamily' => 'Arial', + ); + + function test_get_data() { + $font = new WP_Font_Family( self::FONT_DATA_1 ); + $this->assertEquals( $font->get_data()['slug'], 'piazzolla' ); + $this->assertEquals( count( $font->get_data()['fontFace'] ), 1 ); + } + + function test_get_data_as_json() { + $font = new WP_Font_Family( self::FONT_DATA_1 ); + $this->assertEquals( $font->get_data_as_json(), wp_json_encode( self::FONT_DATA_1 ) ); + } + + function test_has_font_faces() { + $font1 = new WP_Font_Family( self::FONT_DATA_1 ); + $this->assertTrue( $font1->has_font_faces() ); + + $font2 = new WP_Font_Family( self::FONT_DATA_2 ); + $this->assertFalse( $font2->has_font_faces() ); + } + + function test_install_and_uninstall_google_font() { + $font = new WP_Font_Family( self::FONT_DATA_1 ); + $font->install(); + + // Check that the post was created + $post = $font->get_font_post(); + $this->assertInstanceof( 'WP_Post', $post ); + + // Check that the post has the correct data + $this->assertEquals( $post->post_title, 'Piazzolla' ); + $this->assertEquals( $post->post_name, 'piazzolla' ); + $content = json_decode( $post->post_content, true ); + $this->assertEquals( $content['fontFamily'], 'Piazzolla' ); + $this->assertEquals( $content['slug'], 'piazzolla' ); + $this->assertEquals( $content['fontFace'][0]['fontFamily'], 'Piazzolla' ); + $this->assertEquals( $content['fontFace'][0]['fontStyle'], 'italic' ); + $this->assertEquals( $content['fontFace'][0]['fontWeight'], '400' ); + + // Check that the font file src was updated to the local font asset + $this->assertTrue( str_ends_with( $content['fontFace'][0]['src'], '/piazzolla_italic_400.ttf' ) ); + + // Check that the font file was created + $this->assertTrue( file_exists( WP_FONTS_DIR . '/piazzolla_italic_400.ttf' ) ); + + $font->uninstall(); + + // Check that the post was deleted + $post = $font->get_font_post(); + $this->assertNull( $post ); + + // Check that the font asset was deleted + $this->assertFalse( file_exists( WP_FONTS_DIR . '/piazzolla_italic_400.ttf' ) ); + } + + function test_install_and_uninstall_font_without_faces() { + $font = new WP_Font_Family( self::FONT_DATA_2 ); + $font->install(); + + // Check that the post was created + $post = $font->get_font_post(); + $this->assertInstanceof( 'WP_Post', $post ); + + // Check that the post has the correct data + $this->assertEquals( $post->post_title, 'Arial' ); + $this->assertEquals( $post->post_name, 'arial' ); + $content = json_decode( $post->post_content, true ); + $this->assertEquals( $content['fontFamily'], 'Arial' ); + $this->assertEquals( $content['slug'], 'arial' ); + $this->assertArrayNotHasKey( 'fontFace', $content ); + + $font->uninstall(); + + // Check that the post was deleted + $post = $font->get_font_post(); + $this->assertNull( $post ); + } } diff --git a/phpunit/fonts-library/class-wp-font-family-utils-test.php b/phpunit/fonts-library/class-wp-font-family-utils-test.php index f75ac98818f8fb..0522d64a6c0f6b 100644 --- a/phpunit/fonts-library/class-wp-font-family-utils-test.php +++ b/phpunit/fonts-library/class-wp-font-family-utils-test.php @@ -7,124 +7,126 @@ class WP_Font_Family_Utils_Test extends WP_UnitTestCase { - function test_has_font_mime_type () { - $this->assertFalse( - WP_Font_Family_Utils::has_font_mime_type( '/temp/not-a-font.ttf.exe' ) - ); - $this->assertFalse( - WP_Font_Family_Utils::has_font_mime_type( '/temp/not-a-font.otf.php' ) - ); - $this->assertTrue( - WP_Font_Family_Utils::has_font_mime_type( '/temp/piazzolla_400_italic.ttf' ) - ); - $this->assertTrue( - WP_Font_Family_Utils::has_font_mime_type( '/temp/piazzolla_400_italic.otf' ) - ); - $this->assertTrue( - WP_Font_Family_Utils::has_font_mime_type( '/temp/piazzolla_400_italic.woff' ) - ); - $this->assertTrue( - WP_Font_Family_Utils::has_font_mime_type( '/temp/piazzolla_400_italic.woff2' ) - ); - } + function test_has_font_mime_type() { + $this->assertFalse( + WP_Font_Family_Utils::has_font_mime_type( '/temp/not-a-font.ttf.exe' ) + ); + $this->assertFalse( + WP_Font_Family_Utils::has_font_mime_type( '/temp/not-a-font.otf.php' ) + ); + $this->assertTrue( + WP_Font_Family_Utils::has_font_mime_type( '/temp/piazzolla_400_italic.ttf' ) + ); + $this->assertTrue( + WP_Font_Family_Utils::has_font_mime_type( '/temp/piazzolla_400_italic.otf' ) + ); + $this->assertTrue( + WP_Font_Family_Utils::has_font_mime_type( '/temp/piazzolla_400_italic.woff' ) + ); + $this->assertTrue( + WP_Font_Family_Utils::has_font_mime_type( '/temp/piazzolla_400_italic.woff2' ) + ); + } - function test_get_filename_from_font_face () { - $font_face = array ( - 'fontFamily' => 'Piazzolla', - 'fontStyle' => 'italic', - 'fontWeight' => '400', - 'src' => [ - 'http://example.com/fonts/piazzolla1.ttf', - 'http://example.com/fonts/piazzolla2.ttf', - 'http://example.com/fonts/piazzolla3.ttf', - ] - ); + function test_get_filename_from_font_face() { + $font_face = array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + 'src' => array( + 'http://example.com/fonts/piazzolla1.ttf', + 'http://example.com/fonts/piazzolla2.ttf', + 'http://example.com/fonts/piazzolla3.ttf', + ), + ); - $this->assertEquals( - WP_Font_Family_Utils::get_filename_from_font_face( $font_face, $font_face['src'][0] ), - 'piazzolla_italic_400.ttf' - ); + $this->assertEquals( + WP_Font_Family_Utils::get_filename_from_font_face( $font_face, $font_face['src'][0] ), + 'piazzolla_italic_400.ttf' + ); - $this->assertEquals( - WP_Font_Family_Utils::get_filename_from_font_face( $font_face, $font_face['src'][1], 2 ), - 'piazzolla_italic_400_2.ttf' - ); + $this->assertEquals( + WP_Font_Family_Utils::get_filename_from_font_face( $font_face, $font_face['src'][1], 2 ), + 'piazzolla_italic_400_2.ttf' + ); - $this->assertEquals( - WP_Font_Family_Utils::get_filename_from_font_face( $font_face, $font_face['src'][2], 3 ), - 'piazzolla_italic_400_3.ttf' - ); - } - - function test_merge_fonts_data () { - $font1 = array( - 'slug' => 'Piazzolla', - 'name' => 'Piazzolla', - 'fontFamily'=> 'Piazzolla', - 'fontFace'=> [ - array( - 'fontFamily' => 'Piazzolla', - 'fontStyle' => 'italic', - 'fontWeight' => '400', - 'src' => 'http://example.com/fonts/piazzolla_400_italic.ttf' - ), - array( - 'fontFamily' => 'Piazzolla', - 'fontStyle' => 'italic', - 'fontWeight' => '500', - 'src' => 'http://example.com/fonts/piazzolla_500_italic.ttf' - ) - ] - ); + $this->assertEquals( + WP_Font_Family_Utils::get_filename_from_font_face( $font_face, $font_face['src'][2], 3 ), + 'piazzolla_italic_400_3.ttf' + ); + } - $font2 = array( - 'slug' => 'Piazzolla', - 'fontFamily'=> 'Piazzolla', - 'fontFace'=> [ - array( - 'fontFamily' => 'Piazzolla', - 'fontStyle' => 'italic', - 'fontWeight' => '400', - 'src' => 'http://example.com/fonts/piazzolla_400_italic.ttf' - ), - array( - 'fontFamily' => 'Piazzolla', - 'fontStyle' => 'normal', - 'fontWeight' => '400', - 'src' => 'http://example.com/fonts/piazzolla_400_normal.ttf' - ), - array( - 'fontFamily' => 'Piazzolla', - 'fontStyle' => 'italic', - 'fontWeight' => '700', - 'src' => 'http://example.com/fonts/piazzolla_700_italic.ttf' - ) - ] - ); + function test_merge_fonts_data() { + $font1 = array( + 'slug' => 'Piazzolla', + 'name' => 'Piazzolla', + 'fontFamily' => 'Piazzolla', + 'fontFace' => array( + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + 'src' => 'http://example.com/fonts/piazzolla_400_italic.ttf', + ), + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '500', + 'src' => 'http://example.com/fonts/piazzolla_500_italic.ttf', + ), + ), + ); - $font3 = array( - 'slug'=> 'encode-sans', - 'name'=> 'Encode Sans', - 'fontFamily'=> 'Encode Sans', - ); + $font2 = array( + 'slug' => 'Piazzolla', + 'fontFamily' => 'Piazzolla', + 'fontFace' => array( + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + 'src' => 'http://example.com/fonts/piazzolla_400_italic.ttf', + ), + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'normal', + 'fontWeight' => '400', + 'src' => 'http://example.com/fonts/piazzolla_400_normal.ttf', + ), + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '700', + 'src' => 'http://example.com/fonts/piazzolla_700_italic.ttf', + ), + ), + ); - // Fonts with same slug should be merged - $merged_font = WP_Font_Family_Utils::merge_fonts_data( $font1, $font2 ); - $this->assertFalse( $merged_font instanceof WP_Error ); + $font3 = array( + 'slug' => 'encode-sans', + 'name' => 'Encode Sans', + 'fontFamily' => 'Encode Sans', + ); - // Total of font faces without duplicates - $this->assertEquals( - count( $merged_font['fontFace'] ), 4 - ); + // Fonts with same slug should be merged + $merged_font = WP_Font_Family_Utils::merge_fonts_data( $font1, $font2 ); + $this->assertFalse( $merged_font instanceof WP_Error ); - // Missing keys should be added to the merged result - $this->assertEquals( - $merged_font['name'], 'Piazzolla' - ); + // Total of font faces without duplicates + $this->assertEquals( + count( $merged_font['fontFace'] ), + 4 + ); - // Fonts with different slugs should not be merged - $merged_font = WP_Font_Family_Utils::merge_fonts_data( $font1, $font3 ); - $this->assertTrue( $merged_font instanceof WP_Error ); - } + // Missing keys should be added to the merged result + $this->assertEquals( + $merged_font['name'], + 'Piazzolla' + ); + + // Fonts with different slugs should not be merged + $merged_font = WP_Font_Family_Utils::merge_fonts_data( $font1, $font3 ); + $this->assertTrue( $merged_font instanceof WP_Error ); + } } diff --git a/phpunit/fonts-library/class-wp-fonts-library-test.php b/phpunit/fonts-library/class-wp-fonts-library-test.php index c190b646497ff8..fa9edfc4c04d8a 100644 --- a/phpunit/fonts-library/class-wp-fonts-library-test.php +++ b/phpunit/fonts-library/class-wp-fonts-library-test.php @@ -7,16 +7,16 @@ class WP_Fonts_Library_Test extends WP_UnitTestCase { - function test_get_fonts_directory () { - $this->assertTrue( - str_ends_with( WP_Fonts_Library::get_fonts_directory(), '/wp-content/fonts' ) - ); - } + function test_get_fonts_directory() { + $this->assertTrue( + str_ends_with( WP_Fonts_Library::get_fonts_directory(), '/wp-content/fonts' ) + ); + } + + function test_get_relative_fonts_path() { + $this->assertTrue( + str_ends_with( WP_Fonts_Library::get_relative_fonts_path(), '/wp-content/fonts/' ) + ); + } - function test_get_relative_fonts_path () { - $this->assertTrue( - str_ends_with( WP_Fonts_Library::get_relative_fonts_path(), '/wp-content/fonts/' ) - ); - } - } From 462b80ad53164c100156a09cb505d9dbdc1eceba Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 19 Jul 2023 12:57:54 -0300 Subject: [PATCH 028/169] fix syntax --- lib/experimental/fonts-library/class-wp-font-family.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 104504913b3162..c19a49c2f31d24 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -369,7 +369,7 @@ private function create_font_post() { */ private function update_font_post( $post ) { $post_font_data = json_decode( $post->post_content, true ); - $new_data = WP_Font_Family_Utils->merge_fonts_data( $post_font_data, $this->data ); + $new_data = WP_Font_Family_Utils::merge_fonts_data( $post_font_data, $this->data ); $this->data = $new_data; $post = array( From 849a2d5a122a46bd7700163cdb5ba280165aa573 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 19 Jul 2023 13:05:28 -0300 Subject: [PATCH 029/169] move comment --- lib/experimental/fonts-library/class-wp-fonts-library.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 8195453481ba2c..b9a259fabcb5e4 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -34,8 +34,10 @@ static public function define_fonts_directory() { define( 'WP_FONTS_DIR', self::get_fonts_directory() ); } + /** + * Create fonts directory if it doesn't exist. + */ static public function create_fonts_directory() { - // Create fonts directory if it doesn't exist. wp_mkdir_p( self::get_fonts_directory() ); } From 2c81cad25b6df9d8d3a152c4c0a79ade65bb0156 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 19 Jul 2023 14:11:02 -0300 Subject: [PATCH 030/169] update wording Co-authored-by: Jeff Ong --- lib/experimental/fonts-library/class-wp-font-family.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index c19a49c2f31d24..edce5d90c329ae 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -231,7 +231,7 @@ private function sanitize() { ), ), ); - // Creates a new WP_Theme_JSON object with the new fonts to mmake profit of the sanitization and validation. + // Creates a new WP_Theme_JSON object with the new fonts to leverage sanitization and validation. $theme_json = new WP_Theme_JSON( $fonts_json ); $theme_data = $theme_json->get_data(); $sanitized_font = ! empty( $theme_data['settings']['typography']['fontFamilies'] ) From b610d805f7569fd19867ad7206430076e93d61c9 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 19 Jul 2023 14:11:48 -0300 Subject: [PATCH 031/169] update comment Co-authored-by: Jeff Ong --- lib/experimental/fonts-library/class-wp-font-family-utils.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family-utils.php b/lib/experimental/fonts-library/class-wp-font-family-utils.php index b0b50b64bd7d97..4724ec854565d3 100644 --- a/lib/experimental/fonts-library/class-wp-font-family-utils.php +++ b/lib/experimental/fonts-library/class-wp-font-family-utils.php @@ -10,7 +10,7 @@ */ /** - * Fonts Library class. + * A class of utilities for working with the Font Library. */ class WP_Font_Family_Utils { From d9179f3152465f8c4ca154727b10a58549640624 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 19 Jul 2023 15:16:55 -0300 Subject: [PATCH 032/169] update comment --- lib/experimental/fonts-library/class-wp-font-family.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index edce5d90c329ae..02acb8e2c5f7eb 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -398,7 +398,7 @@ private function create_or_update_font_post() { * Install the font family into the library * * @param array $files An array of files to be installed, default is null. - * @return WP_Post|WP_Error + * @return array|WP_Error */ public function install( $files = null ) { $were_assets_written = $this->download_or_move_font_faces( $files ); From 005f21af53f11aaa6b8303a04bcac045bf507617 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 19 Jul 2023 15:17:53 -0300 Subject: [PATCH 033/169] update comment --- lib/experimental/fonts-library/class-wp-font-family.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 02acb8e2c5f7eb..b995962ae1d44e 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -384,7 +384,7 @@ private function update_font_post( $post ) { /** * Creates a post for a font in the fonts library if it doesn't exist, or updates it if it does. * - * @return WP_Post + * @return int post id */ private function create_or_update_font_post() { $post = $this->get_font_post(); From 52b447f398969efc132dea9d18d2f4245a024ce3 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 19 Jul 2023 15:18:24 -0300 Subject: [PATCH 034/169] update comment --- lib/experimental/fonts-library/class-wp-font-family.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index b995962ae1d44e..17476ce5b18c40 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -344,7 +344,7 @@ private function get_data_from_post() { /** * Create a post for a font family. * - * @return int + * @return int post id */ private function create_font_post() { $post = array( @@ -365,7 +365,7 @@ private function create_font_post() { * Update a post for a font family. * * @param WP_Post $post The post to update. - * @return int + * @return int post id */ private function update_font_post( $post ) { $post_font_data = json_decode( $post->post_content, true ); From 82275a78000a89803365247f0de0295931640f41 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 20 Jul 2023 11:12:27 -0300 Subject: [PATCH 035/169] call to sanitize before creating the post --- lib/experimental/fonts-library/class-wp-font-family.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 17476ce5b18c40..5c7b5d946c1fd3 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -387,6 +387,7 @@ private function update_font_post( $post ) { * @return int post id */ private function create_or_update_font_post() { + $this->sanitize(); $post = $this->get_font_post(); if ( $post ) { return $this->update_font_post( $post ); From c9de5e96c527eef166c19614e0a314f71b412b5e Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 20 Jul 2023 15:44:07 -0300 Subject: [PATCH 036/169] fix return of method --- lib/experimental/fonts-library/class-wp-font-family.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 5c7b5d946c1fd3..458c3bc93037f4 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -190,7 +190,7 @@ private function download_asset( $src, $filename ) { * * @param array $font_face Font face to download. * @param array $file Uploaded file. - * @return array New font face with all assets downloaded and referenced in the font face definition. + * @return array|bool New font face with all assets downloaded and referenced in the font face definition or false is something failed */ private function move_font_face_asset( $font_face, $file ) { $new_font_face = $font_face; @@ -298,7 +298,7 @@ private function download_or_move_font_faces( $files ) { $this->data['fontFace'] = $new_font_faces; return true; } - return new WP_Error( 'font_face_download_failed', __( 'The font face assets could not be written.', 'gutenberg' ) ); + return false; } return true; } From 1cf6cc729c6d9b7395d3d4d3cbfc72c62185bfd9 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 20 Jul 2023 15:53:21 -0300 Subject: [PATCH 037/169] Addding a failing test for local fonts upload --- .../class-wp-font-family-test.php | 75 +++++++++++++++++++ 1 file changed, 75 insertions(+) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 0ee8e084312c24..1d348fbfc5c15c 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -104,4 +104,79 @@ function test_install_and_uninstall_font_without_faces() { } + function test_install_and_uninstall_local_fonts () { + // TODO: Fix this test. Is failing because the font file is not being copied from the temp dir to the fonts folder + // We need to figure out why move_uploaded_file call in the WP_Font_Family::move_font_face_asset function is not working while testing + $local_font = array( + 'name' => 'Inter', + 'slug' => 'inter', + 'fontFamily' => 'Inter', + 'fontFace' => [ + array ( + 'fontFamily' => 'Inter', + 'fontStyle' => 'normal', + 'fontWeight' => '400', + 'file' => 'files0', + ), + array ( + 'fontFamily' => 'Inter', + 'fontStyle' => 'normal', + 'fontWeight' => '500', + 'file' => 'files1', + ) + ] + ); + + $files = array( + "files0" => array( + "name" => "inter1.ttf", + "full_path" => "inter1.ttf", + "type" => "font/ttf", + "tmp_name" => tempnam(sys_get_temp_dir(), 'Inter-'), + "error" => 0, + "size" => 156764, + ), + "files1" => array( + "name" => "inter2.ttf", + "full_path" => "inter2.ttf", + "type" => "font/ttf", + "tmp_name" => tempnam(sys_get_temp_dir(), 'Inter-'), + "error" => 0, + "size" => 156524, + ), + ); + + $font = new WP_Font_Family( $local_font ); + $data = $font->install( $files ); + + // Check that the post was created + $post = $font->get_font_post(); + $this->assertInstanceof( 'WP_Post', $post ); + + // Check that the post has the correct data + $this->assertEquals( $post->post_title, 'Inter' ); + $this->assertEquals( $post->post_name, 'inter' ); + $content = json_decode( $post->post_content, true ); + $this->assertEquals( $content['fontFamily'], 'Inter' ); + $this->assertEquals( $content['slug'], 'inter' ); + + // Check that the font file src was updated to the local font asset + $this->assertTrue( str_ends_with( $content['fontFace'][0]['src'], '/inter_normal_400.ttf' ) ); + $this->assertTrue( str_ends_with( $content['fontFace'][1]['src'], '/inter_normal_500.ttf' ) ); + + // Check that the font file was created + $this->assertTrue( file_exists( WP_FONTS_DIR . '/inter_normal_400.ttf' ) ); + $this->assertTrue( file_exists( WP_FONTS_DIR . '/inter_normal_500.ttf' ) ); + + $font->uninstall(); + + // Check that the post was deleted + $post = $font->get_font_post(); + $this->assertNull( $post ); + + // Check that the font asset was deleted + $this->assertFalse( file_exists( WP_FONTS_DIR . '/inter_normal_400.ttf' ) ); + $this->assertFalse( file_exists( WP_FONTS_DIR . '/inter_normal_500.ttf' ) ); + } + } From 6bf1d8c79be885909db1bda0dcf9622ded5ecee1 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 20 Jul 2023 15:55:35 -0300 Subject: [PATCH 038/169] micro-optimization Co-authored-by: Tonya Mork --- .../fonts-library/class-wp-font-family-utils.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family-utils.php b/lib/experimental/fonts-library/class-wp-font-family-utils.php index 4724ec854565d3..fc501de0f67ece 100644 --- a/lib/experimental/fonts-library/class-wp-font-family-utils.php +++ b/lib/experimental/fonts-library/class-wp-font-family-utils.php @@ -26,10 +26,7 @@ class WP_Font_Family_Utils { */ static public function get_filename_from_font_face( $font_face, $url, $i = 1 ) { $extension = pathinfo( $url, PATHINFO_EXTENSION ); - $family = sanitize_title( $font_face['fontFamily'] ); - $style = sanitize_title( $font_face['fontStyle'] ); - $weight = sanitize_title( $font_face['fontWeight'] ); - $filename = "{$family}_{$style}_{$weight}"; + $filename = sanitize_title( "{$font_face['fontFamily']}_{$font_face['fontStyle']}_{$font_face['fontWeight']}" ); if ( $i > 1 ) { $filename .= "_{$i}"; } From 98faaff70aa36c275dc3d1403088097fede35b4b Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 20 Jul 2023 15:59:59 -0300 Subject: [PATCH 039/169] interting the order of static and access control keywords in method definition --- .../fonts-library/class-wp-font-family-utils.php | 6 +++--- lib/experimental/fonts-library/class-wp-font-family.php | 4 ++-- lib/experimental/fonts-library/class-wp-fonts-library.php | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family-utils.php b/lib/experimental/fonts-library/class-wp-font-family-utils.php index fc501de0f67ece..2e41d824344706 100644 --- a/lib/experimental/fonts-library/class-wp-font-family-utils.php +++ b/lib/experimental/fonts-library/class-wp-font-family-utils.php @@ -24,7 +24,7 @@ class WP_Font_Family_Utils { * @param int $i Optional counter for appending to the filename, default is 1. * @return string The generated filename for the font face asset. */ - static public function get_filename_from_font_face( $font_face, $url, $i = 1 ) { + public static function get_filename_from_font_face( $font_face, $url, $i = 1 ) { $extension = pathinfo( $url, PATHINFO_EXTENSION ); $filename = sanitize_title( "{$font_face['fontFamily']}_{$font_face['fontStyle']}_{$font_face['fontWeight']}" ); if ( $i > 1 ) { @@ -41,7 +41,7 @@ static public function get_filename_from_font_face( $font_face, $url, $i = 1 ) { * * @return array|WP_Error The merged font or WP_Error if the fonts have different slugs. */ - static public function merge_fonts_data( $font1, $font2 ) { + public static function merge_fonts_data( $font1, $font2 ) { if ( $font1['slug'] !== $font2['slug'] ) { return new WP_Error( 'fonts_must_have_same_slug', __( 'Fonts must have the same slug to be merged.', 'gutenberg' ) ); } @@ -65,7 +65,7 @@ static public function merge_fonts_data( $font1, $font2 ) { * @param string $filepath The file to check. * @return bool True if the file has a font MIME type, false otherwise. */ - static public function has_font_mime_type( $filepath ) { + public static function has_font_mime_type( $filepath ) { $filetype = wp_check_filetype( $filepath, WP_Fonts_Library::ALLOWED_FONT_MIME_TYPES ); return in_array( $filetype['type'], WP_Fonts_Library::ALLOWED_FONT_MIME_TYPES, true ); } diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 458c3bc93037f4..4d443b2e6c7044 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -105,7 +105,7 @@ public function uninstall() { * @param string $src The path of the font asset file to delete. * @return bool Whether the file was deleted. */ - static private function delete_asset( $src ) { + private static function delete_asset( $src ) { $filename = basename( $src ); $file_path = path_join( WP_FONTS_DIR, $filename ); @@ -128,7 +128,7 @@ static private function delete_asset( $src ) { * * @param array $font_face The font face array containing the 'src' attribute with the file path(s) to be deleted. */ - static private function delete_font_face_assets( $font_face ) { + private static function delete_font_face_assets( $font_face ) { $srcs = ! empty( $font_face['src'] ) && is_array( $font_face['src'] ) ? $font_face['src'] : array( $font_face['src'] ); diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index b9a259fabcb5e4..8e0bdc1eae79fb 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -14,7 +14,7 @@ class WP_Fonts_Library { * * @return string Path to the fonts directory. */ - static public function get_fonts_directory() { + public static function get_fonts_directory() { return path_join( WP_CONTENT_DIR, 'fonts' ); } @@ -23,21 +23,21 @@ static public function get_fonts_directory() { * * @return string Relative path to the fonts directory. */ - static public function get_relative_fonts_path() { + public static function get_relative_fonts_path() { return content_url( '/fonts/' ); } /** * Define WP_FONTS_DIR constant to make it available to the rest of the code. */ - static public function define_fonts_directory() { + public static function define_fonts_directory() { define( 'WP_FONTS_DIR', self::get_fonts_directory() ); } /** * Create fonts directory if it doesn't exist. */ - static public function create_fonts_directory() { + public static function create_fonts_directory() { wp_mkdir_p( self::get_fonts_directory() ); } From cba9f85164e41ea818bc425430e6367a5ee52760 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 20 Jul 2023 16:06:02 -0300 Subject: [PATCH 040/169] To avoid fatal error when the class is introduced into Core, add a guard to the opening of the file. This guard will not be merged into Core, but rather will stay in Gutenberg. Co-authored-by: tonya.mork@automattic.com --- .../fonts-library/class-wp-font-family-utils.php | 4 ++++ lib/experimental/fonts-library/class-wp-font-family.php | 5 +++++ lib/experimental/fonts-library/class-wp-fonts-library.php | 4 ++++ .../fonts-library/class-wp-rest-fonts-library-controller.php | 4 ++++ 4 files changed, 17 insertions(+) diff --git a/lib/experimental/fonts-library/class-wp-font-family-utils.php b/lib/experimental/fonts-library/class-wp-font-family-utils.php index 2e41d824344706..5a77538c2262bb 100644 --- a/lib/experimental/fonts-library/class-wp-font-family-utils.php +++ b/lib/experimental/fonts-library/class-wp-font-family-utils.php @@ -9,6 +9,10 @@ * @since X.X.X */ + if ( class_exists( 'WP_Font_Family_Utils' ) ) { + return; +} + /** * A class of utilities for working with the Font Library. */ diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 4d443b2e6c7044..364b14dde9472d 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -9,6 +9,11 @@ * @since X.X.X */ + if ( class_exists( 'WP_Font_Family' ) ) { + return; +} + + /** * Fonts Library class. */ diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 8e0bdc1eae79fb..9d0bb66cf4c08b 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -1,5 +1,9 @@ Date: Thu, 20 Jul 2023 16:10:36 -0300 Subject: [PATCH 041/169] updating comments --- lib/experimental/fonts-library/class-wp-font-family.php | 4 ++-- .../fonts-library/class-wp-fonts-library.php | 9 +++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 364b14dde9472d..a4037347661f0d 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -1,8 +1,8 @@ Date: Thu, 20 Jul 2023 16:31:18 -0300 Subject: [PATCH 042/169] adding missing access keywords for methods --- .../class-wp-rest-fonts-library-controller.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index 62bd520b1969a2..bfef96a868511f 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -73,7 +73,7 @@ public function register_routes() { * @param WP_REST_Request $request Full details about the request. * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure. */ - function uninstall_font_family( $request ) { + public function uninstall_font_family( $request ) { $data = array( 'slug' => $request['slug'], ); @@ -86,7 +86,7 @@ function uninstall_font_family( $request ) { * * @return true|WP_Error True if the request has write access for the item, WP_Error object otherwise. */ - function update_fonts_library_permissions_check() { + public function update_fonts_library_permissions_check() { if ( ! current_user_can( 'edit_theme_options' ) ) { return new WP_Error( 'rest_cannot_update_fonts_library', @@ -117,7 +117,7 @@ function update_fonts_library_permissions_check() { * * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise. */ - function read_fonts_library_permissions_check() { + public function read_fonts_library_permissions_check() { if ( ! current_user_can( 'edit_posts' ) ) { return new WP_Error( 'rest_cannot_read_fonts_library', @@ -138,7 +138,7 @@ function read_fonts_library_permissions_check() { * * @return WP_REST_Response|WP_Error The content of the "google-fonts.json" file wrapped in a WP_REST_Response object. */ - function get_google_fonts() { + public function get_google_fonts() { $file = file_get_contents( path_join( dirname( __FILE__ ), 'google-fonts.json' ) ); @@ -160,7 +160,7 @@ function get_google_fonts() { * @param WP_REST_Request $request The request object containing the new fonts to install in the request parameters. * @return WP_REST_Response|WP_Error The updated fonts library post content. */ - function install_fonts( $request ) { + public function install_fonts( $request ) { // Get new fonts to install. $fonts_to_install = $request->get_param( 'fontFamilies' ); @@ -197,7 +197,7 @@ function install_fonts( $request ) { /** * Registers the fonts library post type. */ - function register_post_type() { + public function register_post_type() { $args = array( 'public' => true, 'label' => 'Font Library', From 253ec1f89be34c266f644ea99039ba62ad470e8a Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 20 Jul 2023 16:47:09 -0300 Subject: [PATCH 043/169] WP_Theme_JSON_Gutenberg instead of WP_Theme_JSON --- lib/experimental/fonts-library/class-wp-font-family.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index a4037347661f0d..c33a0f688d7536 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -237,7 +237,7 @@ private function sanitize() { ), ); // Creates a new WP_Theme_JSON object with the new fonts to leverage sanitization and validation. - $theme_json = new WP_Theme_JSON( $fonts_json ); + $theme_json = new WP_Theme_JSON_Gutenberg( $fonts_json ); $theme_data = $theme_json->get_data(); $sanitized_font = ! empty( $theme_data['settings']['typography']['fontFamilies'] ) ? $theme_data['settings']['typography']['fontFamilies'][0] From e6879d099ebd0faba2645a5dcfed3ce6fac2ca7e Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 20 Jul 2023 16:54:56 -0300 Subject: [PATCH 044/169] Moving init calls to a new file. --- .../fonts-library/class-wp-fonts-library.php | 3 --- .../class-wp-rest-fonts-library-controller.php | 11 ----------- lib/experimental/fonts-library/fonts-library.php | 15 +++++++++++++++ lib/load.php | 1 + 4 files changed, 16 insertions(+), 14 deletions(-) create mode 100644 lib/experimental/fonts-library/fonts-library.php diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 1316aaa05d90b5..7f1c46430be9ea 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -55,6 +55,3 @@ public static function create_fonts_directory() { } } - -add_action( 'init', array( 'WP_Fonts_Library', 'define_fonts_directory' ) ); -add_action( 'init', array( 'WP_Fonts_Library', 'create_fonts_directory' ) ); diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index bfef96a868511f..6ca6331976b087 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -207,14 +207,3 @@ public function register_post_type() { } } - -/** - * Registers the routes for the objects of the controller. - */ -function fonts_library_register_routes() { - $fonts_library = new WP_REST_Fonts_Library_Controller(); - $fonts_library->register_routes(); - $fonts_library->register_post_type(); -} - -add_action( 'rest_api_init', 'fonts_library_register_routes' ); diff --git a/lib/experimental/fonts-library/fonts-library.php b/lib/experimental/fonts-library/fonts-library.php new file mode 100644 index 00000000000000..dd0b23883c0b61 --- /dev/null +++ b/lib/experimental/fonts-library/fonts-library.php @@ -0,0 +1,15 @@ +register_routes(); + $fonts_library->register_post_type(); +} + +add_action( 'rest_api_init', 'fonts_library_register_routes' ); diff --git a/lib/load.php b/lib/load.php index 57ffad6c08ee60..771632d13b0ea6 100644 --- a/lib/load.php +++ b/lib/load.php @@ -168,6 +168,7 @@ function gutenberg_is_experiment_enabled( $name ) { require __DIR__ . '/experimental/fonts-library/class-wp-font-family-utils.php'; require __DIR__ . '/experimental/fonts-library/class-wp-font-family.php'; require __DIR__ . '/experimental/fonts-library/class-wp-rest-fonts-library-controller.php'; +require __DIR__ . '/experimental/fonts-library/fonts-library.php'; // Plugin specific code. require __DIR__ . '/script-loader.php'; From 83199e635ff339a0bc9d3bcfa28530d9324f711f Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 20 Jul 2023 17:03:11 -0300 Subject: [PATCH 045/169] adding comment to file --- lib/experimental/fonts-library/fonts-library.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/experimental/fonts-library/fonts-library.php b/lib/experimental/fonts-library/fonts-library.php index dd0b23883c0b61..7d93c4fa030168 100644 --- a/lib/experimental/fonts-library/fonts-library.php +++ b/lib/experimental/fonts-library/fonts-library.php @@ -1,4 +1,13 @@ Date: Thu, 20 Jul 2023 17:04:59 -0300 Subject: [PATCH 046/169] format PHP --- .../class-wp-font-family-utils.php | 2 +- .../fonts-library/class-wp-font-family.php | 2 +- .../fonts-library/class-wp-fonts-library.php | 6 +- ...class-wp-rest-fonts-library-controller.php | 2 +- .../class-wp-font-family-test.php | 102 +++++++++--------- 5 files changed, 57 insertions(+), 57 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family-utils.php b/lib/experimental/fonts-library/class-wp-font-family-utils.php index 5a77538c2262bb..47de5c9470247a 100644 --- a/lib/experimental/fonts-library/class-wp-font-family-utils.php +++ b/lib/experimental/fonts-library/class-wp-font-family-utils.php @@ -9,7 +9,7 @@ * @since X.X.X */ - if ( class_exists( 'WP_Font_Family_Utils' ) ) { +if ( class_exists( 'WP_Font_Family_Utils' ) ) { return; } diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index c33a0f688d7536..cad27441a0a20e 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -9,7 +9,7 @@ * @since X.X.X */ - if ( class_exists( 'WP_Font_Family' ) ) { +if ( class_exists( 'WP_Font_Family' ) ) { return; } diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 7f1c46430be9ea..906469ffdd8492 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -47,9 +47,9 @@ public static function define_fonts_directory() { define( 'WP_FONTS_DIR', self::get_fonts_directory() ); } - /** - * Create fonts directory if it doesn't exist. - */ + /** + * Create fonts directory if it doesn't exist. + */ public static function create_fonts_directory() { wp_mkdir_p( self::get_fonts_directory() ); } diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index 6ca6331976b087..be6b60654ebc70 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -9,7 +9,7 @@ * @since X.X.X */ - if ( class_exists( 'WP_REST_Fonts_Library_Controller' ) ) { +if ( class_exists( 'WP_REST_Fonts_Library_Controller' ) ) { return; } diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 1d348fbfc5c15c..42ee109c2375c8 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -104,71 +104,71 @@ function test_install_and_uninstall_font_without_faces() { } - function test_install_and_uninstall_local_fonts () { - // TODO: Fix this test. Is failing because the font file is not being copied from the temp dir to the fonts folder - // We need to figure out why move_uploaded_file call in the WP_Font_Family::move_font_face_asset function is not working while testing - $local_font = array( - 'name' => 'Inter', - 'slug' => 'inter', - 'fontFamily' => 'Inter', - 'fontFace' => [ - array ( - 'fontFamily' => 'Inter', - 'fontStyle' => 'normal', - 'fontWeight' => '400', - 'file' => 'files0', - ), - array ( - 'fontFamily' => 'Inter', - 'fontStyle' => 'normal', - 'fontWeight' => '500', - 'file' => 'files1', - ) - ] - ); - - $files = array( - "files0" => array( - "name" => "inter1.ttf", - "full_path" => "inter1.ttf", - "type" => "font/ttf", - "tmp_name" => tempnam(sys_get_temp_dir(), 'Inter-'), - "error" => 0, - "size" => 156764, - ), - "files1" => array( - "name" => "inter2.ttf", - "full_path" => "inter2.ttf", - "type" => "font/ttf", - "tmp_name" => tempnam(sys_get_temp_dir(), 'Inter-'), - "error" => 0, - "size" => 156524, - ), - ); - - $font = new WP_Font_Family( $local_font ); + function test_install_and_uninstall_local_fonts() { + // TODO: Fix this test. Is failing because the font file is not being copied from the temp dir to the fonts folder + // We need to figure out why move_uploaded_file call in the WP_Font_Family::move_font_face_asset function is not working while testing + $local_font = array( + 'name' => 'Inter', + 'slug' => 'inter', + 'fontFamily' => 'Inter', + 'fontFace' => array( + array( + 'fontFamily' => 'Inter', + 'fontStyle' => 'normal', + 'fontWeight' => '400', + 'file' => 'files0', + ), + array( + 'fontFamily' => 'Inter', + 'fontStyle' => 'normal', + 'fontWeight' => '500', + 'file' => 'files1', + ), + ), + ); + + $files = array( + 'files0' => array( + 'name' => 'inter1.ttf', + 'full_path' => 'inter1.ttf', + 'type' => 'font/ttf', + 'tmp_name' => tempnam( sys_get_temp_dir(), 'Inter-' ), + 'error' => 0, + 'size' => 156764, + ), + 'files1' => array( + 'name' => 'inter2.ttf', + 'full_path' => 'inter2.ttf', + 'type' => 'font/ttf', + 'tmp_name' => tempnam( sys_get_temp_dir(), 'Inter-' ), + 'error' => 0, + 'size' => 156524, + ), + ); + + $font = new WP_Font_Family( $local_font ); $data = $font->install( $files ); - // Check that the post was created + // Check that the post was created $post = $font->get_font_post(); $this->assertInstanceof( 'WP_Post', $post ); - // Check that the post has the correct data + // Check that the post has the correct data $this->assertEquals( $post->post_title, 'Inter' ); $this->assertEquals( $post->post_name, 'inter' ); $content = json_decode( $post->post_content, true ); $this->assertEquals( $content['fontFamily'], 'Inter' ); $this->assertEquals( $content['slug'], 'inter' ); - // Check that the font file src was updated to the local font asset + // Check that the font file src was updated to the local font asset $this->assertTrue( str_ends_with( $content['fontFace'][0]['src'], '/inter_normal_400.ttf' ) ); - $this->assertTrue( str_ends_with( $content['fontFace'][1]['src'], '/inter_normal_500.ttf' ) ); + $this->assertTrue( str_ends_with( $content['fontFace'][1]['src'], '/inter_normal_500.ttf' ) ); // Check that the font file was created $this->assertTrue( file_exists( WP_FONTS_DIR . '/inter_normal_400.ttf' ) ); - $this->assertTrue( file_exists( WP_FONTS_DIR . '/inter_normal_500.ttf' ) ); + $this->assertTrue( file_exists( WP_FONTS_DIR . '/inter_normal_500.ttf' ) ); - $font->uninstall(); + $font->uninstall(); // Check that the post was deleted $post = $font->get_font_post(); @@ -176,7 +176,7 @@ function test_install_and_uninstall_local_fonts () { // Check that the font asset was deleted $this->assertFalse( file_exists( WP_FONTS_DIR . '/inter_normal_400.ttf' ) ); - $this->assertFalse( file_exists( WP_FONTS_DIR . '/inter_normal_500.ttf' ) ); - } + $this->assertFalse( file_exists( WP_FONTS_DIR . '/inter_normal_500.ttf' ) ); + } } From c3c716927ebc67aa3c5dffc07dd8cdbb2a8727d5 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 21 Jul 2023 09:02:01 -0300 Subject: [PATCH 047/169] update comment Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index cad27441a0a20e..0b4475588152d4 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -293,8 +293,10 @@ private function download_or_move_font_faces( $files ) { // If we are installing google fonts, we need to download the font face assets. $new_font_face = $this->move_font_face_asset( $font_face, $files[ $font_face['file'] ] ); } - // If the font face assets were successfully downloaded, we add the font face to the new font. - // Font faces with failed downloads are not added to the new font. + /* + * If the font face assets were successfully downloaded, we add the font face to the new font. + * Font faces with failed downloads are not added to the new font. + */ if ( ! empty( $new_font_face['src'] ) ) { $new_font_faces[] = $new_font_face; } From 0aa582af19adb469d4ffb83edecb50932fb22404 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 21 Jul 2023 09:02:35 -0300 Subject: [PATCH 048/169] syntax change Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 0b4475588152d4..d2b2532ec62ec2 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -326,8 +326,7 @@ public function get_font_post() { $posts_query = new WP_Query( $args ); if ( $posts_query->have_posts() ) { - $post = $posts_query->posts[0]; - return $post; + return $posts_query->posts[0]; } return null; From 28036038d344eea34638d9f2ecf3f189e3ef7f80 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 21 Jul 2023 09:03:02 -0300 Subject: [PATCH 049/169] syntax change Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index d2b2532ec62ec2..570d7f531e35c2 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -340,8 +340,7 @@ public function get_font_post() { private function get_data_from_post() { $post = $this->get_font_post(); if ( $post ) { - $data = json_decode( $post->post_content, true ); - $this->data = $data; + $this->data = json_decode( $post->post_content, true ); return $post; } return null; From 82aefd9a3ae060efd8539396bbdc4675227b789b Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 21 Jul 2023 11:28:13 -0300 Subject: [PATCH 050/169] update comment Co-authored-by: Anton Vlasenko <43744263+anton-vlasenko@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 570d7f531e35c2..3fee6246f2938b 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -224,7 +224,7 @@ private function move_font_face_asset( $font_face, $file ) { /** * Sanitizes the font family data using WP_Theme_JSON. * - * @return array A sanitized font family defintion. + * @return array A sanitized font family definition. */ private function sanitize() { // Creates the structure of theme.json array with the new fonts. From c73ee9c826d7107e09d68449bbfd80eb09e253a2 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 21 Jul 2023 11:30:12 -0300 Subject: [PATCH 051/169] add missing 'new' while returning a WP_Error Co-authored-by: Anton Vlasenko <43744263+anton-vlasenko@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 3fee6246f2938b..c5bc74f7f3fade 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -361,7 +361,7 @@ private function create_font_post() { ); $post_id = wp_insert_post( $post ); if ( 0 === $post_id ) { - return WP_Error( 'font_post_creation_failed', __( 'Font post creation failed', 'gutenberg' ) ); + return new WP_Error( 'font_post_creation_failed', __( 'Font post creation failed', 'gutenberg' ) ); } return $post_id; } From 392adf0c6f540e9c52ed68217e965b7da2e66e2e Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 21 Jul 2023 11:32:24 -0300 Subject: [PATCH 052/169] fix return comment Co-authored-by: Anton Vlasenko <43744263+anton-vlasenko@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index c5bc74f7f3fade..223049a074640b 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -280,7 +280,7 @@ private function download_font_face_assets( $font_face ) { * Downloads font face assets if the font family is a Google font, or moves them if it is a local font. * * @param array $files An array of files to be installed. - * @return bool|WP_Error + * @return bool */ private function download_or_move_font_faces( $files ) { if ( $this->has_font_faces() ) { From 5b2091455367a13e13aad201d2eec60ee8c9f819 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 21 Jul 2023 11:35:09 -0300 Subject: [PATCH 053/169] renaming variable Co-authored-by: Anton Vlasenko <43744263+anton-vlasenko@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 223049a074640b..aa7a45a6c8eeab 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -134,10 +134,10 @@ private static function delete_asset( $src ) { * @param array $font_face The font face array containing the 'src' attribute with the file path(s) to be deleted. */ private static function delete_font_face_assets( $font_face ) { - $srcs = ! empty( $font_face['src'] ) && is_array( $font_face['src'] ) + $sources = ! empty( $font_face['src'] ) && is_array( $font_face['src'] ) ? $font_face['src'] : array( $font_face['src'] ); - foreach ( $srcs as $src ) { + foreach ( $sources as $src ) { $was_asset_removed = self::delete_asset( $src ); if ( ! $was_asset_removed ) { // Bail if any of the assets could not be removed. From 11ad658d20aafe0ca7b2a21aef74aea515361841 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 21 Jul 2023 11:39:42 -0300 Subject: [PATCH 054/169] stylistic change to early return --- .../fonts-library/class-wp-font-family.php | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index aa7a45a6c8eeab..6fe402579964da 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -283,31 +283,31 @@ private function download_font_face_assets( $font_face ) { * @return bool */ private function download_or_move_font_faces( $files ) { - if ( $this->has_font_faces() ) { - $new_font_faces = array(); - foreach ( $this->data['fontFace'] as $font_face ) { - if ( empty( $files ) ) { - // If we are installing local fonts, we need to move the font face assets from the temp folder to the wp fonts directory. - $new_font_face = $this->download_font_face_assets( $font_face ); - } else { - // If we are installing google fonts, we need to download the font face assets. - $new_font_face = $this->move_font_face_asset( $font_face, $files[ $font_face['file'] ] ); - } - /* - * If the font face assets were successfully downloaded, we add the font face to the new font. - * Font faces with failed downloads are not added to the new font. - */ - if ( ! empty( $new_font_face['src'] ) ) { - $new_font_faces[] = $new_font_face; - } + if ( ! $this->has_font_faces() ) { + return true; + } + $new_font_faces = array(); + foreach ( $this->data['fontFace'] as $font_face ) { + if ( empty( $files ) ) { + // If we are installing local fonts, we need to move the font face assets from the temp folder to the wp fonts directory. + $new_font_face = $this->download_font_face_assets( $font_face ); + } else { + // If we are installing google fonts, we need to download the font face assets. + $new_font_face = $this->move_font_face_asset( $font_face, $files[ $font_face['file'] ] ); } - if ( ! empty( $new_font_faces ) ) { - $this->data['fontFace'] = $new_font_faces; - return true; + /* + * If the font face assets were successfully downloaded, we add the font face to the new font. + * Font faces with failed downloads are not added to the new font. + */ + if ( ! empty( $new_font_face['src'] ) ) { + $new_font_faces[] = $new_font_face; } - return false; } - return true; + if ( ! empty( $new_font_faces ) ) { + $this->data['fontFace'] = $new_font_faces; + return true; + } + return false; } /** From 9489974854416447af2db84b04b7d10db6c5ba0b Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 21 Jul 2023 11:57:14 -0300 Subject: [PATCH 055/169] shortening the syntax and variable renaming --- .../fonts-library/class-wp-font-family.php | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 6fe402579964da..5d828b8d27f265 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -134,9 +134,7 @@ private static function delete_asset( $src ) { * @param array $font_face The font face array containing the 'src' attribute with the file path(s) to be deleted. */ private static function delete_font_face_assets( $font_face ) { - $sources = ! empty( $font_face['src'] ) && is_array( $font_face['src'] ) - ? $font_face['src'] - : array( $font_face['src'] ); + $sources = (array) $font_face['src']; foreach ( $sources as $src ) { $was_asset_removed = self::delete_asset( $src ); if ( ! $was_asset_removed ) { @@ -257,12 +255,10 @@ private function sanitize() { */ private function download_font_face_assets( $font_face ) { $new_font_face = $font_face; - $srcs = ! empty( $font_face['src'] ) && is_array( $font_face['src'] ) - ? $font_face['src'] - : array( $font_face['src'] ); + $sources = (array) $font_face['src']; $new_font_face['src'] = array(); $i = 0; - foreach ( $srcs as $src ) { + foreach ( $sources as $src ) { $filename = WP_Font_Family_Utils::get_filename_from_font_face( $font_face, $src, $i++ ); $new_src = $this->download_asset( $src, $filename ); if ( $new_src ) { From 6f2c11337ecfccb1b61150add1567ec81d48e828 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 21 Jul 2023 12:03:54 -0300 Subject: [PATCH 056/169] Stylistic change: switching the order of parameters of assertEquals call --- .../class-wp-font-family-test.php | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 42ee109c2375c8..7bafa672767fc8 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -29,13 +29,13 @@ class WP_Font_Family_Test extends WP_UnitTestCase { function test_get_data() { $font = new WP_Font_Family( self::FONT_DATA_1 ); - $this->assertEquals( $font->get_data()['slug'], 'piazzolla' ); - $this->assertEquals( count( $font->get_data()['fontFace'] ), 1 ); + $this->assertEquals( 'piazzolla', $font->get_data()['slug'] ); + $this->assertEquals( 1, count( $font->get_data()['fontFace'] ) ); } function test_get_data_as_json() { $font = new WP_Font_Family( self::FONT_DATA_1 ); - $this->assertEquals( $font->get_data_as_json(), wp_json_encode( self::FONT_DATA_1 ) ); + $this->assertEquals( wp_json_encode( self::FONT_DATA_1 ), $font->get_data_as_json() ); } function test_has_font_faces() { @@ -55,14 +55,14 @@ function test_install_and_uninstall_google_font() { $this->assertInstanceof( 'WP_Post', $post ); // Check that the post has the correct data - $this->assertEquals( $post->post_title, 'Piazzolla' ); - $this->assertEquals( $post->post_name, 'piazzolla' ); + $this->assertEquals( 'Piazzolla' , $post->post_title ); + $this->assertEquals( 'piazzolla' , $post->post_name ); $content = json_decode( $post->post_content, true ); - $this->assertEquals( $content['fontFamily'], 'Piazzolla' ); - $this->assertEquals( $content['slug'], 'piazzolla' ); - $this->assertEquals( $content['fontFace'][0]['fontFamily'], 'Piazzolla' ); - $this->assertEquals( $content['fontFace'][0]['fontStyle'], 'italic' ); - $this->assertEquals( $content['fontFace'][0]['fontWeight'], '400' ); + $this->assertEquals( 'Piazzolla' , $content['fontFamily'] ); + $this->assertEquals( 'piazzolla' , $content['slug'] ); + $this->assertEquals( 'Piazzolla' , $content['fontFace'][0]['fontFamily'] ); + $this->assertEquals( 'italic' , $content['fontFace'][0]['fontStyle'] ); + $this->assertEquals( '400' , $content['fontFace'][0]['fontWeight'] ); // Check that the font file src was updated to the local font asset $this->assertTrue( str_ends_with( $content['fontFace'][0]['src'], '/piazzolla_italic_400.ttf' ) ); @@ -89,11 +89,11 @@ function test_install_and_uninstall_font_without_faces() { $this->assertInstanceof( 'WP_Post', $post ); // Check that the post has the correct data - $this->assertEquals( $post->post_title, 'Arial' ); - $this->assertEquals( $post->post_name, 'arial' ); + $this->assertEquals( 'Arial', $post->post_title ); + $this->assertEquals( 'arial', $post->post_name ); $content = json_decode( $post->post_content, true ); - $this->assertEquals( $content['fontFamily'], 'Arial' ); - $this->assertEquals( $content['slug'], 'arial' ); + $this->assertEquals( 'Arial', $content['fontFamily'] ); + $this->assertEquals( 'arial', $content['slug'] ); $this->assertArrayNotHasKey( 'fontFace', $content ); $font->uninstall(); @@ -154,11 +154,11 @@ function test_install_and_uninstall_local_fonts() { $this->assertInstanceof( 'WP_Post', $post ); // Check that the post has the correct data - $this->assertEquals( $post->post_title, 'Inter' ); - $this->assertEquals( $post->post_name, 'inter' ); + $this->assertEquals( 'Inter', $post->post_title ); + $this->assertEquals( 'inter', $post->post_name ); $content = json_decode( $post->post_content, true ); - $this->assertEquals( $content['fontFamily'], 'Inter' ); - $this->assertEquals( $content['slug'], 'inter' ); + $this->assertEquals( 'Inter', $content['fontFamily'] ); + $this->assertEquals( 'inter', $content['slug'] ); // Check that the font file src was updated to the local font asset $this->assertTrue( str_ends_with( $content['fontFace'][0]['src'], '/inter_normal_400.ttf' ) ); From 3acc35607e4942246c0abbf690a6307ef9beab59 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 21 Jul 2023 12:21:14 -0300 Subject: [PATCH 057/169] simplify delete_asset method code --- .../fonts-library/class-wp-font-family.php | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 5d828b8d27f265..e85fc24fe68c49 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -113,19 +113,8 @@ public function uninstall() { private static function delete_asset( $src ) { $filename = basename( $src ); $file_path = path_join( WP_FONTS_DIR, $filename ); - - if ( ! file_exists( $file_path ) ) { - return false; - } wp_delete_file( $file_path ); - - // If the file still exists after trying to delete it, return false. - if ( file_exists( $file_path ) ) { - return false; - } - - // return true if the file was deleted. - return true; + return ! file_exists( $file_path ); } /** From 4aa9660d6e13ab0e342e74f3439e37d0811f0186 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 21 Jul 2023 15:25:05 -0300 Subject: [PATCH 058/169] refactor uninstall endpoint response --- .../class-wp-rest-fonts-library-controller.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index be6b60654ebc70..f0fbdc3bbaf656 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -78,7 +78,13 @@ public function uninstall_font_family( $request ) { 'slug' => $request['slug'], ); $font = new WP_Font_Family( $data ); - return new WP_REST_Response( $font->uninstall() ); + $result = $font->uninstall(); + + if ( is_wp_error( $result ) ) { + return $result; + } + + return new WP_REST_Response( __( 'Font family uninstalled successfully.', 'gutenberg' ), 200 ); } /** From 92ae85757cae35a8e7ce52754c0ed8049a3bd159 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 21 Jul 2023 15:28:08 -0300 Subject: [PATCH 059/169] fixing return type comment --- lib/experimental/fonts-library/class-wp-font-family.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index e85fc24fe68c49..d249bee288afe9 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -182,7 +182,7 @@ private function download_asset( $src, $filename ) { * * @param array $font_face Font face to download. * @param array $file Uploaded file. - * @return array|bool New font face with all assets downloaded and referenced in the font face definition or false is something failed + * @return array New font face with all assets downloaded and referenced in the font face definition */ private function move_font_face_asset( $font_face, $file ) { $new_font_face = $font_face; From 80cd47b2b18c38aeaef3ccb757f67bb3e2721ffd Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 21 Jul 2023 15:40:11 -0300 Subject: [PATCH 060/169] fixing return type and refactor to early return --- .../fonts-library/class-wp-font-family.php | 25 +++++++++++++------ 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index d249bee288afe9..14bab803b60248 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -355,7 +355,7 @@ private function create_font_post() { * Update a post for a font family. * * @param WP_Post $post The post to update. - * @return int post id + * @return int| post id if the update was successful, WP_Error otherwise. */ private function update_font_post( $post ) { $post_font_data = json_decode( $post->post_content, true ); @@ -368,6 +368,11 @@ private function update_font_post( $post ) { ); $post_id = wp_update_post( $post ); + + if ( 0 === $post_id || is_wp_error( $post_id ) ) { + return new WP_Error( 'font_post_update_failed', __( 'Font post update failed', 'gutenberg' ) ); + } + return $post_id; } @@ -393,14 +398,18 @@ private function create_or_update_font_post() { */ public function install( $files = null ) { $were_assets_written = $this->download_or_move_font_faces( $files ); - if ( $were_assets_written ) { - $post_id = $this->create_or_update_font_post(); - if ( $post_id ) { - return $this->get_data(); - } - return new WP_Error( 'font_post_creation_failed', __( 'Font post creation failed', 'gutenberg' ) ); + + if ( !$were_assets_written ) { + return new WP_Error( 'font_face_download_failed', __( 'The font face assets could not be written.', 'gutenberg' ) ); } - return new WP_Error( 'font_face_download_failed', __( 'The font face assets could not be written.', 'gutenberg' ) ); + + $post_id = $this->create_or_update_font_post(); + + if ( is_wp_error( $post_id ) ){ + return $post_id; + } + + return $this->get_data(); } } From b6892323d8916e6b0140f271e392802da7aa90e6 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 21 Jul 2023 15:42:26 -0300 Subject: [PATCH 061/169] check is post_id is an error Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 14bab803b60248..77713902675fef 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -345,7 +345,7 @@ private function create_font_post() { 'post_status' => 'publish', ); $post_id = wp_insert_post( $post ); - if ( 0 === $post_id ) { + if ( 0 === $post_id || is_wp_error( $post_id ) ) { return new WP_Error( 'font_post_creation_failed', __( 'Font post creation failed', 'gutenberg' ) ); } return $post_id; From f28a81d7d8c7733d022e54ea7dafdcb269927e7c Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Mon, 24 Jul 2023 15:16:47 -0300 Subject: [PATCH 062/169] using assertStringEndsWith assertion --- phpunit/fonts-library/class-wp-font-family-test.php | 6 +++--- phpunit/fonts-library/class-wp-fonts-library-test.php | 8 ++------ 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 7bafa672767fc8..323b5cf7f14a6c 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -65,7 +65,7 @@ function test_install_and_uninstall_google_font() { $this->assertEquals( '400' , $content['fontFace'][0]['fontWeight'] ); // Check that the font file src was updated to the local font asset - $this->assertTrue( str_ends_with( $content['fontFace'][0]['src'], '/piazzolla_italic_400.ttf' ) ); + $this->assertStringEndsWith( '/piazzolla_italic_400.ttf', $content['fontFace'][0]['src'] ); // Check that the font file was created $this->assertTrue( file_exists( WP_FONTS_DIR . '/piazzolla_italic_400.ttf' ) ); @@ -161,8 +161,8 @@ function test_install_and_uninstall_local_fonts() { $this->assertEquals( 'inter', $content['slug'] ); // Check that the font file src was updated to the local font asset - $this->assertTrue( str_ends_with( $content['fontFace'][0]['src'], '/inter_normal_400.ttf' ) ); - $this->assertTrue( str_ends_with( $content['fontFace'][1]['src'], '/inter_normal_500.ttf' ) ); + $this->assertStringEndsWith( '/inter_normal_400.ttf', $content['fontFace'][0]['src'] ); + $this->assertStringEndsWith( '/inter_normal_500.ttf', $content['fontFace'][1]['src'] ); // Check that the font file was created $this->assertTrue( file_exists( WP_FONTS_DIR . '/inter_normal_400.ttf' ) ); diff --git a/phpunit/fonts-library/class-wp-fonts-library-test.php b/phpunit/fonts-library/class-wp-fonts-library-test.php index fa9edfc4c04d8a..ee5238864171b6 100644 --- a/phpunit/fonts-library/class-wp-fonts-library-test.php +++ b/phpunit/fonts-library/class-wp-fonts-library-test.php @@ -8,15 +8,11 @@ class WP_Fonts_Library_Test extends WP_UnitTestCase { function test_get_fonts_directory() { - $this->assertTrue( - str_ends_with( WP_Fonts_Library::get_fonts_directory(), '/wp-content/fonts' ) - ); + $this->assertStringEndsWith( '/wp-content/fonts', WP_Fonts_Library::get_fonts_directory() ); } function test_get_relative_fonts_path() { - $this->assertTrue( - str_ends_with( WP_Fonts_Library::get_relative_fonts_path(), '/wp-content/fonts/' ) - ); + $this->assertStringEndsWith( '/wp-content/fonts/', WP_Fonts_Library::get_relative_fonts_path() ); } } From 37cae56d04cd59dcbde62a7858688a577c37020c Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Mon, 24 Jul 2023 15:18:49 -0300 Subject: [PATCH 063/169] update comment Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- .../fonts-library/class-wp-rest-fonts-library-controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index f0fbdc3bbaf656..7bb1a370637d67 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -181,7 +181,7 @@ public function install_fonts( $request ) { // Get uploaded files (used when installing local fonts). $files = $request->get_file_params(); - // iterates the fonts data received and creates a new WP_Font_Family object for each one. + // Iterates the fonts data received and creates a new WP_Font_Family object for each one. $fonts_installed = array(); foreach ( $fonts_to_install as $font_data ) { $font = new WP_Font_Family( $font_data ); From 7b13187c7fdb71c53aa5670a48e4b3cc9ffb77de Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Mon, 24 Jul 2023 15:19:04 -0300 Subject: [PATCH 064/169] update comment Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- .../fonts-library/class-wp-rest-fonts-library-controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index 7bb1a370637d67..e8b19871f28146 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -88,7 +88,7 @@ public function uninstall_font_family( $request ) { } /** - * Check if user has permissions to update the fonts library. + * Checks whether the user has permissions to update the fonts library. * * @return true|WP_Error True if the request has write access for the item, WP_Error object otherwise. */ From 1a5ce294ec017f9fe17b044b0912394e3dc0d56b Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Mon, 24 Jul 2023 15:19:17 -0300 Subject: [PATCH 065/169] update comment Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- .../fonts-library/class-wp-rest-fonts-library-controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index e8b19871f28146..541bee53f0fc8c 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -119,7 +119,7 @@ public function update_fonts_library_permissions_check() { } /** - * Check if user has permissions to read the fonts library. + * Checks whether the user has permissions to read the fonts library. * * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise. */ From 45ddcf1ad09b8b18ae0ae82d2f4f43be1ea0b206 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Mon, 24 Jul 2023 15:19:29 -0300 Subject: [PATCH 066/169] update comment Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- .../class-wp-rest-fonts-library-controller.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index 541bee53f0fc8c..508629329983e0 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -170,8 +170,10 @@ public function install_fonts( $request ) { // Get new fonts to install. $fonts_to_install = $request->get_param( 'fontFamilies' ); - // As we are receiving form data, the font families are encoded as a string. - // We are using form data because local fonts need to use that format to attach the files in the request. + /* + * As we are receiving form data, the font families are encoded as a string. + * We are using form data because local fonts need to use that format to attach the files in the request. + */ $fonts_to_install = json_decode( $fonts_to_install, true ); if ( empty( $fonts_to_install ) ) { From 1c518d66a965161aef2eb2b46c6fee636ffefedf Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Mon, 24 Jul 2023 15:37:14 -0300 Subject: [PATCH 067/169] replace assertEquals by assertSame --- .../class-wp-font-family-utils-test.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/phpunit/fonts-library/class-wp-font-family-utils-test.php b/phpunit/fonts-library/class-wp-font-family-utils-test.php index 0522d64a6c0f6b..0673bfc6d30a53 100644 --- a/phpunit/fonts-library/class-wp-font-family-utils-test.php +++ b/phpunit/fonts-library/class-wp-font-family-utils-test.php @@ -40,17 +40,17 @@ function test_get_filename_from_font_face() { ), ); - $this->assertEquals( + $this->assertSame( WP_Font_Family_Utils::get_filename_from_font_face( $font_face, $font_face['src'][0] ), 'piazzolla_italic_400.ttf' ); - $this->assertEquals( + $this->assertSame( WP_Font_Family_Utils::get_filename_from_font_face( $font_face, $font_face['src'][1], 2 ), 'piazzolla_italic_400_2.ttf' ); - $this->assertEquals( + $this->assertSame( WP_Font_Family_Utils::get_filename_from_font_face( $font_face, $font_face['src'][2], 3 ), 'piazzolla_italic_400_3.ttf' ); @@ -110,23 +110,23 @@ function test_merge_fonts_data() { // Fonts with same slug should be merged $merged_font = WP_Font_Family_Utils::merge_fonts_data( $font1, $font2 ); - $this->assertFalse( $merged_font instanceof WP_Error ); + $this->assertWPError( $merged_font instanceof WP_Error ); // Total of font faces without duplicates - $this->assertEquals( + $this->assertSame( count( $merged_font['fontFace'] ), 4 ); // Missing keys should be added to the merged result - $this->assertEquals( + $this->assertSame( $merged_font['name'], 'Piazzolla' ); // Fonts with different slugs should not be merged $merged_font = WP_Font_Family_Utils::merge_fonts_data( $font1, $font3 ); - $this->assertTrue( $merged_font instanceof WP_Error ); + $this->assertWPError( $merged_font instanceof WP_Error ); } } From af28cd35d16c409b3ddd07b26ca420663349436a Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Mon, 24 Jul 2023 15:42:36 -0300 Subject: [PATCH 068/169] assertSame and assertCount --- .../class-wp-font-family-test.php | 36 +++++++++---------- .../class-wp-font-family-utils-test.php | 5 +-- 2 files changed, 19 insertions(+), 22 deletions(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 323b5cf7f14a6c..8b24b072a962b3 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -29,13 +29,13 @@ class WP_Font_Family_Test extends WP_UnitTestCase { function test_get_data() { $font = new WP_Font_Family( self::FONT_DATA_1 ); - $this->assertEquals( 'piazzolla', $font->get_data()['slug'] ); - $this->assertEquals( 1, count( $font->get_data()['fontFace'] ) ); + $this->assertSame( 'piazzolla', $font->get_data()['slug'] ); + $this->assertCount( 1, $font->get_data()['fontFace'] ); } function test_get_data_as_json() { $font = new WP_Font_Family( self::FONT_DATA_1 ); - $this->assertEquals( wp_json_encode( self::FONT_DATA_1 ), $font->get_data_as_json() ); + $this->assertSame( wp_json_encode( self::FONT_DATA_1 ), $font->get_data_as_json() ); } function test_has_font_faces() { @@ -55,14 +55,14 @@ function test_install_and_uninstall_google_font() { $this->assertInstanceof( 'WP_Post', $post ); // Check that the post has the correct data - $this->assertEquals( 'Piazzolla' , $post->post_title ); - $this->assertEquals( 'piazzolla' , $post->post_name ); + $this->assertSame( 'Piazzolla' , $post->post_title ); + $this->assertSame( 'piazzolla' , $post->post_name ); $content = json_decode( $post->post_content, true ); - $this->assertEquals( 'Piazzolla' , $content['fontFamily'] ); - $this->assertEquals( 'piazzolla' , $content['slug'] ); - $this->assertEquals( 'Piazzolla' , $content['fontFace'][0]['fontFamily'] ); - $this->assertEquals( 'italic' , $content['fontFace'][0]['fontStyle'] ); - $this->assertEquals( '400' , $content['fontFace'][0]['fontWeight'] ); + $this->assertSame( 'Piazzolla' , $content['fontFamily'] ); + $this->assertSame( 'piazzolla' , $content['slug'] ); + $this->assertSame( 'Piazzolla' , $content['fontFace'][0]['fontFamily'] ); + $this->assertSame( 'italic' , $content['fontFace'][0]['fontStyle'] ); + $this->assertSame( '400' , $content['fontFace'][0]['fontWeight'] ); // Check that the font file src was updated to the local font asset $this->assertStringEndsWith( '/piazzolla_italic_400.ttf', $content['fontFace'][0]['src'] ); @@ -89,11 +89,11 @@ function test_install_and_uninstall_font_without_faces() { $this->assertInstanceof( 'WP_Post', $post ); // Check that the post has the correct data - $this->assertEquals( 'Arial', $post->post_title ); - $this->assertEquals( 'arial', $post->post_name ); + $this->assertSame( 'Arial', $post->post_title ); + $this->assertSame( 'arial', $post->post_name ); $content = json_decode( $post->post_content, true ); - $this->assertEquals( 'Arial', $content['fontFamily'] ); - $this->assertEquals( 'arial', $content['slug'] ); + $this->assertSame( 'Arial', $content['fontFamily'] ); + $this->assertSame( 'arial', $content['slug'] ); $this->assertArrayNotHasKey( 'fontFace', $content ); $font->uninstall(); @@ -154,11 +154,11 @@ function test_install_and_uninstall_local_fonts() { $this->assertInstanceof( 'WP_Post', $post ); // Check that the post has the correct data - $this->assertEquals( 'Inter', $post->post_title ); - $this->assertEquals( 'inter', $post->post_name ); + $this->assertSame( 'Inter', $post->post_title ); + $this->assertSame( 'inter', $post->post_name ); $content = json_decode( $post->post_content, true ); - $this->assertEquals( 'Inter', $content['fontFamily'] ); - $this->assertEquals( 'inter', $content['slug'] ); + $this->assertSame( 'Inter', $content['fontFamily'] ); + $this->assertSame( 'inter', $content['slug'] ); // Check that the font file src was updated to the local font asset $this->assertStringEndsWith( '/inter_normal_400.ttf', $content['fontFace'][0]['src'] ); diff --git a/phpunit/fonts-library/class-wp-font-family-utils-test.php b/phpunit/fonts-library/class-wp-font-family-utils-test.php index 0673bfc6d30a53..e86602fb513b35 100644 --- a/phpunit/fonts-library/class-wp-font-family-utils-test.php +++ b/phpunit/fonts-library/class-wp-font-family-utils-test.php @@ -113,10 +113,7 @@ function test_merge_fonts_data() { $this->assertWPError( $merged_font instanceof WP_Error ); // Total of font faces without duplicates - $this->assertSame( - count( $merged_font['fontFace'] ), - 4 - ); + $this->assertCount( 4, $merged_font['fontFace'] ); // Missing keys should be added to the merged result $this->assertSame( From 503f449c1cfdbfa50789ca70c388e7cdf062c83f Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Mon, 24 Jul 2023 15:49:21 -0300 Subject: [PATCH 069/169] assertFileExists --- phpunit/fonts-library/class-wp-font-family-test.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 8b24b072a962b3..66727812c9aedf 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -68,7 +68,7 @@ function test_install_and_uninstall_google_font() { $this->assertStringEndsWith( '/piazzolla_italic_400.ttf', $content['fontFace'][0]['src'] ); // Check that the font file was created - $this->assertTrue( file_exists( WP_FONTS_DIR . '/piazzolla_italic_400.ttf' ) ); + $this->assertFileExists( WP_FONTS_DIR . '/piazzolla_italic_400.ttf' ); $font->uninstall(); @@ -165,8 +165,8 @@ function test_install_and_uninstall_local_fonts() { $this->assertStringEndsWith( '/inter_normal_500.ttf', $content['fontFace'][1]['src'] ); // Check that the font file was created - $this->assertTrue( file_exists( WP_FONTS_DIR . '/inter_normal_400.ttf' ) ); - $this->assertTrue( file_exists( WP_FONTS_DIR . '/inter_normal_500.ttf' ) ); + $this->assertFileExists( WP_FONTS_DIR . '/inter_normal_400.ttf' ); + $this->assertFileExists( WP_FONTS_DIR . '/inter_normal_500.ttf' ); $font->uninstall(); From f923cb1529526be7774841ade784c0a784944d14 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Mon, 24 Jul 2023 15:50:32 -0300 Subject: [PATCH 070/169] assertFileDoesNotExist --- phpunit/fonts-library/class-wp-font-family-test.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 66727812c9aedf..4957c4bcddeb01 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -77,7 +77,7 @@ function test_install_and_uninstall_google_font() { $this->assertNull( $post ); // Check that the font asset was deleted - $this->assertFalse( file_exists( WP_FONTS_DIR . '/piazzolla_italic_400.ttf' ) ); + $this->assertFileDoesNotExist( WP_FONTS_DIR . '/piazzolla_italic_400.ttf' ); } function test_install_and_uninstall_font_without_faces() { @@ -175,8 +175,8 @@ function test_install_and_uninstall_local_fonts() { $this->assertNull( $post ); // Check that the font asset was deleted - $this->assertFalse( file_exists( WP_FONTS_DIR . '/inter_normal_400.ttf' ) ); - $this->assertFalse( file_exists( WP_FONTS_DIR . '/inter_normal_500.ttf' ) ); + $this->assertFileDoesNotExist( WP_FONTS_DIR . '/inter_normal_400.ttf' ); + $this->assertFileDoesNotExist( WP_FONTS_DIR . '/inter_normal_500.ttf' ); } } From b90e72f4d07dfee4f6b68f15ccf1407b3f7dd154 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Mon, 24 Jul 2023 15:52:57 -0300 Subject: [PATCH 071/169] simplify has_font_faces_method --- lib/experimental/fonts-library/class-wp-font-family.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 77713902675fef..4d4055a09d11f2 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -60,11 +60,7 @@ public function get_data_as_json() { * @return bool true if the font family has font faces defined, false otherwise. */ public function has_font_faces() { - return ( - isset( $this->data['fontFace'] ) - && is_array( $this->data['fontFace'] ) - && ! empty( $this->data['fontFace'] ) - ); + return ! empty( $this->data['fontFace'] ) && is_array( $this->data['fontFace'] ); } /** From 3a4e1894a2537d6cb7b3dd0ee1ff11ee7323f605 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 25 Jul 2023 10:09:51 -0300 Subject: [PATCH 072/169] return early if there are no fonts to be installed --- .../class-wp-rest-fonts-library-controller.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index 508629329983e0..b96d4f3f4c378a 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -190,16 +190,16 @@ public function install_fonts( $request ) { $font->install( $files ); $fonts_installed[] = $font; } + + if ( empty( $fonts_installed ) ) { + return new WP_Error( 'error_installing_fonts', __( 'Error installing fonts. No font was installed.', 'gutenberg' ), array( 'status' => 500 ) ); + } $response = array(); - if ( ! empty( $fonts_installed ) ) { - foreach ( $fonts_installed as $font ) { - $response[] = $font->get_data(); - } - return new WP_REST_Response( $response ); + foreach ( $fonts_installed as $font ) { + $response[] = $font->get_data(); } - - return new WP_Error( 'error_installing_fonts', __( 'Error installing fonts. No font was installed.', 'gutenberg' ), array( 'status' => 500 ) ); + return new WP_REST_Response( $response ); } /** From 1e009d03df50e8b578ebe2dce48dec55b5dcb71f Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 25 Jul 2023 11:00:25 -0300 Subject: [PATCH 073/169] fix assertWPError calls --- phpunit/fonts-library/class-wp-font-family-utils-test.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpunit/fonts-library/class-wp-font-family-utils-test.php b/phpunit/fonts-library/class-wp-font-family-utils-test.php index e86602fb513b35..ae47cc0eb99cae 100644 --- a/phpunit/fonts-library/class-wp-font-family-utils-test.php +++ b/phpunit/fonts-library/class-wp-font-family-utils-test.php @@ -110,7 +110,7 @@ function test_merge_fonts_data() { // Fonts with same slug should be merged $merged_font = WP_Font_Family_Utils::merge_fonts_data( $font1, $font2 ); - $this->assertWPError( $merged_font instanceof WP_Error ); + $this->assertNotWPError( $merged_font ); // Total of font faces without duplicates $this->assertCount( 4, $merged_font['fontFace'] ); @@ -123,7 +123,7 @@ function test_merge_fonts_data() { // Fonts with different slugs should not be merged $merged_font = WP_Font_Family_Utils::merge_fonts_data( $font1, $font3 ); - $this->assertWPError( $merged_font instanceof WP_Error ); + $this->assertWPError( $merged_font ); } } From 1d7c68bed78ae311d074fc140facb0f983f24de4 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 25 Jul 2023 11:01:48 -0300 Subject: [PATCH 074/169] adding public keyword to test cases --- phpunit/fonts-library/class-wp-font-family-test.php | 12 ++++++------ .../class-wp-font-family-utils-test.php | 6 +++--- .../fonts-library/class-wp-fonts-library-test.php | 4 ++-- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 4957c4bcddeb01..93fad9ae6020b4 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -27,18 +27,18 @@ class WP_Font_Family_Test extends WP_UnitTestCase { 'fontFamily' => 'Arial', ); - function test_get_data() { + public function test_get_data() { $font = new WP_Font_Family( self::FONT_DATA_1 ); $this->assertSame( 'piazzolla', $font->get_data()['slug'] ); $this->assertCount( 1, $font->get_data()['fontFace'] ); } - function test_get_data_as_json() { + public function test_get_data_as_json() { $font = new WP_Font_Family( self::FONT_DATA_1 ); $this->assertSame( wp_json_encode( self::FONT_DATA_1 ), $font->get_data_as_json() ); } - function test_has_font_faces() { + public function test_has_font_faces() { $font1 = new WP_Font_Family( self::FONT_DATA_1 ); $this->assertTrue( $font1->has_font_faces() ); @@ -46,7 +46,7 @@ function test_has_font_faces() { $this->assertFalse( $font2->has_font_faces() ); } - function test_install_and_uninstall_google_font() { + public function test_install_and_uninstall_google_font() { $font = new WP_Font_Family( self::FONT_DATA_1 ); $font->install(); @@ -80,7 +80,7 @@ function test_install_and_uninstall_google_font() { $this->assertFileDoesNotExist( WP_FONTS_DIR . '/piazzolla_italic_400.ttf' ); } - function test_install_and_uninstall_font_without_faces() { + public function test_install_and_uninstall_font_without_faces() { $font = new WP_Font_Family( self::FONT_DATA_2 ); $font->install(); @@ -104,7 +104,7 @@ function test_install_and_uninstall_font_without_faces() { } - function test_install_and_uninstall_local_fonts() { + public function test_install_and_uninstall_local_fonts() { // TODO: Fix this test. Is failing because the font file is not being copied from the temp dir to the fonts folder // We need to figure out why move_uploaded_file call in the WP_Font_Family::move_font_face_asset function is not working while testing $local_font = array( diff --git a/phpunit/fonts-library/class-wp-font-family-utils-test.php b/phpunit/fonts-library/class-wp-font-family-utils-test.php index ae47cc0eb99cae..7d34c78fdbf149 100644 --- a/phpunit/fonts-library/class-wp-font-family-utils-test.php +++ b/phpunit/fonts-library/class-wp-font-family-utils-test.php @@ -7,7 +7,7 @@ class WP_Font_Family_Utils_Test extends WP_UnitTestCase { - function test_has_font_mime_type() { + public function test_has_font_mime_type() { $this->assertFalse( WP_Font_Family_Utils::has_font_mime_type( '/temp/not-a-font.ttf.exe' ) ); @@ -28,7 +28,7 @@ function test_has_font_mime_type() { ); } - function test_get_filename_from_font_face() { + public function test_get_filename_from_font_face() { $font_face = array( 'fontFamily' => 'Piazzolla', 'fontStyle' => 'italic', @@ -56,7 +56,7 @@ function test_get_filename_from_font_face() { ); } - function test_merge_fonts_data() { + public function test_merge_fonts_data() { $font1 = array( 'slug' => 'Piazzolla', 'name' => 'Piazzolla', diff --git a/phpunit/fonts-library/class-wp-fonts-library-test.php b/phpunit/fonts-library/class-wp-fonts-library-test.php index ee5238864171b6..733be79100a753 100644 --- a/phpunit/fonts-library/class-wp-fonts-library-test.php +++ b/phpunit/fonts-library/class-wp-fonts-library-test.php @@ -7,11 +7,11 @@ class WP_Fonts_Library_Test extends WP_UnitTestCase { - function test_get_fonts_directory() { + public function test_get_fonts_directory() { $this->assertStringEndsWith( '/wp-content/fonts', WP_Fonts_Library::get_fonts_directory() ); } - function test_get_relative_fonts_path() { + public function test_get_relative_fonts_path() { $this->assertStringEndsWith( '/wp-content/fonts/', WP_Fonts_Library::get_relative_fonts_path() ); } From 6c06a3714f62f5fbc216c6282205506d32b5f5ea Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 25 Jul 2023 11:22:02 -0300 Subject: [PATCH 075/169] improving the suffix and sanitiztion for get_filename_from_font_face method --- .../fonts-library/class-wp-font-family-utils.php | 10 +++++----- .../fonts-library/class-wp-font-family.php | 5 +++-- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family-utils.php b/lib/experimental/fonts-library/class-wp-font-family-utils.php index 47de5c9470247a..ba2aec75ec3252 100644 --- a/lib/experimental/fonts-library/class-wp-font-family-utils.php +++ b/lib/experimental/fonts-library/class-wp-font-family-utils.php @@ -28,13 +28,13 @@ class WP_Font_Family_Utils { * @param int $i Optional counter for appending to the filename, default is 1. * @return string The generated filename for the font face asset. */ - public static function get_filename_from_font_face( $font_face, $url, $i = 1 ) { + public static function get_filename_from_font_face( $font_face, $url, $suffix = '' ) { $extension = pathinfo( $url, PATHINFO_EXTENSION ); - $filename = sanitize_title( "{$font_face['fontFamily']}_{$font_face['fontStyle']}_{$font_face['fontWeight']}" ); - if ( $i > 1 ) { - $filename .= "_{$i}"; + $filename = "{$font_face['fontFamily']}_{$font_face['fontStyle']}_{$font_face['fontWeight']}"; + if ( $suffix ) { + $filename .= "_{$suffix}"; } - return "{$filename}.{$extension}"; + return sanitize_file_name( "{$filename}.{$extension}" ); } /** diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 4d4055a09d11f2..c463a531efa1c9 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -242,9 +242,10 @@ private function download_font_face_assets( $font_face ) { $new_font_face = $font_face; $sources = (array) $font_face['src']; $new_font_face['src'] = array(); - $i = 0; + $index = 0; foreach ( $sources as $src ) { - $filename = WP_Font_Family_Utils::get_filename_from_font_face( $font_face, $src, $i++ ); + $suffix = $index++ > 0 ? $index : ''; + $filename = WP_Font_Family_Utils::get_filename_from_font_face( $font_face, $src, $suffix ); $new_src = $this->download_asset( $src, $filename ); if ( $new_src ) { $new_font_face['src'][] = $new_src; From 23de632b1972088da3b2cd5d384bfc2b43c6bbfc Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 25 Jul 2023 11:38:39 -0300 Subject: [PATCH 076/169] simplify uninstall method --- lib/experimental/fonts-library/class-wp-font-family.php | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index c463a531efa1c9..0d8d864d5f8a39 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -90,12 +90,8 @@ public function uninstall() { if ( null === $post ) { return new WP_Error( 'font_family_not_found', __( 'The font family could not be found.', 'gutenberg' ) ); } - $were_assets_removed = $this->remove_font_family_assets(); - if ( true === $were_assets_removed ) { - $was_post_deleted = wp_delete_post( $post->ID, true ); - if ( null === $was_post_deleted ) { - return new WP_Error( 'font_family_not_deleted', __( 'The font family could not be deleted.', 'gutenberg' ) ); - } + if ( !$this->remove_font_family_assets() || !wp_delete_post( $post->ID, true ) ) { + return new WP_Error( 'font_family_not_deleted', __( 'The font family could not be deleted.', 'gutenberg' ) ); } return true; } From 7562ff3aa3dcf25f7c4b3f562dbb1dfbe6d4389d Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 25 Jul 2023 14:35:27 -0300 Subject: [PATCH 077/169] updating comments --- phpunit/fonts-library/class-wp-font-family-test.php | 4 +++- phpunit/fonts-library/class-wp-font-family-utils-test.php | 4 +++- phpunit/fonts-library/class-wp-fonts-library-test.php | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 93fad9ae6020b4..5bd677fdaaa9b2 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -2,7 +2,9 @@ /** * Tests for Font Family Utils class * - * @package Gutenberg + * @package Gutenberg + * @subpackage Fonts Library + * */ class WP_Font_Family_Test extends WP_UnitTestCase { diff --git a/phpunit/fonts-library/class-wp-font-family-utils-test.php b/phpunit/fonts-library/class-wp-font-family-utils-test.php index 7d34c78fdbf149..937f30df697b72 100644 --- a/phpunit/fonts-library/class-wp-font-family-utils-test.php +++ b/phpunit/fonts-library/class-wp-font-family-utils-test.php @@ -2,7 +2,9 @@ /** * Tests for Font Family class * - * @package Gutenberg + * @package Gutenberg + * @subpackage Fonts Library + * */ class WP_Font_Family_Utils_Test extends WP_UnitTestCase { diff --git a/phpunit/fonts-library/class-wp-fonts-library-test.php b/phpunit/fonts-library/class-wp-fonts-library-test.php index 733be79100a753..dbe3b226f00741 100644 --- a/phpunit/fonts-library/class-wp-fonts-library-test.php +++ b/phpunit/fonts-library/class-wp-fonts-library-test.php @@ -2,7 +2,9 @@ /** * Tests for Fonts Library class * - * @package Gutenberg + * @package Gutenberg + * @subpackage Fonts Library + * */ class WP_Fonts_Library_Test extends WP_UnitTestCase { From fbaea8637db9ed1aec37864dfdc6b3b84ced729d Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 25 Jul 2023 14:41:55 -0300 Subject: [PATCH 078/169] adding covers in php tests --- .../class-wp-font-family-test.php | 28 ++++++++++++++++++- .../class-wp-font-family-utils-test.php | 12 ++++++++ .../class-wp-fonts-library-test.php | 9 ++++++ 3 files changed, 48 insertions(+), 1 deletion(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 5bd677fdaaa9b2..fdef9efe75a060 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -7,6 +7,9 @@ * */ + /** + * @coversDefaultClass WP_Font_Family + */ class WP_Font_Family_Test extends WP_UnitTestCase { const FONT_DATA_1 = array( @@ -29,17 +32,26 @@ class WP_Font_Family_Test extends WP_UnitTestCase { 'fontFamily' => 'Arial', ); + /** + * @covers ::get_data + */ public function test_get_data() { $font = new WP_Font_Family( self::FONT_DATA_1 ); $this->assertSame( 'piazzolla', $font->get_data()['slug'] ); $this->assertCount( 1, $font->get_data()['fontFace'] ); } + /** + * @covers ::get_data_as_json + */ public function test_get_data_as_json() { $font = new WP_Font_Family( self::FONT_DATA_1 ); $this->assertSame( wp_json_encode( self::FONT_DATA_1 ), $font->get_data_as_json() ); } + /** + * @covers ::has_font_faces + */ public function test_has_font_faces() { $font1 = new WP_Font_Family( self::FONT_DATA_1 ); $this->assertTrue( $font1->has_font_faces() ); @@ -48,6 +60,11 @@ public function test_has_font_faces() { $this->assertFalse( $font2->has_font_faces() ); } + /** + * @covers ::install + * @covers ::uninstall + * @covers ::get_font_post + */ public function test_install_and_uninstall_google_font() { $font = new WP_Font_Family( self::FONT_DATA_1 ); $font->install(); @@ -82,6 +99,11 @@ public function test_install_and_uninstall_google_font() { $this->assertFileDoesNotExist( WP_FONTS_DIR . '/piazzolla_italic_400.ttf' ); } + /** + * @covers ::install + * @covers ::uninstall + * @covers ::get_font_post + */ public function test_install_and_uninstall_font_without_faces() { $font = new WP_Font_Family( self::FONT_DATA_2 ); $font->install(); @@ -105,7 +127,11 @@ public function test_install_and_uninstall_font_without_faces() { $this->assertNull( $post ); } - + /** + * @covers ::install + * @covers ::uninstall + * @covers ::get_font_post + */ public function test_install_and_uninstall_local_fonts() { // TODO: Fix this test. Is failing because the font file is not being copied from the temp dir to the fonts folder // We need to figure out why move_uploaded_file call in the WP_Font_Family::move_font_face_asset function is not working while testing diff --git a/phpunit/fonts-library/class-wp-font-family-utils-test.php b/phpunit/fonts-library/class-wp-font-family-utils-test.php index 937f30df697b72..0ae9936e901b94 100644 --- a/phpunit/fonts-library/class-wp-font-family-utils-test.php +++ b/phpunit/fonts-library/class-wp-font-family-utils-test.php @@ -7,8 +7,14 @@ * */ + /** + * @coversDefaultClass WP_Font_Family_Utils + */ class WP_Font_Family_Utils_Test extends WP_UnitTestCase { + /** + * @covers ::has_font_mime_type + */ public function test_has_font_mime_type() { $this->assertFalse( WP_Font_Family_Utils::has_font_mime_type( '/temp/not-a-font.ttf.exe' ) @@ -30,6 +36,9 @@ public function test_has_font_mime_type() { ); } + /** + * @covers ::get_filename_from_font_face + */ public function test_get_filename_from_font_face() { $font_face = array( 'fontFamily' => 'Piazzolla', @@ -58,6 +67,9 @@ public function test_get_filename_from_font_face() { ); } + /** + * @covers ::merge_fonts_data + */ public function test_merge_fonts_data() { $font1 = array( 'slug' => 'Piazzolla', diff --git a/phpunit/fonts-library/class-wp-fonts-library-test.php b/phpunit/fonts-library/class-wp-fonts-library-test.php index dbe3b226f00741..95782e4567db46 100644 --- a/phpunit/fonts-library/class-wp-fonts-library-test.php +++ b/phpunit/fonts-library/class-wp-fonts-library-test.php @@ -7,12 +7,21 @@ * */ +/** + * @coversDefaultClass WP_Fonts_Library + */ class WP_Fonts_Library_Test extends WP_UnitTestCase { + /** + * @covers ::get_fonts_directory + */ public function test_get_fonts_directory() { $this->assertStringEndsWith( '/wp-content/fonts', WP_Fonts_Library::get_fonts_directory() ); } + /** + * @covers ::get_relative_fonts_path + */ public function test_get_relative_fonts_path() { $this->assertStringEndsWith( '/wp-content/fonts/', WP_Fonts_Library::get_relative_fonts_path() ); } From 76dce9129377baf9daa01e7176870a30cc8a9e1c Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 25 Jul 2023 16:17:39 -0300 Subject: [PATCH 079/169] require font slug in the get_filename_from_font_face method --- .../fonts-library/class-wp-font-family-utils.php | 6 +++--- .../fonts-library/class-wp-font-family.php | 4 ++-- .../class-wp-font-family-utils-test.php | 12 ++++++------ 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family-utils.php b/lib/experimental/fonts-library/class-wp-font-family-utils.php index ba2aec75ec3252..0bc461f091901a 100644 --- a/lib/experimental/fonts-library/class-wp-font-family-utils.php +++ b/lib/experimental/fonts-library/class-wp-font-family-utils.php @@ -25,12 +25,12 @@ class WP_Font_Family_Utils { * * @param array $font_face The font face array containing 'fontFamily', 'fontStyle', and 'fontWeight' attributes. * @param string $url The URL of the font face asset, used to derive the file extension. - * @param int $i Optional counter for appending to the filename, default is 1. + * @param string $suffix Optional suffix added to the resulting filename * @return string The generated filename for the font face asset. */ - public static function get_filename_from_font_face( $font_face, $url, $suffix = '' ) { + public static function get_filename_from_font_face( $font_slug, $font_face, $url, $suffix = '' ) { $extension = pathinfo( $url, PATHINFO_EXTENSION ); - $filename = "{$font_face['fontFamily']}_{$font_face['fontStyle']}_{$font_face['fontWeight']}"; + $filename = "{$font_slug}_{$font_face['fontStyle']}_{$font_face['fontWeight']}"; if ( $suffix ) { $filename .= "_{$suffix}"; } diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 0d8d864d5f8a39..6e7cb560689df8 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -178,7 +178,7 @@ private function download_asset( $src, $filename ) { */ private function move_font_face_asset( $font_face, $file ) { $new_font_face = $font_face; - $filename = WP_Font_Family_Utils::get_filename_from_font_face( $font_face, $file['name'] ); + $filename = WP_Font_Family_Utils::get_filename_from_font_face( $this->data['slug'], $font_face, $file['name'] ); $filepath = path_join( WP_FONTS_DIR, $filename ); // Remove the uploaded font asset reference from the font face definition because it is no longer needed. @@ -241,7 +241,7 @@ private function download_font_face_assets( $font_face ) { $index = 0; foreach ( $sources as $src ) { $suffix = $index++ > 0 ? $index : ''; - $filename = WP_Font_Family_Utils::get_filename_from_font_face( $font_face, $src, $suffix ); + $filename = WP_Font_Family_Utils::get_filename_from_font_face( $this->data['slug'], $font_face, $src, $suffix ); $new_src = $this->download_asset( $src, $filename ); if ( $new_src ) { $new_font_face['src'][] = $new_src; diff --git a/phpunit/fonts-library/class-wp-font-family-utils-test.php b/phpunit/fonts-library/class-wp-font-family-utils-test.php index 0ae9936e901b94..24d0eb536758ff 100644 --- a/phpunit/fonts-library/class-wp-font-family-utils-test.php +++ b/phpunit/fonts-library/class-wp-font-family-utils-test.php @@ -52,18 +52,18 @@ public function test_get_filename_from_font_face() { ); $this->assertSame( - WP_Font_Family_Utils::get_filename_from_font_face( $font_face, $font_face['src'][0] ), + WP_Font_Family_Utils::get_filename_from_font_face( 'piazzola', $font_face, $font_face['src'][0] ), 'piazzolla_italic_400.ttf' ); $this->assertSame( - WP_Font_Family_Utils::get_filename_from_font_face( $font_face, $font_face['src'][1], 2 ), - 'piazzolla_italic_400_2.ttf' + WP_Font_Family_Utils::get_filename_from_font_face( 'piazzola', $font_face, $font_face['src'][1], 1 ), + 'piazzolla_italic_400_1.ttf' ); $this->assertSame( - WP_Font_Family_Utils::get_filename_from_font_face( $font_face, $font_face['src'][2], 3 ), - 'piazzolla_italic_400_3.ttf' + WP_Font_Family_Utils::get_filename_from_font_face( 'piazzola', $font_face, $font_face['src'][2], 2 ), + 'piazzolla_italic_400_1.ttf' ); } @@ -72,7 +72,7 @@ public function test_get_filename_from_font_face() { */ public function test_merge_fonts_data() { $font1 = array( - 'slug' => 'Piazzolla', + 'slug' => 'piazzolla', 'name' => 'Piazzolla', 'fontFamily' => 'Piazzolla', 'fontFace' => array( From 66c803450a301490ca0faf687770eb98609bea1d Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 25 Jul 2023 16:22:08 -0300 Subject: [PATCH 080/169] improve get_datamethod test --- phpunit/fonts-library/class-wp-font-family-test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index fdef9efe75a060..819901621b4548 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -38,7 +38,7 @@ class WP_Font_Family_Test extends WP_UnitTestCase { public function test_get_data() { $font = new WP_Font_Family( self::FONT_DATA_1 ); $this->assertSame( 'piazzolla', $font->get_data()['slug'] ); - $this->assertCount( 1, $font->get_data()['fontFace'] ); + $this->assertEquals( self::FONT_DATA_1, $font->get_data() ); } /** From fe594aa87b0c36e87deaf6750cc0dd53c745db39 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 27 Jul 2023 11:34:28 -0300 Subject: [PATCH 081/169] add fixture for WP_Font_Family_Test --- .../class-wp-font-family-test.php | 321 +++++++++--------- 1 file changed, 166 insertions(+), 155 deletions(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 819901621b4548..b2e0caab1fbf5f 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -12,20 +12,6 @@ */ class WP_Font_Family_Test extends WP_UnitTestCase { - const FONT_DATA_1 = array( - 'name' => 'Piazzolla', - 'slug' => 'piazzolla', - 'fontFamily' => 'Piazzolla', - 'fontFace' => array( - array( - 'fontFamily' => 'Piazzolla', - 'fontStyle' => 'italic', - 'fontWeight' => '400', - 'src' => 'http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf', - ), - ), - ); - const FONT_DATA_2 = array( 'name' => 'Arial', 'slug' => 'arial', @@ -33,169 +19,182 @@ class WP_Font_Family_Test extends WP_UnitTestCase { ); /** - * @covers ::get_data + * Test the constructor and the get_data method + * + * @covers ::__construct + * @covers ::get_data + * @dataProvider data_font_fixtures */ - public function test_get_data() { - $font = new WP_Font_Family( self::FONT_DATA_1 ); - $this->assertSame( 'piazzolla', $font->get_data()['slug'] ); - $this->assertEquals( self::FONT_DATA_1, $font->get_data() ); + public function test_get_data( $font_data ) { + $font = new WP_Font_Family( $font_data ); + $this->assertEquals( $font_data, $font->get_data() ); } - /** - * @covers ::get_data_as_json - */ - public function test_get_data_as_json() { - $font = new WP_Font_Family( self::FONT_DATA_1 ); - $this->assertSame( wp_json_encode( self::FONT_DATA_1 ), $font->get_data_as_json() ); + public function data_font_fixtures() { + return array( + 'with_one_google_font_face' => array ( + 'font_data' => array( + 'name' => 'Piazzolla', + 'slug' => 'piazzolla', + 'fontFamily' => 'Piazzolla', + 'fontFace' => array( + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + 'src' => 'http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf', + ), + ), + ), + 'installed_font_data' => array ( + 'name' => 'Piazzolla', + 'slug' => 'piazzolla', + 'fontFamily' => 'Piazzolla', + 'fontFace' => array( + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + 'src' => 'piazzolla_italic_400.ttf', // This is just filename of the font asset and not the entire URL because we can't know the URL of the asset in the test + ), + ), + ), + ), + 'with_no_font_faces' => array ( + 'font_data' => array( + 'name' => 'Arial', + 'slug' => 'arial', + 'fontFamily' => 'Arial', + ), + 'installed_font_data' => array ( + 'name' => 'Arial', + 'slug' => 'arial', + 'fontFamily' => 'Arial', + ), + ), + 'with_local_files' => array ( + 'font_data' => array ( + 'name' => 'Inter', + 'slug' => 'inter', + 'fontFamily' => 'Inter', + 'fontFace' => array( + array( + 'fontFamily' => 'Inter', + 'fontStyle' => 'normal', + 'fontWeight' => '400', + 'file' => 'files0', + ), + array( + 'fontFamily' => 'Inter', + 'fontStyle' => 'normal', + 'fontWeight' => '500', + 'file' => 'files1', + ), + ), + ), + 'installed_font_data' => array ( + 'name' => 'Inter', + 'slug' => 'inter', + 'fontFamily' => 'Inter', + 'fontFace' => array( + array( + 'fontFamily' => 'Inter', + 'fontStyle' => 'normal', + 'fontWeight' => '400', + 'src' => 'https://example.com/wp-content/fonts/inter_normal_400.ttf', + ), + array( + 'fontFamily' => 'Inter', + 'fontStyle' => 'normal', + 'fontWeight' => '500', + 'src' => 'https://example.com/wp-content/fonts/inter_normal_500.ttf', + ), + ), + ), + 'files_data' => array ( + 'files0' => array( + 'name' => 'inter1.ttf', + 'full_path' => 'inter1.ttf', + 'type' => 'font/ttf', + 'tmp_name' => tempnam( sys_get_temp_dir(), 'Inter-' ), + 'error' => 0, + 'size' => 156764, + ), + 'files1' => array( + 'name' => 'inter2.ttf', + 'full_path' => 'inter2.ttf', + 'type' => 'font/ttf', + 'tmp_name' => tempnam( sys_get_temp_dir(), 'Inter-' ), + 'error' => 0, + 'size' => 156524, + ), + ), + ), + ); } /** - * @covers ::has_font_faces + * Test if the get_data_as_json method returns the correct data + * + * @covers ::get_data_as_json + * @dataProvider data_font_fixtures */ - public function test_has_font_faces() { - $font1 = new WP_Font_Family( self::FONT_DATA_1 ); - $this->assertTrue( $font1->has_font_faces() ); - - $font2 = new WP_Font_Family( self::FONT_DATA_2 ); - $this->assertFalse( $font2->has_font_faces() ); + public function test_get_data_as_json( $font_data ) { + $font = new WP_Font_Family( $font_data ); + $this->assertSame( wp_json_encode( $font_data ), $font->get_data_as_json() ); } /** - * @covers ::install - * @covers ::uninstall - * @covers ::get_font_post + * Test if the has_font_faces method returns the correct data + * + * @covers ::has_font_faces + * @dataProvider data_font_fixtures */ - public function test_install_and_uninstall_google_font() { - $font = new WP_Font_Family( self::FONT_DATA_1 ); - $font->install(); - - // Check that the post was created - $post = $font->get_font_post(); - $this->assertInstanceof( 'WP_Post', $post ); - - // Check that the post has the correct data - $this->assertSame( 'Piazzolla' , $post->post_title ); - $this->assertSame( 'piazzolla' , $post->post_name ); - $content = json_decode( $post->post_content, true ); - $this->assertSame( 'Piazzolla' , $content['fontFamily'] ); - $this->assertSame( 'piazzolla' , $content['slug'] ); - $this->assertSame( 'Piazzolla' , $content['fontFace'][0]['fontFamily'] ); - $this->assertSame( 'italic' , $content['fontFace'][0]['fontStyle'] ); - $this->assertSame( '400' , $content['fontFace'][0]['fontWeight'] ); - - // Check that the font file src was updated to the local font asset - $this->assertStringEndsWith( '/piazzolla_italic_400.ttf', $content['fontFace'][0]['src'] ); - - // Check that the font file was created - $this->assertFileExists( WP_FONTS_DIR . '/piazzolla_italic_400.ttf' ); - - $font->uninstall(); - - // Check that the post was deleted - $post = $font->get_font_post(); - $this->assertNull( $post ); - - // Check that the font asset was deleted - $this->assertFileDoesNotExist( WP_FONTS_DIR . '/piazzolla_italic_400.ttf' ); + public function test_has_font_faces( $font_data ) { + $font = new WP_Font_Family( $font_data ); + $this->assertSame( !empty( $font_data['fontFace'] ) && is_array( $font_data['fontFace'] ), $font->has_font_faces() ); } /** * @covers ::install * @covers ::uninstall * @covers ::get_font_post + * @dataProvider data_font_fixtures */ - public function test_install_and_uninstall_font_without_faces() { - $font = new WP_Font_Family( self::FONT_DATA_2 ); - $font->install(); - + public function test_install_and_uninstall_google_font( $font_data, $installed_font_data, $files_data = array() ) { + $font = new WP_Font_Family( $font_data ); + $font->install( $files_data ); + // Check that the post was created $post = $font->get_font_post(); $this->assertInstanceof( 'WP_Post', $post ); // Check that the post has the correct data - $this->assertSame( 'Arial', $post->post_title ); - $this->assertSame( 'arial', $post->post_name ); - $content = json_decode( $post->post_content, true ); - $this->assertSame( 'Arial', $content['fontFamily'] ); - $this->assertSame( 'arial', $content['slug'] ); - $this->assertArrayNotHasKey( 'fontFace', $content ); - - $font->uninstall(); - - // Check that the post was deleted - $post = $font->get_font_post(); - $this->assertNull( $post ); - } + $this->assertSame( $installed_font_data['name'] , $post->post_title ); + $this->assertSame( $installed_font_data['slug'] , $post->post_name ); - /** - * @covers ::install - * @covers ::uninstall - * @covers ::get_font_post - */ - public function test_install_and_uninstall_local_fonts() { - // TODO: Fix this test. Is failing because the font file is not being copied from the temp dir to the fonts folder - // We need to figure out why move_uploaded_file call in the WP_Font_Family::move_font_face_asset function is not working while testing - $local_font = array( - 'name' => 'Inter', - 'slug' => 'inter', - 'fontFamily' => 'Inter', - 'fontFace' => array( - array( - 'fontFamily' => 'Inter', - 'fontStyle' => 'normal', - 'fontWeight' => '400', - 'file' => 'files0', - ), - array( - 'fontFamily' => 'Inter', - 'fontStyle' => 'normal', - 'fontWeight' => '500', - 'file' => 'files1', - ), - ), - ); - - $files = array( - 'files0' => array( - 'name' => 'inter1.ttf', - 'full_path' => 'inter1.ttf', - 'type' => 'font/ttf', - 'tmp_name' => tempnam( sys_get_temp_dir(), 'Inter-' ), - 'error' => 0, - 'size' => 156764, - ), - 'files1' => array( - 'name' => 'inter2.ttf', - 'full_path' => 'inter2.ttf', - 'type' => 'font/ttf', - 'tmp_name' => tempnam( sys_get_temp_dir(), 'Inter-' ), - 'error' => 0, - 'size' => 156524, - ), - ); - - $font = new WP_Font_Family( $local_font ); - $data = $font->install( $files ); - - // Check that the post was created - $post = $font->get_font_post(); - $this->assertInstanceof( 'WP_Post', $post ); - - // Check that the post has the correct data - $this->assertSame( 'Inter', $post->post_title ); - $this->assertSame( 'inter', $post->post_name ); $content = json_decode( $post->post_content, true ); - $this->assertSame( 'Inter', $content['fontFamily'] ); - $this->assertSame( 'inter', $content['slug'] ); - - // Check that the font file src was updated to the local font asset - $this->assertStringEndsWith( '/inter_normal_400.ttf', $content['fontFace'][0]['src'] ); - $this->assertStringEndsWith( '/inter_normal_500.ttf', $content['fontFace'][1]['src'] ); - - // Check that the font file was created - $this->assertFileExists( WP_FONTS_DIR . '/inter_normal_400.ttf' ); - $this->assertFileExists( WP_FONTS_DIR . '/inter_normal_500.ttf' ); - + $this->assertSame( $installed_font_data['fontFamily'], $content['fontFamily'] ); + $this->assertSame( $installed_font_data['slug'], $content['slug'] ); + + if ( $font->has_font_faces() ) { + $font_face_index = 0; + foreach ( $content['fontFace'] as $font_face ) { + $source_index = 0; + if ( is_array ( $font_face['src'] ) ) { + foreach ( $font_face['src'] as $src ) { + $this->assertStringEndsWith( $installed_font_data[ $font_face_index ]['src'][ $source_index ], $src ); + $this->assertFileExists( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'][ $source_index ] ); + } + } else { + $this->assertStringEndsWith( $installed_font_data['fontFace'][ $font_face_index ]['src'], $font_face['src'] ); + $this->assertFileExists( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'] ); + } + $font_face_index++; + $source_index++; + } + } + $font->uninstall(); // Check that the post was deleted @@ -203,8 +202,20 @@ public function test_install_and_uninstall_local_fonts() { $this->assertNull( $post ); // Check that the font asset was deleted - $this->assertFileDoesNotExist( WP_FONTS_DIR . '/inter_normal_400.ttf' ); - $this->assertFileDoesNotExist( WP_FONTS_DIR . '/inter_normal_500.ttf' ); + if ( $font->has_font_faces() ) { + $font_face_index = 0; + foreach ( $content['fontFace'] as $font_face ) { + $source_index = 0; + if ( is_array ( $font_face['src'] ) ) { + foreach ( $font_face['src'] as $src ) { + $this->assertFileDoesNotExist( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'][ $source_index ] ); + } + } else { + $this->assertFileDoesNotExist( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'] ); + } + $font_face_index++; + $source_index++; + } + } } - } From b86907b1fc6ab2d6b9a3c6565cf6436f8fde484e Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 27 Jul 2023 11:35:27 -0300 Subject: [PATCH 082/169] deleting unused data --- phpunit/fonts-library/class-wp-font-family-test.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index b2e0caab1fbf5f..e0b265fd49f3ed 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -12,12 +12,6 @@ */ class WP_Font_Family_Test extends WP_UnitTestCase { - const FONT_DATA_2 = array( - 'name' => 'Arial', - 'slug' => 'arial', - 'fontFamily' => 'Arial', - ); - /** * Test the constructor and the get_data method * From 6acb5a088274c803618ef72a82691ab98df1277b Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 27 Jul 2023 11:38:33 -0300 Subject: [PATCH 083/169] renaminng test case --- phpunit/fonts-library/class-wp-font-family-test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index e0b265fd49f3ed..24f267d8da251a 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -155,7 +155,7 @@ public function test_has_font_faces( $font_data ) { * @covers ::get_font_post * @dataProvider data_font_fixtures */ - public function test_install_and_uninstall_google_font( $font_data, $installed_font_data, $files_data = array() ) { + public function test_install_and_uninstall( $font_data, $installed_font_data, $files_data = array() ) { $font = new WP_Font_Family( $font_data ); $font->install( $files_data ); From 72d08d66ff3b3cd81d513b97bb9bb53334bb2e83 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 27 Jul 2023 11:42:21 -0300 Subject: [PATCH 084/169] fixing WP_Font_Family_Utils_Test tests --- .../fonts-library/class-wp-font-family-utils-test.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/phpunit/fonts-library/class-wp-font-family-utils-test.php b/phpunit/fonts-library/class-wp-font-family-utils-test.php index 24d0eb536758ff..0968dcf6a56bdd 100644 --- a/phpunit/fonts-library/class-wp-font-family-utils-test.php +++ b/phpunit/fonts-library/class-wp-font-family-utils-test.php @@ -52,18 +52,18 @@ public function test_get_filename_from_font_face() { ); $this->assertSame( - WP_Font_Family_Utils::get_filename_from_font_face( 'piazzola', $font_face, $font_face['src'][0] ), + WP_Font_Family_Utils::get_filename_from_font_face( 'piazzolla', $font_face, $font_face['src'][0] ), 'piazzolla_italic_400.ttf' ); $this->assertSame( - WP_Font_Family_Utils::get_filename_from_font_face( 'piazzola', $font_face, $font_face['src'][1], 1 ), + WP_Font_Family_Utils::get_filename_from_font_face( 'piazzolla', $font_face, $font_face['src'][1], 1 ), 'piazzolla_italic_400_1.ttf' ); $this->assertSame( - WP_Font_Family_Utils::get_filename_from_font_face( 'piazzola', $font_face, $font_face['src'][2], 2 ), - 'piazzolla_italic_400_1.ttf' + WP_Font_Family_Utils::get_filename_from_font_face( 'piazzolla', $font_face, $font_face['src'][2], 2 ), + 'piazzolla_italic_400_2.ttf' ); } @@ -92,7 +92,7 @@ public function test_merge_fonts_data() { ); $font2 = array( - 'slug' => 'Piazzolla', + 'slug' => 'piazzolla', 'fontFamily' => 'Piazzolla', 'fontFace' => array( array( From 4e5b583ca08ad66e92a52fec37515113b89c6ab1 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 27 Jul 2023 11:46:28 -0300 Subject: [PATCH 085/169] format php --- .../fonts-library/class-wp-font-family.php | 8 +-- ...class-wp-rest-fonts-library-controller.php | 6 +- .../class-wp-font-family-test.php | 59 +++++++++---------- .../class-wp-font-family-utils-test.php | 17 +++--- .../class-wp-fonts-library-test.php | 9 ++- 5 files changed, 48 insertions(+), 51 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 6e7cb560689df8..fdd5042a9beb85 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -90,7 +90,7 @@ public function uninstall() { if ( null === $post ) { return new WP_Error( 'font_family_not_found', __( 'The font family could not be found.', 'gutenberg' ) ); } - if ( !$this->remove_font_family_assets() || !wp_delete_post( $post->ID, true ) ) { + if ( ! $this->remove_font_family_assets() || ! wp_delete_post( $post->ID, true ) ) { return new WP_Error( 'font_family_not_deleted', __( 'The font family could not be deleted.', 'gutenberg' ) ); } return true; @@ -240,7 +240,7 @@ private function download_font_face_assets( $font_face ) { $new_font_face['src'] = array(); $index = 0; foreach ( $sources as $src ) { - $suffix = $index++ > 0 ? $index : ''; + $suffix = $index++ > 0 ? $index : ''; $filename = WP_Font_Family_Utils::get_filename_from_font_face( $this->data['slug'], $font_face, $src, $suffix ); $new_src = $this->download_asset( $src, $filename ); if ( $new_src ) { @@ -392,13 +392,13 @@ private function create_or_update_font_post() { public function install( $files = null ) { $were_assets_written = $this->download_or_move_font_faces( $files ); - if ( !$were_assets_written ) { + if ( ! $were_assets_written ) { return new WP_Error( 'font_face_download_failed', __( 'The font face assets could not be written.', 'gutenberg' ) ); } $post_id = $this->create_or_update_font_post(); - if ( is_wp_error( $post_id ) ){ + if ( is_wp_error( $post_id ) ) { return $post_id; } diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index b96d4f3f4c378a..83be12c4549441 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -74,10 +74,10 @@ public function register_routes() { * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure. */ public function uninstall_font_family( $request ) { - $data = array( + $data = array( 'slug' => $request['slug'], ); - $font = new WP_Font_Family( $data ); + $font = new WP_Font_Family( $data ); $result = $font->uninstall(); if ( is_wp_error( $result ) ) { @@ -190,7 +190,7 @@ public function install_fonts( $request ) { $font->install( $files ); $fonts_installed[] = $font; } - + if ( empty( $fonts_installed ) ) { return new WP_Error( 'error_installing_fonts', __( 'Error installing fonts. No font was installed.', 'gutenberg' ), array( 'status' => 500 ) ); } diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 24f267d8da251a..4a1ee7faaf8894 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -4,21 +4,20 @@ * * @package Gutenberg * @subpackage Fonts Library - * */ /** - * @coversDefaultClass WP_Font_Family - */ + * @coversDefaultClass WP_Font_Family + */ class WP_Font_Family_Test extends WP_UnitTestCase { /** * Test the constructor and the get_data method - * + * * @covers ::__construct * @covers ::get_data * @dataProvider data_font_fixtures - */ + */ public function test_get_data( $font_data ) { $font = new WP_Font_Family( $font_data ); $this->assertEquals( $font_data, $font->get_data() ); @@ -26,8 +25,8 @@ public function test_get_data( $font_data ) { public function data_font_fixtures() { return array( - 'with_one_google_font_face' => array ( - 'font_data' => array( + 'with_one_google_font_face' => array( + 'font_data' => array( 'name' => 'Piazzolla', 'slug' => 'piazzolla', 'fontFamily' => 'Piazzolla', @@ -40,7 +39,7 @@ public function data_font_fixtures() { ), ), ), - 'installed_font_data' => array ( + 'installed_font_data' => array( 'name' => 'Piazzolla', 'slug' => 'piazzolla', 'fontFamily' => 'Piazzolla', @@ -54,20 +53,20 @@ public function data_font_fixtures() { ), ), ), - 'with_no_font_faces' => array ( - 'font_data' => array( + 'with_no_font_faces' => array( + 'font_data' => array( 'name' => 'Arial', 'slug' => 'arial', 'fontFamily' => 'Arial', ), - 'installed_font_data' => array ( + 'installed_font_data' => array( 'name' => 'Arial', 'slug' => 'arial', 'fontFamily' => 'Arial', ), ), - 'with_local_files' => array ( - 'font_data' => array ( + 'with_local_files' => array( + 'font_data' => array( 'name' => 'Inter', 'slug' => 'inter', 'fontFamily' => 'Inter', @@ -86,7 +85,7 @@ public function data_font_fixtures() { ), ), ), - 'installed_font_data' => array ( + 'installed_font_data' => array( 'name' => 'Inter', 'slug' => 'inter', 'fontFamily' => 'Inter', @@ -105,7 +104,7 @@ public function data_font_fixtures() { ), ), ), - 'files_data' => array ( + 'files_data' => array( 'files0' => array( 'name' => 'inter1.ttf', 'full_path' => 'inter1.ttf', @@ -129,10 +128,10 @@ public function data_font_fixtures() { /** * Test if the get_data_as_json method returns the correct data - * - * @covers ::get_data_as_json + * + * @covers ::get_data_as_json * @dataProvider data_font_fixtures - */ + */ public function test_get_data_as_json( $font_data ) { $font = new WP_Font_Family( $font_data ); $this->assertSame( wp_json_encode( $font_data ), $font->get_data_as_json() ); @@ -140,32 +139,32 @@ public function test_get_data_as_json( $font_data ) { /** * Test if the has_font_faces method returns the correct data - * - * @covers ::has_font_faces + * + * @covers ::has_font_faces * @dataProvider data_font_fixtures - */ + */ public function test_has_font_faces( $font_data ) { $font = new WP_Font_Family( $font_data ); - $this->assertSame( !empty( $font_data['fontFace'] ) && is_array( $font_data['fontFace'] ), $font->has_font_faces() ); + $this->assertSame( ! empty( $font_data['fontFace'] ) && is_array( $font_data['fontFace'] ), $font->has_font_faces() ); } /** - * @covers ::install + * @covers ::install * @covers ::uninstall * @covers ::get_font_post * @dataProvider data_font_fixtures - */ + */ public function test_install_and_uninstall( $font_data, $installed_font_data, $files_data = array() ) { $font = new WP_Font_Family( $font_data ); $font->install( $files_data ); - + // Check that the post was created $post = $font->get_font_post(); $this->assertInstanceof( 'WP_Post', $post ); // Check that the post has the correct data - $this->assertSame( $installed_font_data['name'] , $post->post_title ); - $this->assertSame( $installed_font_data['slug'] , $post->post_name ); + $this->assertSame( $installed_font_data['name'], $post->post_title ); + $this->assertSame( $installed_font_data['slug'], $post->post_name ); $content = json_decode( $post->post_content, true ); $this->assertSame( $installed_font_data['fontFamily'], $content['fontFamily'] ); @@ -175,7 +174,7 @@ public function test_install_and_uninstall( $font_data, $installed_font_data, $f $font_face_index = 0; foreach ( $content['fontFace'] as $font_face ) { $source_index = 0; - if ( is_array ( $font_face['src'] ) ) { + if ( is_array( $font_face['src'] ) ) { foreach ( $font_face['src'] as $src ) { $this->assertStringEndsWith( $installed_font_data[ $font_face_index ]['src'][ $source_index ], $src ); $this->assertFileExists( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'][ $source_index ] ); @@ -188,7 +187,7 @@ public function test_install_and_uninstall( $font_data, $installed_font_data, $f $source_index++; } } - + $font->uninstall(); // Check that the post was deleted @@ -200,7 +199,7 @@ public function test_install_and_uninstall( $font_data, $installed_font_data, $f $font_face_index = 0; foreach ( $content['fontFace'] as $font_face ) { $source_index = 0; - if ( is_array ( $font_face['src'] ) ) { + if ( is_array( $font_face['src'] ) ) { foreach ( $font_face['src'] as $src ) { $this->assertFileDoesNotExist( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'][ $source_index ] ); } diff --git a/phpunit/fonts-library/class-wp-font-family-utils-test.php b/phpunit/fonts-library/class-wp-font-family-utils-test.php index 0968dcf6a56bdd..4d7f0ca4946699 100644 --- a/phpunit/fonts-library/class-wp-font-family-utils-test.php +++ b/phpunit/fonts-library/class-wp-font-family-utils-test.php @@ -4,17 +4,16 @@ * * @package Gutenberg * @subpackage Fonts Library - * */ /** - * @coversDefaultClass WP_Font_Family_Utils - */ + * @coversDefaultClass WP_Font_Family_Utils + */ class WP_Font_Family_Utils_Test extends WP_UnitTestCase { /** - * @covers ::has_font_mime_type - */ + * @covers ::has_font_mime_type + */ public function test_has_font_mime_type() { $this->assertFalse( WP_Font_Family_Utils::has_font_mime_type( '/temp/not-a-font.ttf.exe' ) @@ -37,8 +36,8 @@ public function test_has_font_mime_type() { } /** - * @covers ::get_filename_from_font_face - */ + * @covers ::get_filename_from_font_face + */ public function test_get_filename_from_font_face() { $font_face = array( 'fontFamily' => 'Piazzolla', @@ -68,8 +67,8 @@ public function test_get_filename_from_font_face() { } /** - * @covers ::merge_fonts_data - */ + * @covers ::merge_fonts_data + */ public function test_merge_fonts_data() { $font1 = array( 'slug' => 'piazzolla', diff --git a/phpunit/fonts-library/class-wp-fonts-library-test.php b/phpunit/fonts-library/class-wp-fonts-library-test.php index 95782e4567db46..f5c06d1b4aa458 100644 --- a/phpunit/fonts-library/class-wp-fonts-library-test.php +++ b/phpunit/fonts-library/class-wp-fonts-library-test.php @@ -4,7 +4,6 @@ * * @package Gutenberg * @subpackage Fonts Library - * */ /** @@ -13,15 +12,15 @@ class WP_Fonts_Library_Test extends WP_UnitTestCase { /** - * @covers ::get_fonts_directory - */ + * @covers ::get_fonts_directory + */ public function test_get_fonts_directory() { $this->assertStringEndsWith( '/wp-content/fonts', WP_Fonts_Library::get_fonts_directory() ); } /** - * @covers ::get_relative_fonts_path - */ + * @covers ::get_relative_fonts_path + */ public function test_get_relative_fonts_path() { $this->assertStringEndsWith( '/wp-content/fonts/', WP_Fonts_Library::get_relative_fonts_path() ); } From c51a611b4483cc73bde56f044176637ecd7d5a14 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 27 Jul 2023 12:50:19 -0300 Subject: [PATCH 086/169] adding dataProviders in WP_Font_Family_Utils_Test --- .../class-wp-font-family-utils-test.php | 331 +++++++++++++----- 1 file changed, 239 insertions(+), 92 deletions(-) diff --git a/phpunit/fonts-library/class-wp-font-family-utils-test.php b/phpunit/fonts-library/class-wp-font-family-utils-test.php index 4d7f0ca4946699..a3460f07d320a1 100644 --- a/phpunit/fonts-library/class-wp-font-family-utils-test.php +++ b/phpunit/fonts-library/class-wp-font-family-utils-test.php @@ -13,130 +13,277 @@ class WP_Font_Family_Utils_Test extends WP_UnitTestCase { /** * @covers ::has_font_mime_type + * @dataProvider data_has_font_mime_type_fixtures */ - public function test_has_font_mime_type() { - $this->assertFalse( - WP_Font_Family_Utils::has_font_mime_type( '/temp/not-a-font.ttf.exe' ) - ); - $this->assertFalse( - WP_Font_Family_Utils::has_font_mime_type( '/temp/not-a-font.otf.php' ) - ); - $this->assertTrue( - WP_Font_Family_Utils::has_font_mime_type( '/temp/piazzolla_400_italic.ttf' ) - ); - $this->assertTrue( - WP_Font_Family_Utils::has_font_mime_type( '/temp/piazzolla_400_italic.otf' ) - ); - $this->assertTrue( - WP_Font_Family_Utils::has_font_mime_type( '/temp/piazzolla_400_italic.woff' ) - ); - $this->assertTrue( - WP_Font_Family_Utils::has_font_mime_type( '/temp/piazzolla_400_italic.woff2' ) + public function test_has_font_mime_type( $font_file, $expected ) { + $this->assertSame( $expected, WP_Font_Family_Utils::has_font_mime_type( $font_file ) ); + } + + public function data_has_font_mime_type_fixtures() { + return array( + 'ttf' => array( + 'font_file' => '/temp/piazzolla_400_italic.ttf', + 'expected' => true, + ), + 'otf' => array( + 'font_file' => '/temp/piazzolla_400_italic.otf', + 'expected' => true, + ), + 'woff' => array( + 'font_file' => '/temp/piazzolla_400_italic.woff', + 'expected' => true, + ), + 'woff2' => array( + 'font_file' => '/temp/piazzolla_400_italic.woff2', + 'expected' => true, + ), + 'exe' => array( + 'font_file' => '/temp/piazzolla_400_italic.exe', + 'expected' => false, + ), + 'php' => array( + 'font_file' => '/temp/piazzolla_400_italic.php', + 'expected' => false, + ), ); } /** * @covers ::get_filename_from_font_face + * @dataProvider data_get_filename_from_font_face_fixtures */ - public function test_get_filename_from_font_face() { - $font_face = array( - 'fontFamily' => 'Piazzolla', - 'fontStyle' => 'italic', - 'fontWeight' => '400', - 'src' => array( - 'http://example.com/fonts/piazzolla1.ttf', - 'http://example.com/fonts/piazzolla2.ttf', - 'http://example.com/fonts/piazzolla3.ttf', - ), - ); - - $this->assertSame( - WP_Font_Family_Utils::get_filename_from_font_face( 'piazzolla', $font_face, $font_face['src'][0] ), - 'piazzolla_italic_400.ttf' - ); + public function test_get_filename_from_font_face( $slug, $font_face, $suffix, $expected_file_name ) { - $this->assertSame( - WP_Font_Family_Utils::get_filename_from_font_face( 'piazzolla', $font_face, $font_face['src'][1], 1 ), - 'piazzolla_italic_400_1.ttf' + $this->assertEquals( + $expected_file_name, + WP_Font_Family_Utils::get_filename_from_font_face( + $slug, + $font_face, + $font_face['src'], + $suffix, + ) ); + } - $this->assertSame( - WP_Font_Family_Utils::get_filename_from_font_face( 'piazzolla', $font_face, $font_face['src'][2], 2 ), - 'piazzolla_italic_400_2.ttf' + public function data_get_filename_from_font_face_fixtures() { + return array( + 'piazzolla' => array( + 'slug' => 'piazzolla', + 'font_face' => array( + 'fontStyle' => 'italic', + 'fontWeight' => '400', + 'src' => 'http://example.com/fonts/font_file.ttf', + ), + 'suffix' => '', + 'expected_file_name' => 'piazzolla_italic_400.ttf', + ), + 'inter' => array( + 'slug' => 'inter', + 'font_face' => array( + 'fontStyle' => 'normal', + 'fontWeight' => '600', + 'src' => 'http://example.com/fonts/font_file.otf', + ), + 'suffix' => '', + 'expected_file_name' => 'inter_normal_600.otf', + ), ); } /** * @covers ::merge_fonts_data + * @dataProvider data_merge_fonts_data_fixtures */ - public function test_merge_fonts_data() { - $font1 = array( - 'slug' => 'piazzolla', - 'name' => 'Piazzolla', - 'fontFamily' => 'Piazzolla', - 'fontFace' => array( - array( + public function test_merge_fonts_data( $are_mergeable, $font1, $font2, $expected_result ) { + // Fonts with same slug should be merged + $merged_font = WP_Font_Family_Utils::merge_fonts_data( $font1, $font2 ); + + if ( $are_mergeable ) { + $this->assertNotWPError( $merged_font ); + $this->assertEquals( $expected_result, $merged_font ); + } else { + $this->assertWPError( $merged_font ); + } + } + + public function data_merge_fonts_data_fixtures() { + return array( + + 'mergeable_fonts' => array( + 'are_mergeable' => true, + 'font1' => array( + 'slug' => 'piazzolla', + 'name' => 'Piazzolla', 'fontFamily' => 'Piazzolla', - 'fontStyle' => 'italic', - 'fontWeight' => '400', - 'src' => 'http://example.com/fonts/piazzolla_400_italic.ttf', + 'fontFace' => array( + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + 'src' => 'http://example.com/fonts/piazzolla_400_italic.ttf', + ), + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '500', + 'src' => 'http://example.com/fonts/piazzolla_500_italic.ttf', + ), + ), ), - array( + 'font2' => array( + 'slug' => 'piazzolla', 'fontFamily' => 'Piazzolla', - 'fontStyle' => 'italic', - 'fontWeight' => '500', - 'src' => 'http://example.com/fonts/piazzolla_500_italic.ttf', + 'fontFace' => array( + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'normal', + 'fontWeight' => '600', + 'src' => 'http://example.com/fonts/piazzolla_600_normal.ttf', + ), + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'normal', + 'fontWeight' => '700', + 'src' => 'http://example.com/fonts/piazzolla_700_normal.ttf', + ), + ), + ), + 'expected_result' => array( + 'slug' => 'piazzolla', + 'name' => 'Piazzolla', + 'fontFamily' => 'Piazzolla', + 'fontFace' => array( + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + 'src' => 'http://example.com/fonts/piazzolla_400_italic.ttf', + ), + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '500', + 'src' => 'http://example.com/fonts/piazzolla_500_italic.ttf', + ), + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'normal', + 'fontWeight' => '600', + 'src' => 'http://example.com/fonts/piazzolla_600_normal.ttf', + ), + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'normal', + 'fontWeight' => '700', + 'src' => 'http://example.com/fonts/piazzolla_700_normal.ttf', + ), + ), ), ), - ); - $font2 = array( - 'slug' => 'piazzolla', - 'fontFamily' => 'Piazzolla', - 'fontFace' => array( - array( + 'mergeable_fonts_with_repeated_font_faces' => array( + 'are_mergeable' => true, + 'font1' => array( + 'slug' => 'piazzolla', + 'name' => 'Piazzolla', 'fontFamily' => 'Piazzolla', - 'fontStyle' => 'italic', - 'fontWeight' => '400', - 'src' => 'http://example.com/fonts/piazzolla_400_italic.ttf', + 'fontFace' => array( + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + 'src' => 'http://example.com/fonts/piazzolla_400_italic.ttf', + ), + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '500', + 'src' => 'http://example.com/fonts/piazzolla_500_italic.ttf', + ), + ), ), - array( + 'font2' => array( + 'slug' => 'piazzolla', 'fontFamily' => 'Piazzolla', - 'fontStyle' => 'normal', - 'fontWeight' => '400', - 'src' => 'http://example.com/fonts/piazzolla_400_normal.ttf', + 'fontFace' => array( + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'normal', + 'fontWeight' => '600', + 'src' => 'http://example.com/fonts/piazzolla_600_normal.ttf', + ), + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + 'src' => 'http://example.com/fonts/piazzolla_400_italic.ttf', + ), + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '500', + 'src' => 'http://example.com/fonts/piazzolla_500_italic.ttf', + ), + ), ), - array( + 'expected_result' => array( + 'slug' => 'piazzolla', + 'name' => 'Piazzolla', 'fontFamily' => 'Piazzolla', - 'fontStyle' => 'italic', - 'fontWeight' => '700', - 'src' => 'http://example.com/fonts/piazzolla_700_italic.ttf', + 'fontFace' => array( + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + 'src' => 'http://example.com/fonts/piazzolla_400_italic.ttf', + ), + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '500', + 'src' => 'http://example.com/fonts/piazzolla_500_italic.ttf', + ), + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'normal', + 'fontWeight' => '600', + 'src' => 'http://example.com/fonts/piazzolla_600_normal.ttf', + ), + ), ), ), - ); - $font3 = array( - 'slug' => 'encode-sans', - 'name' => 'Encode Sans', - 'fontFamily' => 'Encode Sans', - ); - - // Fonts with same slug should be merged - $merged_font = WP_Font_Family_Utils::merge_fonts_data( $font1, $font2 ); - $this->assertNotWPError( $merged_font ); - - // Total of font faces without duplicates - $this->assertCount( 4, $merged_font['fontFace'] ); + 'non_mergeable_fonts' => array( + 'are_mergeable' => false, + 'font1' => array( + 'slug' => 'piazzolla', + 'name' => 'Piazzolla', + 'fontFamily' => 'Piazzolla', + 'fontFace' => array( + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + 'src' => 'http://example.com/fonts/piazzolla_400_italic.ttf', + ), + ), + ), + 'font2' => array( + 'slug' => 'inter', + 'fontFamily' => 'Inter', + 'fontFace' => array( + array( + 'fontFamily' => 'Inter', + 'fontStyle' => 'normal', + 'fontWeight' => '700', + 'src' => 'http://example.com/fonts/inter_700_normal.ttf', + ), + ), + ), + 'expected_result' => 'WP_Error', + ), - // Missing keys should be added to the merged result - $this->assertSame( - $merged_font['name'], - 'Piazzolla' ); - - // Fonts with different slugs should not be merged - $merged_font = WP_Font_Family_Utils::merge_fonts_data( $font1, $font3 ); - $this->assertWPError( $merged_font ); } } From 1cae91cf3373ab7008ca48d7881f97af8458b913 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 27 Jul 2023 13:12:10 -0300 Subject: [PATCH 087/169] adding params comments in test cases --- .../class-wp-font-family-test.php | 186 ++++++++++-------- .../class-wp-font-family-utils-test.php | 16 ++ 2 files changed, 116 insertions(+), 86 deletions(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 4a1ee7faaf8894..727b274d8fa0ab 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -16,13 +16,113 @@ class WP_Font_Family_Test extends WP_UnitTestCase { * * @covers ::__construct * @covers ::get_data + * * @dataProvider data_font_fixtures + * + * @param array $font_data Font family data in theme.json format */ public function test_get_data( $font_data ) { $font = new WP_Font_Family( $font_data ); $this->assertEquals( $font_data, $font->get_data() ); } + /** + * Test if the get_data_as_json method returns the correct data + * + * @covers ::get_data_as_json + * + * @dataProvider data_font_fixtures + * + * @param array $font_data Font family data in theme.json format + */ + public function test_get_data_as_json( $font_data ) { + $font = new WP_Font_Family( $font_data ); + $this->assertSame( wp_json_encode( $font_data ), $font->get_data_as_json() ); + } + + /** + * Test if the has_font_faces method returns the correct data + * + * @covers ::has_font_faces + * + * @dataProvider data_font_fixtures + * + * @param array $font_data Font family data in theme.json format + */ + public function test_has_font_faces( $font_data ) { + $font = new WP_Font_Family( $font_data ); + $this->assertSame( ! empty( $font_data['fontFace'] ) && is_array( $font_data['fontFace'] ), $font->has_font_faces() ); + } + + /** + * @covers ::install + * @covers ::uninstall + * @covers ::get_font_post + * + * @dataProvider data_font_fixtures + * + * @param array $font_data Font family data in theme.json format + * @param array $installed_font_data Font family data in theme.json format expected data after installation + * @param array $files_data Optional. Files data in $_FILES format (Used only if the font has local files). Default: empty array. + */ + public function test_install_and_uninstall( $font_data, $installed_font_data, $files_data = array() ) { + $font = new WP_Font_Family( $font_data ); + $font->install( $files_data ); + + // Check that the post was created + $post = $font->get_font_post(); + $this->assertInstanceof( 'WP_Post', $post ); + + // Check that the post has the correct data + $this->assertSame( $installed_font_data['name'], $post->post_title ); + $this->assertSame( $installed_font_data['slug'], $post->post_name ); + + $content = json_decode( $post->post_content, true ); + $this->assertSame( $installed_font_data['fontFamily'], $content['fontFamily'] ); + $this->assertSame( $installed_font_data['slug'], $content['slug'] ); + + if ( $font->has_font_faces() ) { + $font_face_index = 0; + foreach ( $content['fontFace'] as $font_face ) { + $source_index = 0; + if ( is_array( $font_face['src'] ) ) { + foreach ( $font_face['src'] as $src ) { + $this->assertStringEndsWith( $installed_font_data[ $font_face_index ]['src'][ $source_index ], $src ); + $this->assertFileExists( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'][ $source_index ] ); + } + } else { + $this->assertStringEndsWith( $installed_font_data['fontFace'][ $font_face_index ]['src'], $font_face['src'] ); + $this->assertFileExists( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'] ); + } + $font_face_index++; + $source_index++; + } + } + + $font->uninstall(); + + // Check that the post was deleted + $post = $font->get_font_post(); + $this->assertNull( $post ); + + // Check that the font asset was deleted + if ( $font->has_font_faces() ) { + $font_face_index = 0; + foreach ( $content['fontFace'] as $font_face ) { + $source_index = 0; + if ( is_array( $font_face['src'] ) ) { + foreach ( $font_face['src'] as $src ) { + $this->assertFileDoesNotExist( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'][ $source_index ] ); + } + } else { + $this->assertFileDoesNotExist( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'] ); + } + $font_face_index++; + $source_index++; + } + } + } + public function data_font_fixtures() { return array( 'with_one_google_font_face' => array( @@ -125,90 +225,4 @@ public function data_font_fixtures() { ), ); } - - /** - * Test if the get_data_as_json method returns the correct data - * - * @covers ::get_data_as_json - * @dataProvider data_font_fixtures - */ - public function test_get_data_as_json( $font_data ) { - $font = new WP_Font_Family( $font_data ); - $this->assertSame( wp_json_encode( $font_data ), $font->get_data_as_json() ); - } - - /** - * Test if the has_font_faces method returns the correct data - * - * @covers ::has_font_faces - * @dataProvider data_font_fixtures - */ - public function test_has_font_faces( $font_data ) { - $font = new WP_Font_Family( $font_data ); - $this->assertSame( ! empty( $font_data['fontFace'] ) && is_array( $font_data['fontFace'] ), $font->has_font_faces() ); - } - - /** - * @covers ::install - * @covers ::uninstall - * @covers ::get_font_post - * @dataProvider data_font_fixtures - */ - public function test_install_and_uninstall( $font_data, $installed_font_data, $files_data = array() ) { - $font = new WP_Font_Family( $font_data ); - $font->install( $files_data ); - - // Check that the post was created - $post = $font->get_font_post(); - $this->assertInstanceof( 'WP_Post', $post ); - - // Check that the post has the correct data - $this->assertSame( $installed_font_data['name'], $post->post_title ); - $this->assertSame( $installed_font_data['slug'], $post->post_name ); - - $content = json_decode( $post->post_content, true ); - $this->assertSame( $installed_font_data['fontFamily'], $content['fontFamily'] ); - $this->assertSame( $installed_font_data['slug'], $content['slug'] ); - - if ( $font->has_font_faces() ) { - $font_face_index = 0; - foreach ( $content['fontFace'] as $font_face ) { - $source_index = 0; - if ( is_array( $font_face['src'] ) ) { - foreach ( $font_face['src'] as $src ) { - $this->assertStringEndsWith( $installed_font_data[ $font_face_index ]['src'][ $source_index ], $src ); - $this->assertFileExists( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'][ $source_index ] ); - } - } else { - $this->assertStringEndsWith( $installed_font_data['fontFace'][ $font_face_index ]['src'], $font_face['src'] ); - $this->assertFileExists( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'] ); - } - $font_face_index++; - $source_index++; - } - } - - $font->uninstall(); - - // Check that the post was deleted - $post = $font->get_font_post(); - $this->assertNull( $post ); - - // Check that the font asset was deleted - if ( $font->has_font_faces() ) { - $font_face_index = 0; - foreach ( $content['fontFace'] as $font_face ) { - $source_index = 0; - if ( is_array( $font_face['src'] ) ) { - foreach ( $font_face['src'] as $src ) { - $this->assertFileDoesNotExist( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'][ $source_index ] ); - } - } else { - $this->assertFileDoesNotExist( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'] ); - } - $font_face_index++; - $source_index++; - } - } - } } diff --git a/phpunit/fonts-library/class-wp-font-family-utils-test.php b/phpunit/fonts-library/class-wp-font-family-utils-test.php index a3460f07d320a1..80d06e8bbdccef 100644 --- a/phpunit/fonts-library/class-wp-font-family-utils-test.php +++ b/phpunit/fonts-library/class-wp-font-family-utils-test.php @@ -13,7 +13,11 @@ class WP_Font_Family_Utils_Test extends WP_UnitTestCase { /** * @covers ::has_font_mime_type + * * @dataProvider data_has_font_mime_type_fixtures + * + * @param string $font_file Font file path + * @param bool $expected Expected result */ public function test_has_font_mime_type( $font_file, $expected ) { $this->assertSame( $expected, WP_Font_Family_Utils::has_font_mime_type( $font_file ) ); @@ -50,7 +54,13 @@ public function data_has_font_mime_type_fixtures() { /** * @covers ::get_filename_from_font_face + * * @dataProvider data_get_filename_from_font_face_fixtures + * + * @param string $slug Font slug + * @param array $font_face Font face data in theme.json format + * @param string Optional. $suffix Suffix added to the resulting filename. Default empty string. + * @param string $expected_file_name Expected file name */ public function test_get_filename_from_font_face( $slug, $font_face, $suffix, $expected_file_name ) { @@ -92,7 +102,13 @@ public function data_get_filename_from_font_face_fixtures() { /** * @covers ::merge_fonts_data + * * @dataProvider data_merge_fonts_data_fixtures + * + * @param bool $are_mergeable Whether the fonts are mergeable + * @param array $font1 First font data in theme.json format + * @param array $font2 Second font data in theme.json format + * @param array $expected_result Expected result */ public function test_merge_fonts_data( $are_mergeable, $font1, $font2, $expected_result ) { // Fonts with same slug should be merged From 06ee7a808fe46047ff828f44d0f6bdf94e027061 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 27 Jul 2023 14:28:34 -0300 Subject: [PATCH 088/169] adding messages on tests with multiple assertions --- .../class-wp-font-family-test.php | 24 +++++++++---------- .../class-wp-font-family-utils-test.php | 10 ++++---- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 727b274d8fa0ab..8088c05bcdc357 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -71,15 +71,15 @@ public function test_install_and_uninstall( $font_data, $installed_font_data, $f // Check that the post was created $post = $font->get_font_post(); - $this->assertInstanceof( 'WP_Post', $post ); + $this->assertInstanceof( 'WP_Post', $post, 'The font post was not created.' ); // Check that the post has the correct data - $this->assertSame( $installed_font_data['name'], $post->post_title ); - $this->assertSame( $installed_font_data['slug'], $post->post_name ); + $this->assertSame( $installed_font_data['name'], $post->post_title, 'The font post has the wrong title.' ); + $this->assertSame( $installed_font_data['slug'], $post->post_name, 'The font post has the wrong slug.' ); $content = json_decode( $post->post_content, true ); - $this->assertSame( $installed_font_data['fontFamily'], $content['fontFamily'] ); - $this->assertSame( $installed_font_data['slug'], $content['slug'] ); + $this->assertSame( $installed_font_data['fontFamily'], $content['fontFamily'], 'The font post content has the wrong font family.' ); + $this->assertSame( $installed_font_data['slug'], $content['slug'], 'The font post content has the wrong slug.' ); if ( $font->has_font_faces() ) { $font_face_index = 0; @@ -87,12 +87,12 @@ public function test_install_and_uninstall( $font_data, $installed_font_data, $f $source_index = 0; if ( is_array( $font_face['src'] ) ) { foreach ( $font_face['src'] as $src ) { - $this->assertStringEndsWith( $installed_font_data[ $font_face_index ]['src'][ $source_index ], $src ); - $this->assertFileExists( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'][ $source_index ] ); + $this->assertStringEndsWith( $installed_font_data[ $font_face_index ]['src'][ $source_index ], $src, 'The font post content has the wrong src.' ); + $this->assertFileExists( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'][ $source_index ], 'The font asset was not created.' ); } } else { - $this->assertStringEndsWith( $installed_font_data['fontFace'][ $font_face_index ]['src'], $font_face['src'] ); - $this->assertFileExists( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'] ); + $this->assertStringEndsWith( $installed_font_data['fontFace'][ $font_face_index ]['src'], $font_face['src'], 'The font post content has the wrong src.' ); + $this->assertFileExists( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'], 'The font asset was not created.' ); } $font_face_index++; $source_index++; @@ -103,7 +103,7 @@ public function test_install_and_uninstall( $font_data, $installed_font_data, $f // Check that the post was deleted $post = $font->get_font_post(); - $this->assertNull( $post ); + $this->assertNull( $post, 'The font post was not deleted' ); // Check that the font asset was deleted if ( $font->has_font_faces() ) { @@ -112,10 +112,10 @@ public function test_install_and_uninstall( $font_data, $installed_font_data, $f $source_index = 0; if ( is_array( $font_face['src'] ) ) { foreach ( $font_face['src'] as $src ) { - $this->assertFileDoesNotExist( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'][ $source_index ] ); + $this->assertFileDoesNotExist( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'][ $source_index ], 'The font face asset was not removed' ); } } else { - $this->assertFileDoesNotExist( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'] ); + $this->assertFileDoesNotExist( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'], 'The font face asset was not removed' ); } $font_face_index++; $source_index++; diff --git a/phpunit/fonts-library/class-wp-font-family-utils-test.php b/phpunit/fonts-library/class-wp-font-family-utils-test.php index 80d06e8bbdccef..d89cb95d5ab9db 100644 --- a/phpunit/fonts-library/class-wp-font-family-utils-test.php +++ b/phpunit/fonts-library/class-wp-font-family-utils-test.php @@ -13,7 +13,7 @@ class WP_Font_Family_Utils_Test extends WP_UnitTestCase { /** * @covers ::has_font_mime_type - * + * * @dataProvider data_has_font_mime_type_fixtures * * @param string $font_file Font file path @@ -102,7 +102,7 @@ public function data_get_filename_from_font_face_fixtures() { /** * @covers ::merge_fonts_data - * + * * @dataProvider data_merge_fonts_data_fixtures * * @param bool $are_mergeable Whether the fonts are mergeable @@ -115,10 +115,10 @@ public function test_merge_fonts_data( $are_mergeable, $font1, $font2, $expected $merged_font = WP_Font_Family_Utils::merge_fonts_data( $font1, $font2 ); if ( $are_mergeable ) { - $this->assertNotWPError( $merged_font ); - $this->assertEquals( $expected_result, $merged_font ); + $this->assertNotWPError( $merged_font, 'Fonts could not be merged' ); + $this->assertEquals( $expected_result, $merged_font, 'The font family data and font faces merged not as expected' ); } else { - $this->assertWPError( $merged_font ); + $this->assertWPError( $merged_font, 'Merging non mergeable fonts (diifferent slug) should have failed.' ); } } From fa9556c38971cb222a12eb5a9912812a328d5bda Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 27 Jul 2023 15:18:01 -0300 Subject: [PATCH 089/169] test refactor --- .../class-wp-font-family-test.php | 40 +++++++++++++++++-- 1 file changed, 37 insertions(+), 3 deletions(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 8088c05bcdc357..5692b89840ee29 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -45,13 +45,47 @@ public function test_get_data_as_json( $font_data ) { * * @covers ::has_font_faces * - * @dataProvider data_font_fixtures + * @dataProvider data_has_font_faces * * @param array $font_data Font family data in theme.json format + * @param bool $expected Expected result */ - public function test_has_font_faces( $font_data ) { + public function test_has_font_faces( $font_data, $expected ) { $font = new WP_Font_Family( $font_data ); - $this->assertSame( ! empty( $font_data['fontFace'] ) && is_array( $font_data['fontFace'] ), $font->has_font_faces() ); + $this->assertSame( $expected, $font->has_font_faces() ); + } + + public function data_has_font_faces () { + return array ( + 'with font faces' => array ( + 'font_data' => array ( + 'slug' => 'piazzolla', + 'fontFace' => [ + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + ) + ] + ), + 'expected' => true, + ), + + 'empty font faces' => array ( + 'font_data' => array ( + 'slug' => 'piazzolla', + 'fontFace' => [], + ), + 'expected' => false + ), + + 'without font faces' => array ( + 'font_data' => array ( + 'slug' => 'piazzolla', + ), + 'expected' => false, + ), + ); } /** From 9149731788c901a5b9baa0dcca19fe05d33d1dd1 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 27 Jul 2023 15:40:03 -0300 Subject: [PATCH 090/169] refactor test --- .../class-wp-font-family-test.php | 44 +++++++++++++++++-- 1 file changed, 41 insertions(+), 3 deletions(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 5692b89840ee29..a2dc74fc929cd8 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -31,13 +31,51 @@ public function test_get_data( $font_data ) { * * @covers ::get_data_as_json * - * @dataProvider data_font_fixtures + * @dataProvider data_get_data_as_json * * @param array $font_data Font family data in theme.json format + * @param string $expected Expected font family data as JSON string */ - public function test_get_data_as_json( $font_data ) { + public function test_get_data_as_json( $font_data, $expected ) { $font = new WP_Font_Family( $font_data ); - $this->assertSame( wp_json_encode( $font_data ), $font->get_data_as_json() ); + $this->assertSame( $expected, $font->get_data_as_json() ); + } + + public function data_get_data_as_json () { + return array ( + 'piazzolla' => array ( + 'font_data' => array ( + 'slug' => 'piazzolla', + 'fontFamily' => 'Piazzolla', + 'name' => 'Piazzolla', + 'fontFace' => [ + array( + 'fontFamily' => 'Piazzolla', + 'src' => 'https://example.com/fonts/piazzolla_italic_400.ttf', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + ), + ] + ), + 'expected' => '{"slug":"piazzolla","fontFamily":"Piazzolla","name":"Piazzolla","fontFace":[{"fontFamily":"Piazzolla","src":"https:\/\/example.com\/fonts\/piazzolla_italic_400.ttf","fontStyle":"italic","fontWeight":"400"}]}', + ), + 'piazzolla2' => array ( + 'font_data' => array ( + 'slug' => 'piazzolla', + 'fontFamily' => 'Piazzolla', + 'name' => 'Piazzolla', + 'fontFace' => [ + array( + 'fontFamily' => 'Piazzolla', + 'src' => 'https://example.com/fonts/piazzolla_italic_400.ttf', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + ), + ] + ), + 'expected' => '{"slug":"piazzolla","fontFamily":"Piazzolla","name":"Piazzolla","fontFace":[{"fontFamily":"Piazzolla","src":"https:\/\/example.com\/fonts\/piazzolla_italic_400.ttf","fontStyle":"italic","fontWeight":"400"}]}', + ) + ); } /** From e2d1a3480782cb5315620c1e40336299f6ca09c6 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 27 Jul 2023 15:40:42 -0300 Subject: [PATCH 091/169] php format --- .../class-wp-font-family-test.php | 78 +++++++++---------- 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index a2dc74fc929cd8..3ea2d8c7c8b405 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -33,7 +33,7 @@ public function test_get_data( $font_data ) { * * @dataProvider data_get_data_as_json * - * @param array $font_data Font family data in theme.json format + * @param array $font_data Font family data in theme.json format * @param string $expected Expected font family data as JSON string */ public function test_get_data_as_json( $font_data, $expected ) { @@ -41,40 +41,40 @@ public function test_get_data_as_json( $font_data, $expected ) { $this->assertSame( $expected, $font->get_data_as_json() ); } - public function data_get_data_as_json () { - return array ( - 'piazzolla' => array ( - 'font_data' => array ( - 'slug' => 'piazzolla', + public function data_get_data_as_json() { + return array( + 'piazzolla' => array( + 'font_data' => array( + 'slug' => 'piazzolla', 'fontFamily' => 'Piazzolla', - 'name' => 'Piazzolla', - 'fontFace' => [ + 'name' => 'Piazzolla', + 'fontFace' => array( array( 'fontFamily' => 'Piazzolla', - 'src' => 'https://example.com/fonts/piazzolla_italic_400.ttf', - 'fontStyle' => 'italic', + 'src' => 'https://example.com/fonts/piazzolla_italic_400.ttf', + 'fontStyle' => 'italic', 'fontWeight' => '400', ), - ] + ), ), - 'expected' => '{"slug":"piazzolla","fontFamily":"Piazzolla","name":"Piazzolla","fontFace":[{"fontFamily":"Piazzolla","src":"https:\/\/example.com\/fonts\/piazzolla_italic_400.ttf","fontStyle":"italic","fontWeight":"400"}]}', + 'expected' => '{"slug":"piazzolla","fontFamily":"Piazzolla","name":"Piazzolla","fontFace":[{"fontFamily":"Piazzolla","src":"https:\/\/example.com\/fonts\/piazzolla_italic_400.ttf","fontStyle":"italic","fontWeight":"400"}]}', ), - 'piazzolla2' => array ( - 'font_data' => array ( - 'slug' => 'piazzolla', + 'piazzolla2' => array( + 'font_data' => array( + 'slug' => 'piazzolla', 'fontFamily' => 'Piazzolla', - 'name' => 'Piazzolla', - 'fontFace' => [ + 'name' => 'Piazzolla', + 'fontFace' => array( array( 'fontFamily' => 'Piazzolla', - 'src' => 'https://example.com/fonts/piazzolla_italic_400.ttf', - 'fontStyle' => 'italic', + 'src' => 'https://example.com/fonts/piazzolla_italic_400.ttf', + 'fontStyle' => 'italic', 'fontWeight' => '400', ), - ] + ), ), - 'expected' => '{"slug":"piazzolla","fontFamily":"Piazzolla","name":"Piazzolla","fontFace":[{"fontFamily":"Piazzolla","src":"https:\/\/example.com\/fonts\/piazzolla_italic_400.ttf","fontStyle":"italic","fontWeight":"400"}]}', - ) + 'expected' => '{"slug":"piazzolla","fontFamily":"Piazzolla","name":"Piazzolla","fontFace":[{"fontFamily":"Piazzolla","src":"https:\/\/example.com\/fonts\/piazzolla_italic_400.ttf","fontStyle":"italic","fontWeight":"400"}]}', + ), ); } @@ -93,35 +93,35 @@ public function test_has_font_faces( $font_data, $expected ) { $this->assertSame( $expected, $font->has_font_faces() ); } - public function data_has_font_faces () { - return array ( - 'with font faces' => array ( - 'font_data' => array ( - 'slug' => 'piazzolla', - 'fontFace' => [ + public function data_has_font_faces() { + return array( + 'with font faces' => array( + 'font_data' => array( + 'slug' => 'piazzolla', + 'fontFace' => array( array( 'fontFamily' => 'Piazzolla', 'fontStyle' => 'italic', 'fontWeight' => '400', - ) - ] + ), + ), ), - 'expected' => true, + 'expected' => true, ), - 'empty font faces' => array ( - 'font_data' => array ( - 'slug' => 'piazzolla', - 'fontFace' => [], + 'empty font faces' => array( + 'font_data' => array( + 'slug' => 'piazzolla', + 'fontFace' => array(), ), - 'expected' => false + 'expected' => false, ), - 'without font faces' => array ( - 'font_data' => array ( + 'without font faces' => array( + 'font_data' => array( 'slug' => 'piazzolla', ), - 'expected' => false, + 'expected' => false, ), ); } From 4bf28468f17c858ab3683def6efaa156730651e0 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 27 Jul 2023 15:59:00 -0300 Subject: [PATCH 092/169] add comments to data_provider --- .../fonts-library/class-wp-font-family-test.php | 15 +++++++++++++++ .../class-wp-font-family-utils-test.php | 15 +++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 3ea2d8c7c8b405..72e3a71b0260ef 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -41,6 +41,11 @@ public function test_get_data_as_json( $font_data, $expected ) { $this->assertSame( $expected, $font->get_data_as_json() ); } + /** + * Data provider. + * + * @return array[] + */ public function data_get_data_as_json() { return array( 'piazzolla' => array( @@ -93,6 +98,11 @@ public function test_has_font_faces( $font_data, $expected ) { $this->assertSame( $expected, $font->has_font_faces() ); } + /** + * Data provider. + * + * @return array[] + */ public function data_has_font_faces() { return array( 'with font faces' => array( @@ -195,6 +205,11 @@ public function test_install_and_uninstall( $font_data, $installed_font_data, $f } } + /** + * Data provider. + * + * @return array[] + */ public function data_font_fixtures() { return array( 'with_one_google_font_face' => array( diff --git a/phpunit/fonts-library/class-wp-font-family-utils-test.php b/phpunit/fonts-library/class-wp-font-family-utils-test.php index d89cb95d5ab9db..4f3299ede3c147 100644 --- a/phpunit/fonts-library/class-wp-font-family-utils-test.php +++ b/phpunit/fonts-library/class-wp-font-family-utils-test.php @@ -23,6 +23,11 @@ public function test_has_font_mime_type( $font_file, $expected ) { $this->assertSame( $expected, WP_Font_Family_Utils::has_font_mime_type( $font_file ) ); } + /** + * Data provider. + * + * @return array[] + */ public function data_has_font_mime_type_fixtures() { return array( 'ttf' => array( @@ -75,6 +80,11 @@ public function test_get_filename_from_font_face( $slug, $font_face, $suffix, $e ); } + /** + * Data provider. + * + * @return array[] + */ public function data_get_filename_from_font_face_fixtures() { return array( 'piazzolla' => array( @@ -122,6 +132,11 @@ public function test_merge_fonts_data( $are_mergeable, $font1, $font2, $expected } } + /** + * Data provider. + * + * @return array[] + */ public function data_merge_fonts_data_fixtures() { return array( From 192e8654ddd3c13f51c51a18f64dc04fb6b17bc6 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 27 Jul 2023 16:03:59 -0300 Subject: [PATCH 093/169] change test case name --- phpunit/fonts-library/class-wp-font-family-test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 72e3a71b0260ef..1fe4077940fa6a 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -240,7 +240,7 @@ public function data_font_fixtures() { ), ), ), - 'with_no_font_faces' => array( + 'without_font_faces' => array( 'font_data' => array( 'name' => 'Arial', 'slug' => 'arial', From 06d950e3a0053ae41602a7a46ab9866b0973367e Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 27 Jul 2023 16:16:29 -0300 Subject: [PATCH 094/169] raname custom post type --- lib/experimental/fonts-library/class-wp-font-family.php | 4 ++-- .../fonts-library/class-wp-rest-fonts-library-controller.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index fdd5042a9beb85..c646c9b0fb7fe1 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -295,7 +295,7 @@ private function download_or_move_font_faces( $files ) { */ public function get_font_post() { $args = array( - 'post_type' => 'wp_fonts_library', + 'post_type' => 'wp_font_family', 'post_name' => $this->data['slug'], 'name' => $this->data['slug'], 'posts_per_page' => 1, @@ -333,7 +333,7 @@ private function create_font_post() { $post = array( 'post_title' => $this->data['name'], 'post_name' => $this->data['slug'], - 'post_type' => 'wp_fonts_library', + 'post_type' => 'wp_font_family', 'post_content' => $this->get_data_as_json(), 'post_status' => 'publish', ); diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index 83be12c4549441..2f34ac9ffaef81 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -211,7 +211,7 @@ public function register_post_type() { 'label' => 'Font Library', 'show_in_rest' => true, ); - register_post_type( 'wp_fonts_library', $args ); + register_post_type( 'wp_font_family', $args ); } } From b0a9e2d8f6c8f94ca9561889b4df868a936b57f3 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 27 Jul 2023 16:35:15 -0300 Subject: [PATCH 095/169] add missing parameter in docbloc --- lib/experimental/fonts-library/class-wp-font-family-utils.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/experimental/fonts-library/class-wp-font-family-utils.php b/lib/experimental/fonts-library/class-wp-font-family-utils.php index 0bc461f091901a..ccd23332e42348 100644 --- a/lib/experimental/fonts-library/class-wp-font-family-utils.php +++ b/lib/experimental/fonts-library/class-wp-font-family-utils.php @@ -23,6 +23,7 @@ class WP_Font_Family_Utils { * * Creates a filename for a font face asset using font family, style, weight and extension information. * + * @param string $font_slug The font slug to use in the filename. * @param array $font_face The font face array containing 'fontFamily', 'fontStyle', and 'fontWeight' attributes. * @param string $url The URL of the font face asset, used to derive the file extension. * @param string $suffix Optional suffix added to the resulting filename From 3cb3f492808e0b15c414042807891c3c58f11f20 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 27 Jul 2023 16:36:25 -0300 Subject: [PATCH 096/169] adding comment --- lib/experimental/fonts-library/class-wp-fonts-library.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 906469ffdd8492..513e540cf037cd 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -13,6 +13,9 @@ return; } +/** + * Fonts Library class. + */ class WP_Fonts_Library { const ALLOWED_FONT_MIME_TYPES = array( From f17f49f892dc249c2158ddcf6b5bf90f884ad6fe Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 27 Jul 2023 16:37:57 -0300 Subject: [PATCH 097/169] adding full stops at the end of param comments --- .../class-wp-font-family-utils-test.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/phpunit/fonts-library/class-wp-font-family-utils-test.php b/phpunit/fonts-library/class-wp-font-family-utils-test.php index 4f3299ede3c147..c3674f2834edfa 100644 --- a/phpunit/fonts-library/class-wp-font-family-utils-test.php +++ b/phpunit/fonts-library/class-wp-font-family-utils-test.php @@ -16,8 +16,8 @@ class WP_Font_Family_Utils_Test extends WP_UnitTestCase { * * @dataProvider data_has_font_mime_type_fixtures * - * @param string $font_file Font file path - * @param bool $expected Expected result + * @param string $font_file Font file path. + * @param bool $expected Expected result. */ public function test_has_font_mime_type( $font_file, $expected ) { $this->assertSame( $expected, WP_Font_Family_Utils::has_font_mime_type( $font_file ) ); @@ -62,10 +62,10 @@ public function data_has_font_mime_type_fixtures() { * * @dataProvider data_get_filename_from_font_face_fixtures * - * @param string $slug Font slug - * @param array $font_face Font face data in theme.json format + * @param string $slug Font slug. + * @param array $font_face Font face data in theme.json format. * @param string Optional. $suffix Suffix added to the resulting filename. Default empty string. - * @param string $expected_file_name Expected file name + * @param string $expected_file_name Expected file name. */ public function test_get_filename_from_font_face( $slug, $font_face, $suffix, $expected_file_name ) { @@ -115,10 +115,10 @@ public function data_get_filename_from_font_face_fixtures() { * * @dataProvider data_merge_fonts_data_fixtures * - * @param bool $are_mergeable Whether the fonts are mergeable - * @param array $font1 First font data in theme.json format - * @param array $font2 Second font data in theme.json format - * @param array $expected_result Expected result + * @param bool $are_mergeable Whether the fonts are mergeable. + * @param array $font1 First font data in theme.json format. + * @param array $font2 Second font data in theme.json format. + * @param array $expected_result Expected result. */ public function test_merge_fonts_data( $are_mergeable, $font1, $font2, $expected_result ) { // Fonts with same slug should be merged From b71213eee278a2d953e0e22e8426bb9f7506f589 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 28 Jul 2023 12:49:10 -0300 Subject: [PATCH 098/169] change test assert type Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- phpunit/fonts-library/class-wp-font-family-utils-test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit/fonts-library/class-wp-font-family-utils-test.php b/phpunit/fonts-library/class-wp-font-family-utils-test.php index c3674f2834edfa..d9cdc3b6fc9137 100644 --- a/phpunit/fonts-library/class-wp-font-family-utils-test.php +++ b/phpunit/fonts-library/class-wp-font-family-utils-test.php @@ -126,7 +126,7 @@ public function test_merge_fonts_data( $are_mergeable, $font1, $font2, $expected if ( $are_mergeable ) { $this->assertNotWPError( $merged_font, 'Fonts could not be merged' ); - $this->assertEquals( $expected_result, $merged_font, 'The font family data and font faces merged not as expected' ); + $this->assertSame( $expected_result, $merged_font, 'The font family data and font faces merged not as expected' ); } else { $this->assertWPError( $merged_font, 'Merging non mergeable fonts (diifferent slug) should have failed.' ); } From 042fb2199c41be4f18223dd2c60535d2ea20feb2 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 28 Jul 2023 12:49:39 -0300 Subject: [PATCH 099/169] change test assert type Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- phpunit/fonts-library/class-wp-font-family-test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 1fe4077940fa6a..da74f020ba020e 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -23,7 +23,7 @@ class WP_Font_Family_Test extends WP_UnitTestCase { */ public function test_get_data( $font_data ) { $font = new WP_Font_Family( $font_data ); - $this->assertEquals( $font_data, $font->get_data() ); + $this->assertSame( $font_data, $font->get_data() ); } /** From c02904191baaf1a764b39476b99cf6452219f9d1 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 28 Jul 2023 12:49:55 -0300 Subject: [PATCH 100/169] change test assert type Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- phpunit/fonts-library/class-wp-font-family-utils-test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit/fonts-library/class-wp-font-family-utils-test.php b/phpunit/fonts-library/class-wp-font-family-utils-test.php index d9cdc3b6fc9137..5200ad1063b858 100644 --- a/phpunit/fonts-library/class-wp-font-family-utils-test.php +++ b/phpunit/fonts-library/class-wp-font-family-utils-test.php @@ -69,7 +69,7 @@ public function data_has_font_mime_type_fixtures() { */ public function test_get_filename_from_font_face( $slug, $font_face, $suffix, $expected_file_name ) { - $this->assertEquals( + $this->assertSame( $expected_file_name, WP_Font_Family_Utils::get_filename_from_font_face( $slug, From fd810862f8b09cf17f54a05a194ad4d2e9561021 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 1 Aug 2023 12:38:33 -0300 Subject: [PATCH 101/169] use wp_handle_upload to write thee files and use wp-content/uploads/fonts as folder instead of wp-content/fonts --- .../fonts-library/class-wp-font-family.php | 50 +++++++++++++------ .../fonts-library/class-wp-fonts-library.php | 40 ++++++--------- ...class-wp-rest-fonts-library-controller.php | 3 +- .../fonts-library/fonts-library.php | 3 -- .../class-wp-fonts-library-test.php | 36 ++++++++++--- 5 files changed, 83 insertions(+), 49 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index c646c9b0fb7fe1..a939cc75af3aef 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -104,7 +104,7 @@ public function uninstall() { */ private static function delete_asset( $src ) { $filename = basename( $src ); - $file_path = path_join( WP_FONTS_DIR, $filename ); + $file_path = path_join( WP_Fonts_Library::get_fonts_dir(), $filename ); wp_delete_file( $file_path ); return ! file_exists( $file_path ); } @@ -136,10 +136,8 @@ private static function delete_font_face_assets( $font_face ) { * @return string|bool The relative path to the downloaded font asset. False if the download failed. */ private function download_asset( $src, $filename ) { - $file_path = path_join( WP_FONTS_DIR, $filename ); - // Checks if the file to be downloaded has a font mime type. - if ( ! WP_Font_Family_Utils::has_font_mime_type( $file_path ) ) { + if ( ! WP_Font_Family_Utils::has_font_mime_type( $filename ) ) { return false; } @@ -154,17 +152,29 @@ private function download_asset( $src, $filename ) { return false; } - // Moves the file to the fonts directory or return false. - $renamed_file = rename( $temp_file, $file_path ); + $overrides = array ( + 'action' => 'wp_handle_google_font_download', // Arbitrary string to avoid the is_uploaded_file() check applied when using 'wp_handle_upload'. + 'test_form' => false, // We are not testing a form submission. + 'test_type' => false, // Seems like we can not test mime type for files that are not images. See this function docs: https://developer.wordpress.org/reference/functions/wp_check_filetype_and_ext/ + 'unique_filename_callback' => function () use ($filename) { return $filename; }, // We want to keep the original filename. + ); + + $file = array ( + 'tmp_name' => $temp_file, + 'name' => $filename, + ); + + $handled_file = wp_handle_upload( $file, $overrides ); + // Cleans the temp file. @unlink( $temp_file ); - if ( ! $renamed_file ) { + if ( !isset ( $handled_file['url'] ) ) { return false; } // Returns the relative path to the downloaded font asset to be used as font face src. - return WP_Fonts_Library::get_relative_fonts_path() . $filename; + return $handled_file['url']; } /** @@ -179,22 +189,32 @@ private function download_asset( $src, $filename ) { private function move_font_face_asset( $font_face, $file ) { $new_font_face = $font_face; $filename = WP_Font_Family_Utils::get_filename_from_font_face( $this->data['slug'], $font_face, $file['name'] ); - $filepath = path_join( WP_FONTS_DIR, $filename ); // Remove the uploaded font asset reference from the font face definition because it is no longer needed. unset( $new_font_face['file'] ); - // If the filepath has not a font mime type, we don't move the file and return the font face definition without src to be ignored later. - if ( ! WP_Font_Family_Utils::has_font_mime_type( $filepath ) ) { + // If the filename has not a font mime type, we don't move the file and return the font face definition without src to be ignored later. + if ( ! WP_Font_Family_Utils::has_font_mime_type( $filename ) ) { return $new_font_face; } // Move the uploaded font asset from the temp folder to the wp fonts directory. - $file_was_moved = move_uploaded_file( $file['tmp_name'], $filepath ); + if ( ! function_exists( 'wp_handle_upload' ) ) { + require_once ABSPATH . 'wp-admin/includes/file.php'; + } + + $overrides = array ( + 'action' => 'wp_handle_upload', + 'test_form' => false, // We are not testing a form submission. + 'test_type' => false, // Seems like we can not test mime type for files that are not images. See this function docs: https://developer.wordpress.org/reference/functions/wp_check_filetype_and_ext/ + 'unique_filename_callback' => function () use ($filename) { return $filename; }, // We want to keep the original filename. + ); + + $handled_file = wp_handle_upload( $file, $overrides ); - if ( $file_was_moved ) { + if ( isset( $handled_file['url'] ) ) { // If the file was successfully moved, we update the font face definition to reference the new file location. - $new_font_face['src'] = WP_Fonts_Library::get_relative_fonts_path() . $filename; + $new_font_face['src'] = $handled_file['url']; } return $new_font_face; @@ -390,7 +410,9 @@ private function create_or_update_font_post() { * @return array|WP_Error */ public function install( $files = null ) { + add_filter( 'upload_dir', array( 'WP_Fonts_Library', 'set_upload_dir' ) ); $were_assets_written = $this->download_or_move_font_faces( $files ); + remove_filter( 'upload_dir', array( 'WP_Fonts_Library', 'set_upload_dir' ) ); if ( ! $were_assets_written ) { return new WP_Error( 'font_face_download_failed', __( 'The font face assets could not be written.', 'gutenberg' ) ); diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 513e540cf037cd..c262905a0b832b 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -26,35 +26,25 @@ class WP_Fonts_Library { ); /** - * Returns the absolute path to the fonts directory. - * - * @return string Path to the fonts directory. + * Get the upload directory for fonts. + * + * @return string Path of the upload directory for fonts. */ - public static function get_fonts_directory() { - return path_join( WP_CONTENT_DIR, 'fonts' ); + public static function get_fonts_dir() { + return wp_upload_dir()['basedir'] . '/fonts'; } - /** - * Returns the relative path to the fonts directory. - * - * @return string Relative path to the fonts directory. - */ - public static function get_relative_fonts_path() { - return content_url( '/fonts/' ); - } - - /** - * Define WP_FONTS_DIR constant to make it available to the rest of the code. - */ - public static function define_fonts_directory() { - define( 'WP_FONTS_DIR', self::get_fonts_directory() ); - } - - /** - * Create fonts directory if it doesn't exist. + /* + * Sets the upload directory for fonts. + * + * @param array $defaults Default upload directory. + * @return array Modified upload directory. */ - public static function create_fonts_directory() { - wp_mkdir_p( self::get_fonts_directory() ); + public static function set_upload_dir( $defaults ) { + $defaults['subdir'] = '/fonts'; + $defaults['path'] = $defaults['basedir'] . $defaults['subdir']; + $defaults['url'] = $defaults['baseurl'] . $defaults['subdir']; + return $defaults; } } diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index 2f34ac9ffaef81..60bcde4d826b04 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -105,7 +105,8 @@ public function update_fonts_library_permissions_check() { // The update endpoints requires write access to the temp and the fonts directories. $temp_dir = get_temp_dir(); - if ( ! is_writable( $temp_dir ) || ! wp_is_writable( WP_FONTS_DIR ) ) { + $upload_dir = wp_upload_dir()['basedir']; + if ( ! is_writable( $temp_dir ) || ! wp_is_writable( $upload_dir ) ) { return new WP_Error( 'rest_cannot_write_fonts_folder', __( 'Error: WordPress does not have permission to write the fonts folder on your server.', 'gutenberg' ), diff --git a/lib/experimental/fonts-library/fonts-library.php b/lib/experimental/fonts-library/fonts-library.php index 7d93c4fa030168..6e47efddd1db48 100644 --- a/lib/experimental/fonts-library/fonts-library.php +++ b/lib/experimental/fonts-library/fonts-library.php @@ -9,9 +9,6 @@ * @since X.X.X */ -add_action( 'init', array( 'WP_Fonts_Library', 'define_fonts_directory' ) ); -add_action( 'init', array( 'WP_Fonts_Library', 'create_fonts_directory' ) ); - /** * Registers the routes for the objects of the controller. */ diff --git a/phpunit/fonts-library/class-wp-fonts-library-test.php b/phpunit/fonts-library/class-wp-fonts-library-test.php index f5c06d1b4aa458..bce9e3a120ec8d 100644 --- a/phpunit/fonts-library/class-wp-fonts-library-test.php +++ b/phpunit/fonts-library/class-wp-fonts-library-test.php @@ -12,17 +12,41 @@ class WP_Fonts_Library_Test extends WP_UnitTestCase { /** - * @covers ::get_fonts_directory + * @covers ::get_fonts_dir */ - public function test_get_fonts_directory() { - $this->assertStringEndsWith( '/wp-content/fonts', WP_Fonts_Library::get_fonts_directory() ); + public function test_get_fonts_dir() { + $this->assertStringEndsWith( '/wp-content/uploads/fonts', WP_Fonts_Library::get_fonts_dir() ); } /** - * @covers ::get_relative_fonts_path + * @covers ::set_upload_dir + * + * @dataProvider data_set_upload_dir + * + * @param array $defaults Default upload directory data. + * @param array $xpected Modified upload directory data. */ - public function test_get_relative_fonts_path() { - $this->assertStringEndsWith( '/wp-content/fonts/', WP_Fonts_Library::get_relative_fonts_path() ); + public function test_set_upload_dir( $defaults, $xpected ) { + $this->assertEquals( $xpected , WP_Fonts_Library::set_upload_dir( $defaults ) ); } + public function data_set_upload_dir () { + return array ( + 'fonts_subdir' => array ( + 'defaults' => array ( + 'subdir' => '/abc', + 'basedir' => '/var/www/html/wp-content/uploads', + 'baseurl' => 'http://example.com/wp-content/uploads', + ), + 'expected'=> array ( + 'subdir' => '/fonts', + 'basedir' => '/var/www/html/wp-content/uploads', + 'baseurl' => 'http://example.com/wp-content/uploads', + 'path' => '/var/www/html/wp-content/uploads/fonts', + 'url' => 'http://example.com/wp-content/uploads/fonts', + ) + ), + ); + } + } From c1ac4a4b5d89da2b8b8ea827dc4f1fade2806f94 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 1 Aug 2023 16:01:39 -0300 Subject: [PATCH 102/169] strict suffix check Co-authored-by: Anton Vlasenko <43744263+anton-vlasenko@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family-utils.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family-utils.php b/lib/experimental/fonts-library/class-wp-font-family-utils.php index ccd23332e42348..33a074c54be6ea 100644 --- a/lib/experimental/fonts-library/class-wp-font-family-utils.php +++ b/lib/experimental/fonts-library/class-wp-font-family-utils.php @@ -32,7 +32,7 @@ class WP_Font_Family_Utils { public static function get_filename_from_font_face( $font_slug, $font_face, $url, $suffix = '' ) { $extension = pathinfo( $url, PATHINFO_EXTENSION ); $filename = "{$font_slug}_{$font_face['fontStyle']}_{$font_face['fontWeight']}"; - if ( $suffix ) { + if ( '' !== $suffix ) { $filename .= "_{$suffix}"; } return sanitize_file_name( "{$filename}.{$extension}" ); From 53b128cb7c369ebf3ca9fcc5ca2250725274d404 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 1 Aug 2023 16:02:12 -0300 Subject: [PATCH 103/169] update comment Co-authored-by: Anton Vlasenko <43744263+anton-vlasenko@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index a939cc75af3aef..ba6857052db229 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -368,7 +368,7 @@ private function create_font_post() { * Update a post for a font family. * * @param WP_Post $post The post to update. - * @return int| post id if the update was successful, WP_Error otherwise. + * @return int|WP_Error Post ID if the update was successful, WP_Error otherwise. */ private function update_font_post( $post ) { $post_font_data = json_decode( $post->post_content, true ); From 943904f05d09bfb76a3517936e8388951ec4b56e Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 1 Aug 2023 16:02:31 -0300 Subject: [PATCH 104/169] update comment Co-authored-by: Anton Vlasenko <43744263+anton-vlasenko@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index ba6857052db229..60ae9bcf12e1e1 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -347,7 +347,7 @@ private function get_data_from_post() { /** * Create a post for a font family. * - * @return int post id + * @return int|WP_Error Post ID. */ private function create_font_post() { $post = array( From 02fce52be25f7d278ea20bf5875335dee3737f98 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 1 Aug 2023 16:09:58 -0300 Subject: [PATCH 105/169] moving fonts library loading before checking if its available --- lib/load.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/load.php b/lib/load.php index d9fa78660a6d50..358ae17c73b4de 100644 --- a/lib/load.php +++ b/lib/load.php @@ -135,6 +135,13 @@ function gutenberg_is_experiment_enabled( $name ) { require __DIR__ . '/experimental/interactivity-api/directives/wp-style.php'; require __DIR__ . '/experimental/interactivity-api/directives/wp-text.php'; +// Fonts Library. +require __DIR__ . '/experimental/fonts-library/class-wp-fonts-library.php'; +require __DIR__ . '/experimental/fonts-library/class-wp-font-family-utils.php'; +require __DIR__ . '/experimental/fonts-library/class-wp-font-family.php'; +require __DIR__ . '/experimental/fonts-library/class-wp-rest-fonts-library-controller.php'; +require __DIR__ . '/experimental/fonts-library/fonts-library.php'; + // Fonts API / Font Face. remove_action( 'plugins_loaded', '_wp_theme_json_webfonts_handler' ); // Turns off WordPress 6.0's stopgap handler. @@ -183,13 +190,6 @@ function gutenberg_is_experiment_enabled( $name ) { require __DIR__ . '/experimental/fonts-api/bc-layer/class-wp-web-fonts.php'; } -// Fonts Library. -require __DIR__ . '/experimental/fonts-library/class-wp-fonts-library.php'; -require __DIR__ . '/experimental/fonts-library/class-wp-font-family-utils.php'; -require __DIR__ . '/experimental/fonts-library/class-wp-font-family.php'; -require __DIR__ . '/experimental/fonts-library/class-wp-rest-fonts-library-controller.php'; -require __DIR__ . '/experimental/fonts-library/fonts-library.php'; - // Plugin specific code. require __DIR__ . '/script-loader.php'; require __DIR__ . '/global-styles-and-settings.php'; From 1c13db8dfa779d1aa5c7530872689f8f8bc42bfb Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 2 Aug 2023 12:11:19 -0300 Subject: [PATCH 106/169] Fixes local font upload tests --- .../fonts-library/class-wp-font-family.php | 4 +- .../class-wp-font-family-test.php | 62 ++++++------------- 2 files changed, 20 insertions(+), 46 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 60ae9bcf12e1e1..dc095ecea8e742 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -153,7 +153,7 @@ private function download_asset( $src, $filename ) { } $overrides = array ( - 'action' => 'wp_handle_google_font_download', // Arbitrary string to avoid the is_uploaded_file() check applied when using 'wp_handle_upload'. + 'action' => 'wp_handle_font_upload', // Arbitrary string to avoid the is_uploaded_file() check applied when using 'wp_handle_upload'. 'test_form' => false, // We are not testing a form submission. 'test_type' => false, // Seems like we can not test mime type for files that are not images. See this function docs: https://developer.wordpress.org/reference/functions/wp_check_filetype_and_ext/ 'unique_filename_callback' => function () use ($filename) { return $filename; }, // We want to keep the original filename. @@ -204,7 +204,7 @@ private function move_font_face_asset( $font_face, $file ) { } $overrides = array ( - 'action' => 'wp_handle_upload', + 'action' => 'wp_handle_font_upload', // Arbitrary string to avoid the is_uploaded_file() check applied when using 'wp_handle_upload'. 'test_form' => false, // We are not testing a form submission. 'test_type' => false, // Seems like we can not test mime type for files that are not images. See this function docs: https://developer.wordpress.org/reference/functions/wp_check_filetype_and_ext/ 'unique_filename_callback' => function () use ($filename) { return $filename; }, // We want to keep the original filename. diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index da74f020ba020e..7d6ac01b948f30 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -149,7 +149,7 @@ public function data_has_font_faces() { */ public function test_install_and_uninstall( $font_data, $installed_font_data, $files_data = array() ) { $font = new WP_Font_Family( $font_data ); - $font->install( $files_data ); + $inst = $font->install( $files_data ); // Check that the post was created $post = $font->get_font_post(); @@ -163,46 +163,13 @@ public function test_install_and_uninstall( $font_data, $installed_font_data, $f $this->assertSame( $installed_font_data['fontFamily'], $content['fontFamily'], 'The font post content has the wrong font family.' ); $this->assertSame( $installed_font_data['slug'], $content['slug'], 'The font post content has the wrong slug.' ); - if ( $font->has_font_faces() ) { - $font_face_index = 0; - foreach ( $content['fontFace'] as $font_face ) { - $source_index = 0; - if ( is_array( $font_face['src'] ) ) { - foreach ( $font_face['src'] as $src ) { - $this->assertStringEndsWith( $installed_font_data[ $font_face_index ]['src'][ $source_index ], $src, 'The font post content has the wrong src.' ); - $this->assertFileExists( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'][ $source_index ], 'The font asset was not created.' ); - } - } else { - $this->assertStringEndsWith( $installed_font_data['fontFace'][ $font_face_index ]['src'], $font_face['src'], 'The font post content has the wrong src.' ); - $this->assertFileExists( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'], 'The font asset was not created.' ); - } - $font_face_index++; - $source_index++; - } - } + $this->assertCount( count( $installed_font_data['fontFace'] ), $content['fontFace'], 'One or more font faces could not be installed.' ); $font->uninstall(); // Check that the post was deleted $post = $font->get_font_post(); $this->assertNull( $post, 'The font post was not deleted' ); - - // Check that the font asset was deleted - if ( $font->has_font_faces() ) { - $font_face_index = 0; - foreach ( $content['fontFace'] as $font_face ) { - $source_index = 0; - if ( is_array( $font_face['src'] ) ) { - foreach ( $font_face['src'] as $src ) { - $this->assertFileDoesNotExist( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'][ $source_index ], 'The font face asset was not removed' ); - } - } else { - $this->assertFileDoesNotExist( WP_FONTS_DIR . DIRECTORY_SEPARATOR . $installed_font_data['fontFace'][ $font_face_index ]['src'], 'The font face asset was not removed' ); - } - $font_face_index++; - $source_index++; - } - } } /** @@ -211,6 +178,11 @@ public function test_install_and_uninstall( $font_data, $installed_font_data, $f * @return array[] */ public function data_font_fixtures() { + $temp_file_path1 = wp_tempnam( 'Inter-' ); + file_put_contents( $temp_file_path1, 'Mocking file content' ); + $temp_file_path2 = wp_tempnam( 'Inter-' ); + file_put_contents( $temp_file_path2, 'Mocking file content' ); + return array( 'with_one_google_font_face' => array( 'font_data' => array( @@ -239,18 +211,22 @@ public function data_font_fixtures() { ), ), ), + 'files_data' => null, ), 'without_font_faces' => array( 'font_data' => array( 'name' => 'Arial', 'slug' => 'arial', 'fontFamily' => 'Arial', + 'fontFace' => array(), ), 'installed_font_data' => array( 'name' => 'Arial', 'slug' => 'arial', 'fontFamily' => 'Arial', + 'fontFace' => array(), ), + 'files_data' => null, ), 'with_local_files' => array( 'font_data' => array( @@ -281,35 +257,33 @@ public function data_font_fixtures() { 'fontFamily' => 'Inter', 'fontStyle' => 'normal', 'fontWeight' => '400', - 'src' => 'https://example.com/wp-content/fonts/inter_normal_400.ttf', + 'src' => 'inter_normal_400.ttf', ), array( 'fontFamily' => 'Inter', 'fontStyle' => 'normal', 'fontWeight' => '500', - 'src' => 'https://example.com/wp-content/fonts/inter_normal_500.ttf', + 'src' => 'inter_normal_500.ttf', ), ), ), 'files_data' => array( 'files0' => array( 'name' => 'inter1.ttf', - 'full_path' => 'inter1.ttf', 'type' => 'font/ttf', - 'tmp_name' => tempnam( sys_get_temp_dir(), 'Inter-' ), + 'tmp_name' => $temp_file_path1, 'error' => 0, - 'size' => 156764, + 'size' => 123, ), 'files1' => array( 'name' => 'inter2.ttf', - 'full_path' => 'inter2.ttf', 'type' => 'font/ttf', - 'tmp_name' => tempnam( sys_get_temp_dir(), 'Inter-' ), + 'tmp_name' => $temp_file_path2, 'error' => 0, - 'size' => 156524, + 'size' => 123, ), ), - ), + ) ); } } From 8f306e0dd2a4573838d693e8141a491921e6e0ee Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 2 Aug 2023 13:14:47 -0300 Subject: [PATCH 107/169] allowing the installation of fonts with remote urls that won't be donwloaded --- .../fonts-library/class-wp-font-family.php | 24 +++++++---- .../class-wp-font-family-test.php | 41 +++++++++++++++++-- 2 files changed, 53 insertions(+), 12 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index dc095ecea8e742..a087fb9e623490 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -191,7 +191,7 @@ private function move_font_face_asset( $font_face, $file ) { $filename = WP_Font_Family_Utils::get_filename_from_font_face( $this->data['slug'], $font_face, $file['name'] ); // Remove the uploaded font asset reference from the font face definition because it is no longer needed. - unset( $new_font_face['file'] ); + unset( $new_font_face['uploaded_file'] ); // If the filename has not a font mime type, we don't move the file and return the font face definition without src to be ignored later. if ( ! WP_Font_Family_Utils::has_font_mime_type( $filename ) ) { @@ -256,7 +256,7 @@ private function sanitize() { */ private function download_font_face_assets( $font_face ) { $new_font_face = $font_face; - $sources = (array) $font_face['src']; + $sources = (array) $font_face['download_from_url']; $new_font_face['src'] = array(); $index = 0; foreach ( $sources as $src ) { @@ -270,6 +270,8 @@ private function download_font_face_assets( $font_face ) { if ( count( $new_font_face['src'] ) === 1 ) { $new_font_face['src'] = $new_font_face['src'][0]; } + // Remove the download url reference from the font face definition because it is no longer needed. + unset( $new_font_face['download_from_url'] ); return $new_font_face; } @@ -286,13 +288,19 @@ private function download_or_move_font_faces( $files ) { } $new_font_faces = array(); foreach ( $this->data['fontFace'] as $font_face ) { - if ( empty( $files ) ) { - // If we are installing local fonts, we need to move the font face assets from the temp folder to the wp fonts directory. - $new_font_face = $this->download_font_face_assets( $font_face ); - } else { - // If we are installing google fonts, we need to download the font face assets. - $new_font_face = $this->move_font_face_asset( $font_face, $files[ $font_face['file'] ] ); + // If the fonts is not meant to be dowloaded or uploaded (for example to install fonts that use a remote url) + $new_font_face = $font_face; + + // If we are installing google fonts, we need to download the font face assets. + if ( !empty ( $font_face['download_from_url'] ) ) { + $new_font_face = $this->download_font_face_assets( $new_font_face ); + } + + // If we are installing local fonts, we need to move the font face assets from the temp folder to the wp fonts directory. + if ( ! empty ( $font_face['uploaded_file'] ) && ! empty( $files ) ) { + $new_font_face = $this->move_font_face_asset( $new_font_face, $files[ $new_font_face['uploaded_file'] ] ); } + /* * If the font face assets were successfully downloaded, we add the font face to the new font. * Font faces with failed downloads are not added to the new font. diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 7d6ac01b948f30..110763c5f37cef 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -163,6 +163,9 @@ public function test_install_and_uninstall( $font_data, $installed_font_data, $f $this->assertSame( $installed_font_data['fontFamily'], $content['fontFamily'], 'The font post content has the wrong font family.' ); $this->assertSame( $installed_font_data['slug'], $content['slug'], 'The font post content has the wrong slug.' ); + $this->assertArrayNotHasKey( 'download_from_url', $content, 'The installed font should not have the url from where it was downloaded.' ); + $this->assertArrayNotHasKey( 'uploaded_file', $content, 'The installed font should not have the reference to the file from it was installed.' ); + $this->assertCount( count( $installed_font_data['fontFace'] ), $content['fontFace'], 'One or more font faces could not be installed.' ); $font->uninstall(); @@ -184,7 +187,37 @@ public function data_font_fixtures() { file_put_contents( $temp_file_path2, 'Mocking file content' ); return array( - 'with_one_google_font_face' => array( + 'with_one_google_font_face_to_be_downloaded' => array( + 'font_data' => array( + 'name' => 'Piazzolla', + 'slug' => 'piazzolla', + 'fontFamily' => 'Piazzolla', + 'fontFace' => array( + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + 'src' => 'http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf', + 'download_from_url' => 'http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf', + ), + ), + ), + 'installed_font_data' => array( + 'name' => 'Piazzolla', + 'slug' => 'piazzolla', + 'fontFamily' => 'Piazzolla', + 'fontFace' => array( + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + 'src' => 'piazzolla_italic_400.ttf', // This is just filename of the font asset and not the entire URL because we can't know the URL of the asset in the test + ), + ), + ), + 'files_data' => null, + ), + 'with_one_google_font_face_to_not_be_downloaded' => array( 'font_data' => array( 'name' => 'Piazzolla', 'slug' => 'piazzolla', @@ -194,7 +227,7 @@ public function data_font_fixtures() { 'fontFamily' => 'Piazzolla', 'fontStyle' => 'italic', 'fontWeight' => '400', - 'src' => 'http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf', + 'src' => 'http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf', ), ), ), @@ -238,13 +271,13 @@ public function data_font_fixtures() { 'fontFamily' => 'Inter', 'fontStyle' => 'normal', 'fontWeight' => '400', - 'file' => 'files0', + 'uploaded_file' => 'files0', ), array( 'fontFamily' => 'Inter', 'fontStyle' => 'normal', 'fontWeight' => '500', - 'file' => 'files1', + 'uploaded_file' => 'files1', ), ), ), From c89af7c26b1e407ab9575b579ab8d7b8aa751d14 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 2 Aug 2023 13:34:43 -0300 Subject: [PATCH 108/169] delete google fonts data and endpoint --- ...class-wp-rest-fonts-library-controller.php | 52 - .../fonts-library/google-fonts.json | 46719 ---------------- 2 files changed, 46771 deletions(-) delete mode 100644 lib/experimental/fonts-library/google-fonts.json diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index 60bcde4d826b04..654a517b761d45 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -53,18 +53,6 @@ public function register_routes() { ), ) ); - register_rest_route( - $this->namespace, - '/' . $this->rest_base . '/google_fonts', - array( - array( - 'methods' => WP_REST_Server::READABLE, - 'callback' => array( $this, 'get_google_fonts' ), - 'permission_callback' => array( $this, 'read_fonts_library_permissions_check' ), - ), - ) - ); - } /** @@ -119,46 +107,6 @@ public function update_fonts_library_permissions_check() { return true; } - /** - * Checks whether the user has permissions to read the fonts library. - * - * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise. - */ - public function read_fonts_library_permissions_check() { - if ( ! current_user_can( 'edit_posts' ) ) { - return new WP_Error( - 'rest_cannot_read_fonts_library', - __( 'Sorry, you are not allowed to read the fonts library on this site.', 'gutenberg' ), - array( - 'status' => rest_authorization_required_code(), - ) - ); - } - - return true; - } - - /** - * Fetches the Google Fonts JSON file. - * - * Reads the "google-fonts.json" file from the file system and returns its content. - * - * @return WP_REST_Response|WP_Error The content of the "google-fonts.json" file wrapped in a WP_REST_Response object. - */ - public function get_google_fonts() { - $file = file_get_contents( - path_join( dirname( __FILE__ ), 'google-fonts.json' ) - ); - if ( $file ) { - return new WP_REST_Response( json_decode( $file ) ); - } - return new WP_Error( - 'rest_cant_read_google_fonts', - __( 'Error reading Google Fonts JSON file.', 'gutenberg' ), - array( 'status' => 500 ) - ); - } - /** * Installs new fonts. * diff --git a/lib/experimental/fonts-library/google-fonts.json b/lib/experimental/fonts-library/google-fonts.json deleted file mode 100644 index 8563dedf3be565..00000000000000 --- a/lib/experimental/fonts-library/google-fonts.json +++ /dev/null @@ -1,46719 +0,0 @@ -{ - "fontFamilies": [ - { - "name": "ABeeZee", - "fontFamily": "ABeeZee, sans-serif", - "slug": "wp-font-lib-abeezee", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/abeezee/v22/esDR31xSG-6AGleN6tKukbcHCpE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "ABeeZee" - }, - { - "src": "http://fonts.gstatic.com/s/abeezee/v22/esDT31xSG-6AGleN2tCklZUCGpG-GQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "ABeeZee" - } - ] - }, - { - "name": "Abel", - "fontFamily": "Abel, sans-serif", - "slug": "wp-font-lib-abel", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/abel/v18/MwQ5bhbm2POE6VhLPJp6qGI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Abel" - } - ] - }, - { - "name": "Abhaya Libre", - "fontFamily": "Abhaya Libre, serif", - "slug": "wp-font-lib-abhaya-libre", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3tmeuGtX-Co5MNzeAOqinEge0PWovdU4w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Abhaya Libre" - }, - { - "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYj2ryqtxI6oYtBA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Abhaya Libre" - }, - { - "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYo23yqtxI6oYtBA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Abhaya Libre" - }, - { - "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYx2zyqtxI6oYtBA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Abhaya Libre" - }, - { - "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEY22_yqtxI6oYtBA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Abhaya Libre" - } - ] - }, - { - "name": "Aboreto", - "fontFamily": "Aboreto, system-ui", - "slug": "wp-font-lib-aboreto", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/aboreto/v2/5DCXAKLhwDDQ4N8blKTeA2yuxSY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aboreto" - } - ] - }, - { - "name": "Abril Fatface", - "fontFamily": "Abril Fatface, system-ui", - "slug": "wp-font-lib-abril-fatface", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/abrilfatface/v19/zOL64pLDlL1D99S8g8PtiKchm-BsjOLhZBY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Abril Fatface" - } - ] - }, - { - "name": "Abyssinica SIL", - "fontFamily": "Abyssinica SIL, serif", - "slug": "wp-font-lib-abyssinica-sil", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/abyssinicasil/v5/oY1H8ezOqK7iI3rK_45WKoc8J6UZBFOVAXuI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Abyssinica SIL" - } - ] - }, - { - "name": "Aclonica", - "fontFamily": "Aclonica, sans-serif", - "slug": "wp-font-lib-aclonica", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/aclonica/v18/K2FyfZJVlfNNSEBXGb7TCI6oBjLz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aclonica" - } - ] - }, - { - "name": "Acme", - "fontFamily": "Acme, sans-serif", - "slug": "wp-font-lib-acme", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/acme/v21/RrQfboBx-C5_bx3Lb23lzLk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Acme" - } - ] - }, - { - "name": "Actor", - "fontFamily": "Actor, sans-serif", - "slug": "wp-font-lib-actor", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/actor/v17/wEOzEBbCkc5cO3ekXygtUMIO.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Actor" - } - ] - }, - { - "name": "Adamina", - "fontFamily": "Adamina, serif", - "slug": "wp-font-lib-adamina", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/adamina/v21/j8_r6-DH1bjoc-dwu-reETl4Bno.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Adamina" - } - ] - }, - { - "name": "Advent Pro", - "fontFamily": "Advent Pro, sans-serif", - "slug": "wp-font-lib-advent-pro", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLQyJPTJoonw1aBA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLwyNPTJoonw1aBA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLHSNPTJoonw1aBA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLQyNPTJoonw1aBA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLcSNPTJoonw1aBA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLnSRPTJoonw1aBA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLpCRPTJoonw1aBA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLwyRPTJoonw1aBA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpL6iRPTJoonw1aBA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CnDpAsvQhKBH4C.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AnD5AsvQhKBH4C.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2D5D5AsvQhKBH4C.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CnD5AsvQhKBH4C.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CVD5AsvQhKBH4C.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2B5CJAsvQhKBH4C.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2BACJAsvQhKBH4C.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AnCJAsvQhKBH4C.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AOCJAsvQhKBH4C.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Advent Pro" - } - ] - }, - { - "name": "Aguafina Script", - "fontFamily": "Aguafina Script, cursive", - "slug": "wp-font-lib-aguafina-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/aguafinascript/v17/If2QXTv_ZzSxGIO30LemWEOmt1bHqs4pgicOrg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aguafina Script" - } - ] - }, - { - "name": "Akaya Kanadaka", - "fontFamily": "Akaya Kanadaka, system-ui", - "slug": "wp-font-lib-akaya-kanadaka", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/akayakanadaka/v16/N0bM2S5CPO5oOQqvazoRRb-8-PfRS5VBBSSF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Akaya Kanadaka" - } - ] - }, - { - "name": "Akaya Telivigala", - "fontFamily": "Akaya Telivigala, system-ui", - "slug": "wp-font-lib-akaya-telivigala", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/akayatelivigala/v22/lJwc-oo_iG9wXqU3rCTD395tp0uifdLdsIH0YH8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Akaya Telivigala" - } - ] - }, - { - "name": "Akronim", - "fontFamily": "Akronim, system-ui", - "slug": "wp-font-lib-akronim", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/akronim/v23/fdN-9sqWtWZZlHRp-gBxkFYN-a8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Akronim" - } - ] - }, - { - "name": "Akshar", - "fontFamily": "Akshar, sans-serif", - "slug": "wp-font-lib-akshar", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSSgFy9CY94XsnPc.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Akshar" - }, - { - "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSXYFy9CY94XsnPc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Akshar" - }, - { - "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSUQFy9CY94XsnPc.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Akshar" - }, - { - "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSagCy9CY94XsnPc.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Akshar" - }, - { - "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSZECy9CY94XsnPc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Akshar" - } - ] - }, - { - "name": "Aladin", - "fontFamily": "Aladin, cursive", - "slug": "wp-font-lib-aladin", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/aladin/v19/ZgNSjPJFPrvJV5f16Sf4pGT2Ng.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aladin" - } - ] - }, - { - "name": "Alata", - "fontFamily": "Alata, sans-serif", - "slug": "wp-font-lib-alata", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alata/v9/PbytFmztEwbIofe6xKcRQEOX.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alata" - } - ] - }, - { - "name": "Alatsi", - "fontFamily": "Alatsi, sans-serif", - "slug": "wp-font-lib-alatsi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alatsi/v11/TK3iWkUJAxQ2nLNGHjUHte5fKg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alatsi" - } - ] - }, - { - "name": "Albert Sans", - "fontFamily": "Albert Sans, sans-serif", - "slug": "wp-font-lib-albert-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5L_rI32TxAj1g.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5P_rI32TxAj1g.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSH9ZP_rI32TxAj1g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5P_rI32TxAj1g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHmZP_rI32TxAj1g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHdZT_rI32TxAj1g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHTJT_rI32TxAj1g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5T_rI32TxAj1g.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHApT_rI32TxAj1g.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX7ofybRUz1r5t.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX74fybRUz1r5t.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9BJ74fybRUz1r5t.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX74fybRUz1r5t.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Al74fybRUz1r5t.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9C-6IfybRUz1r5t.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Albert Sans" - } - ] - }, - { - "name": "Aldrich", - "fontFamily": "Aldrich, sans-serif", - "slug": "wp-font-lib-aldrich", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/aldrich/v17/MCoTzAn-1s3IGyJMZaAS3pP5H_E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aldrich" - } - ] - }, - { - "name": "Alef", - "fontFamily": "Alef, sans-serif", - "slug": "wp-font-lib-alef", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alef/v21/FeVfS0NQpLYgrjJbC5FxxbU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alef" - }, - { - "src": "http://fonts.gstatic.com/s/alef/v21/FeVQS0NQpLYglo50L5la2bxii28.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alef" - } - ] - }, - { - "name": "Alegreya", - "fontFamily": "Alegreya, serif", - "slug": "wp-font-lib-alegreya", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hUI_KCisSGVrw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alegreya" - }, - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGxBUI_KCisSGVrw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Alegreya" - }, - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGKBII_KCisSGVrw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Alegreya" - }, - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGERII_KCisSGVrw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alegreya" - }, - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGdhII_KCisSGVrw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Alegreya" - }, - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGXxII_KCisSGVrw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Alegreya" - }, - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbgv6qmkySFr9V9.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alegreya" - }, - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbSv6qmkySFr9V9.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Alegreya" - }, - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlY-uKqmkySFr9V9.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Alegreya" - }, - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlYHuKqmkySFr9V9.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Alegreya" - }, - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZguKqmkySFr9V9.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Alegreya" - }, - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZJuKqmkySFr9V9.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Alegreya" - } - ] - }, - { - "name": "Alegreya SC", - "fontFamily": "Alegreya SC, serif", - "slug": "wp-font-lib-alegreya-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiOGmRtCJ62-O0HhNEa-a6o05E5abe_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alegreya SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiMGmRtCJ62-O0HhNEa-Z6q2ZUbbKe_DGs.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alegreya SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZZc-rUxQqu2FXKD.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Alegreya SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4WEySK-UEGKDBz4.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Alegreya SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYU_LUxQqu2FXKD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alegreya SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4Sk0SK-UEGKDBz4.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Alegreya SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYI_7UxQqu2FXKD.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Alegreya SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4TU3SK-UEGKDBz4.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Alegreya SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYs_rUxQqu2FXKD.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Alegreya SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4RE2SK-UEGKDBz4.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Alegreya SC" - } - ] - }, - { - "name": "Alegreya Sans", - "fontFamily": "Alegreya Sans, sans-serif", - "slug": "wp-font-lib-alegreya-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUt9_-1phKLFgshYDvh6Vwt5TltuGdShm5bsg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUv9_-1phKLFgshYDvh6Vwt7V9V3G1WpGtLsgu7.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5fFPmE18imdCqxI.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VFE92jkVHuxKiBA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUz9_-1phKLFgshYDvh6Vwt3V1nvEVXlm4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUt9_-1phKLFgshYDvh6Vwt7V9tuGdShm5bsg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5alOmE18imdCqxI.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VTE52jkVHuxKiBA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5eFImE18imdCqxI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VBEh2jkVHuxKiBA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5f1LmE18imdCqxI.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VGEt2jkVHuxKiBA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5dlKmE18imdCqxI.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VPEp2jkVHuxKiBA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans" - } - ] - }, - { - "name": "Alegreya Sans SC", - "fontFamily": "Alegreya Sans SC, sans-serif", - "slug": "wp-font-lib-alegreya-sans-sc", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Dipl8g5FPYtmMg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGl4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdlgRBH452Mvds.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DuJH0iRrMYJ_K-4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdXiZhNaB6O-51OA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nk5v9ixALYs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Bkxl8g5FPYtmMg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DrpG0iRrMYJ_K-4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdBidhNaB6O-51OA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DvJA0iRrMYJ_K-4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdTiFhNaB6O-51OA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1Du5D0iRrMYJ_K-4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdUiJhNaB6O-51OA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DspC0iRrMYJ_K-4.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxddiNhNaB6O-51OA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans SC" - } - ] - }, - { - "name": "Aleo", - "fontFamily": "Aleo, serif", - "slug": "wp-font-lib-aleo", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/aleo/v11/c4mg1nF8G8_syKbr9DVDno985KM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Aleo" - }, - { - "src": "http://fonts.gstatic.com/s/aleo/v11/c4mi1nF8G8_swAjxeDdJmq159KOnWA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Aleo" - }, - { - "src": "http://fonts.gstatic.com/s/aleo/v11/c4mv1nF8G8_s8ArD0D1ogoY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aleo" - }, - { - "src": "http://fonts.gstatic.com/s/aleo/v11/c4mh1nF8G8_swAjJ1B9tkoZl_Q.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Aleo" - }, - { - "src": "http://fonts.gstatic.com/s/aleo/v11/c4mg1nF8G8_syLbs9DVDno985KM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Aleo" - }, - { - "src": "http://fonts.gstatic.com/s/aleo/v11/c4mi1nF8G8_swAjxaDBJmq159KOnWA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Aleo" - } - ] - }, - { - "name": "Alex Brush", - "fontFamily": "Alex Brush, cursive", - "slug": "wp-font-lib-alex-brush", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alexbrush/v22/SZc83FzrJKuqFbwMKk6EtUL57DtOmCc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alex Brush" - } - ] - }, - { - "name": "Alexandria", - "fontFamily": "Alexandria, sans-serif", - "slug": "wp-font-lib-alexandria", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7T6bHHJ8BRq0b.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Alexandria" - }, - { - "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9p7TqbHHJ8BRq0b.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Alexandria" - }, - { - "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9qlTqbHHJ8BRq0b.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Alexandria" - }, - { - "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alexandria" - }, - { - "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9rJTqbHHJ8BRq0b.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Alexandria" - }, - { - "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Alexandria" - }, - { - "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9ocSabHHJ8BRq0b.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alexandria" - }, - { - "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9p7SabHHJ8BRq0b.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Alexandria" - }, - { - "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9pSSabHHJ8BRq0b.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Alexandria" - } - ] - }, - { - "name": "Alfa Slab One", - "fontFamily": "Alfa Slab One, system-ui", - "slug": "wp-font-lib-alfa-slab-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alfaslabone/v17/6NUQ8FmMKwSEKjnm5-4v-4Jh6dVretWvYmE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alfa Slab One" - } - ] - }, - { - "name": "Alice", - "fontFamily": "Alice, serif", - "slug": "wp-font-lib-alice", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alice/v20/OpNCnoEEmtHa6FcJpA_chzJ0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alice" - } - ] - }, - { - "name": "Alike", - "fontFamily": "Alike, serif", - "slug": "wp-font-lib-alike", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alike/v20/HI_EiYEYI6BIoEjBSZXAQ4-d.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alike" - } - ] - }, - { - "name": "Alike Angular", - "fontFamily": "Alike Angular, serif", - "slug": "wp-font-lib-alike-angular", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alikeangular/v20/3qTrojWunjGQtEBlIcwMbSoI3kM6bB7FKjE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alike Angular" - } - ] - }, - { - "name": "Alkalami", - "fontFamily": "Alkalami, serif", - "slug": "wp-font-lib-alkalami", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alkalami/v7/zOL_4pfDmqRL95WXi5eLw8BMuvhH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alkalami" - } - ] - }, - { - "name": "Alkatra", - "fontFamily": "Alkatra, system-ui", - "slug": "wp-font-lib-alkatra", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48Medzngmu7cPrNDVemxE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alkatra" - }, - { - "src": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48MedzngUu7cPrNDVemxE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Alkatra" - }, - { - "src": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48Medznj4vLcPrNDVemxE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Alkatra" - }, - { - "src": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48MedznjBvLcPrNDVemxE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alkatra" - } - ] - }, - { - "name": "Allan", - "fontFamily": "Allan, system-ui", - "slug": "wp-font-lib-allan", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/allan/v21/ea8XadU7WuTxEtb2P9SF8nZE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Allan" - }, - { - "src": "http://fonts.gstatic.com/s/allan/v21/ea8aadU7WuTxEu5KEPCN2WpNgEKU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Allan" - } - ] - }, - { - "name": "Allerta", - "fontFamily": "Allerta, sans-serif", - "slug": "wp-font-lib-allerta", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/allerta/v18/TwMO-IAHRlkbx940UnEdSQqO5uY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Allerta" - } - ] - }, - { - "name": "Allerta Stencil", - "fontFamily": "Allerta Stencil, sans-serif", - "slug": "wp-font-lib-allerta-stencil", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/allertastencil/v18/HTx0L209KT-LmIE9N7OR6eiycOeF-zz313DuvQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Allerta Stencil" - } - ] - }, - { - "name": "Allison", - "fontFamily": "Allison, cursive", - "slug": "wp-font-lib-allison", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/allison/v9/X7nl4b88AP2nkbvZOCaQ4MTgAgk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Allison" - } - ] - }, - { - "name": "Allura", - "fontFamily": "Allura, cursive", - "slug": "wp-font-lib-allura", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/allura/v19/9oRPNYsQpS4zjuAPjAIXPtrrGA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Allura" - } - ] - }, - { - "name": "Almarai", - "fontFamily": "Almarai, sans-serif", - "slug": "wp-font-lib-almarai", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_anhnicoq72sXg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Almarai" - }, - { - "src": "http://fonts.gstatic.com/s/almarai/v12/tsstApxBaigK_hnnc1qPonC3vqc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Almarai" - }, - { - "src": "http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS-aghnicoq72sXg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Almarai" - }, - { - "src": "http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_qjhnicoq72sXg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Almarai" - } - ] - }, - { - "name": "Almendra", - "fontFamily": "Almendra, serif", - "slug": "wp-font-lib-almendra", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/almendra/v23/H4ckBXKAlMnTn0CskyY6wr-wg763.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Almendra" - }, - { - "src": "http://fonts.gstatic.com/s/almendra/v23/H4ciBXKAlMnTn0CskxY4yLuShq63czE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Almendra" - }, - { - "src": "http://fonts.gstatic.com/s/almendra/v23/H4cjBXKAlMnTn0Cskx6G7Zu4qKK-aihq.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Almendra" - }, - { - "src": "http://fonts.gstatic.com/s/almendra/v23/H4chBXKAlMnTn0CskxY48Ae9oqacbzhqDtg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Almendra" - } - ] - }, - { - "name": "Almendra Display", - "fontFamily": "Almendra Display, system-ui", - "slug": "wp-font-lib-almendra-display", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/almendradisplay/v26/0FlPVOGWl1Sb4O3tETtADHRRlZhzXS_eTyer338.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Almendra Display" - } - ] - }, - { - "name": "Almendra SC", - "fontFamily": "Almendra SC, serif", - "slug": "wp-font-lib-almendra-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/almendrasc/v25/Iure6Yx284eebowr7hbyTZZJprVA4XQ0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Almendra SC" - } - ] - }, - { - "name": "Alumni Sans", - "fontFamily": "Alumni Sans, sans-serif", - "slug": "wp-font-lib-alumni-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO5QqFsJ3C8qng.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uO9QqFsJ3C8qng.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Zu9QqFsJ3C8qng.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO9QqFsJ3C8qng.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Cu9QqFsJ3C8qng.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd95uhQqFsJ3C8qng.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd93-hQqFsJ3C8qng.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uOhQqFsJ3C8qng.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9kehQqFsJ3C8qng.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky46lEN_io6npfB.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw461EN_io6npfB.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky461EN_io6npfB.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KyK61EN_io6npfB.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Alumni Sans" - } - ] - }, - { - "name": "Alumni Sans Collegiate One", - "fontFamily": "Alumni Sans Collegiate One, sans-serif", - "slug": "wp-font-lib-alumni-sans-collegiate-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alumnisanscollegiateone/v2/MQpB-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhjdayDiPw2ta.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alumni Sans Collegiate One" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisanscollegiateone/v2/MQpD-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhgdYwjytxntaDFU.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alumni Sans Collegiate One" - } - ] - }, - { - "name": "Alumni Sans Inline One", - "fontFamily": "Alumni Sans Inline One, system-ui", - "slug": "wp-font-lib-alumni-sans-inline-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alumnisansinlineone/v2/RrQBbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpD3AZcr7xbYw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alumni Sans Inline One" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisansinlineone/v2/RrQDbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpP3ITdpz0fYxcrQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alumni Sans Inline One" - } - ] - }, - { - "name": "Alumni Sans Pinstripe", - "fontFamily": "Alumni Sans Pinstripe, sans-serif", - "slug": "wp-font-lib-alumni-sans-pinstripe", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alumnisanspinstripe/v2/ZgNNjOFFPq_AUJD1umyS30W-Xub8zD1ObhezYrVIpcDA5w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alumni Sans Pinstripe" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisanspinstripe/v2/ZgNDjOFFPq_AUJD1umyS30W-Xub8zD1ObheDYL9Mh8XQ5_cY.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alumni Sans Pinstripe" - } - ] - }, - { - "name": "Amarante", - "fontFamily": "Amarante, system-ui", - "slug": "wp-font-lib-amarante", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/amarante/v23/xMQXuF1KTa6EvGx9bq-3C3rAmD-b.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amarante" - } - ] - }, - { - "name": "Amaranth", - "fontFamily": "Amaranth, sans-serif", - "slug": "wp-font-lib-amaranth", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/amaranth/v18/KtkuALODe433f0j1zPnCF9GqwnzW.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amaranth" - }, - { - "src": "http://fonts.gstatic.com/s/amaranth/v18/KtkoALODe433f0j1zMnAHdWIx2zWD4I.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Amaranth" - }, - { - "src": "http://fonts.gstatic.com/s/amaranth/v18/KtkpALODe433f0j1zMF-OPWi6WDfFpuc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Amaranth" - }, - { - "src": "http://fonts.gstatic.com/s/amaranth/v18/KtkrALODe433f0j1zMnAJWmn42T9E4ucRY8.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Amaranth" - } - ] - }, - { - "name": "Amatic SC", - "fontFamily": "Amatic SC, cursive", - "slug": "wp-font-lib-amatic-sc", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/amaticsc/v24/TUZyzwprpvBS1izr_vO0De6ecZQf1A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amatic SC" - }, - { - "src": "http://fonts.gstatic.com/s/amaticsc/v24/TUZ3zwprpvBS1izr_vOMscG6eb8D3WTy-A.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Amatic SC" - } - ] - }, - { - "name": "Amethysta", - "fontFamily": "Amethysta, serif", - "slug": "wp-font-lib-amethysta", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/amethysta/v16/rP2Fp2K15kgb_F3ibfWIGDWCBl0O8Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amethysta" - } - ] - }, - { - "name": "Amiko", - "fontFamily": "Amiko, sans-serif", - "slug": "wp-font-lib-amiko", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/amiko/v12/WwkQxPq1DFK04tqlc17MMZgJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amiko" - }, - { - "src": "http://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uJ9XXrEGoQAUco5.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Amiko" - }, - { - "src": "http://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uIZXHrEGoQAUco5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Amiko" - } - ] - }, - { - "name": "Amiri", - "fontFamily": "Amiri, serif", - "slug": "wp-font-lib-amiri", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/amiri/v27/J7aRnpd8CGxBHqUpvrIw74NL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amiri" - }, - { - "src": "http://fonts.gstatic.com/s/amiri/v27/J7afnpd8CGxBHpUrtLYS6pNLAjk.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Amiri" - }, - { - "src": "http://fonts.gstatic.com/s/amiri/v27/J7acnpd8CGxBHp2VkZY4xJ9CGyAa.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Amiri" - }, - { - "src": "http://fonts.gstatic.com/s/amiri/v27/J7aanpd8CGxBHpUrjAo9zptgHjAavCA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Amiri" - } - ] - }, - { - "name": "Amiri Quran", - "fontFamily": "Amiri Quran, serif", - "slug": "wp-font-lib-amiri-quran", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/amiriquran/v7/_Xmo-Hk0rD6DbUL4_vH8Zq5t7Cycsu-2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amiri Quran" - } - ] - }, - { - "name": "Amita", - "fontFamily": "Amita, cursive", - "slug": "wp-font-lib-amita", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/amita/v16/HhyaU5si9Om7PQlvAfSKEZZL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amita" - }, - { - "src": "http://fonts.gstatic.com/s/amita/v16/HhyXU5si9Om7PTHTLtCCOopCTKkI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Amita" - } - ] - }, - { - "name": "Anaheim", - "fontFamily": "Anaheim, sans-serif", - "slug": "wp-font-lib-anaheim", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anaheim/v14/8vII7w042Wp87g4G0UTUEE5eK_w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anaheim" - } - ] - }, - { - "name": "Andada Pro", - "fontFamily": "Andada Pro, serif", - "slug": "wp-font-lib-andada-pro", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DPJBY8cFLzvIt2S.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Andada Pro" - }, - { - "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DP7BY8cFLzvIt2S.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Andada Pro" - }, - { - "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMXAo8cFLzvIt2S.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Andada Pro" - }, - { - "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMuAo8cFLzvIt2S.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Andada Pro" - }, - { - "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DNJAo8cFLzvIt2S.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Andada Pro" - }, - { - "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRmdfHrjNJ82Stjw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Andada Pro" - }, - { - "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRlVfHrjNJ82Stjw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Andada Pro" - }, - { - "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRrlYHrjNJ82Stjw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Andada Pro" - }, - { - "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRoBYHrjNJ82Stjw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Andada Pro" - }, - { - "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRudYHrjNJ82Stjw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Andada Pro" - } - ] - }, - { - "name": "Andika", - "fontFamily": "Andika, sans-serif", - "slug": "wp-font-lib-andika", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/andika/v25/mem_Ya6iyW-LwqgAbbwRWrwGVA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Andika" - }, - { - "src": "http://fonts.gstatic.com/s/andika/v25/mem9Ya6iyW-Lwqgwb7YVeLkWVNBt.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Andika" - }, - { - "src": "http://fonts.gstatic.com/s/andika/v25/mem8Ya6iyW-Lwqg40ZM1UpcaXcl0Aw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Andika" - }, - { - "src": "http://fonts.gstatic.com/s/andika/v25/mem6Ya6iyW-Lwqgwb46pV50ef8xkA76a.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Andika" - } - ] - }, - { - "name": "Anek Bangla", - "fontFamily": "Anek Bangla, sans-serif", - "slug": "wp-font-lib-anek-bangla", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9YIocg56yyvt0.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Bangla" - }, - { - "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9ZIocg56yyvt0.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Bangla" - }, - { - "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfjFZIocg56yyvt0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Bangla" - }, - { - "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9ZIocg56yyvt0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Bangla" - }, - { - "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofl1ZIocg56yyvt0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Bangla" - }, - { - "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfrFeIocg56yyvt0.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Bangla" - }, - { - "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfoheIocg56yyvt0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Bangla" - }, - { - "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9eIocg56yyvt0.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Bangla" - } - ] - }, - { - "name": "Anek Devanagari", - "fontFamily": "Anek Devanagari, sans-serif", - "slug": "wp-font-lib-anek-devanagari", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtk-9nFk0LjZ7E.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtku9nFk0LjZ7E.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLCzku9nFk0LjZ7E.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtku9nFk0LjZ7E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDfku9nFk0LjZ7E.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAzle9nFk0LjZ7E.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAKle9nFk0LjZ7E.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtle9nFk0LjZ7E.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari" - } - ] - }, - { - "name": "Anek Gujarati", - "fontFamily": "Anek Gujarati, sans-serif", - "slug": "wp-font-lib-anek-gujarati", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5G7w0KgB7Lm7g.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5C7w0KgB7Lm7g.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0SZC7w0KgB7Lm7g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5C7w0KgB7Lm7g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0JZC7w0KgB7Lm7g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0yZe7w0KgB7Lm7g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-08Je7w0KgB7Lm7g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5e7w0KgB7Lm7g.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati" - } - ] - }, - { - "name": "Anek Gurmukhi", - "fontFamily": "Anek Gurmukhi, sans-serif", - "slug": "wp-font-lib-anek-gurmukhi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5ppXK41H6DjbA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95tpXK41H6DjbA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbKZtpXK41H6DjbA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5tpXK41H6DjbA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbRZtpXK41H6DjbA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbqZxpXK41H6DjbA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbkJxpXK41H6DjbA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95xpXK41H6DjbA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi" - } - ] - }, - { - "name": "Anek Kannada", - "fontFamily": "Anek Kannada, sans-serif", - "slug": "wp-font-lib-anek-kannada", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEAukVReA1oef.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDEQukVReA1oef.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dEdEQukVReA1oef.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEQukVReA1oef.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFxEQukVReA1oef.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGdFgukVReA1oef.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGkFgukVReA1oef.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDFgukVReA1oef.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Kannada" - } - ] - }, - { - "name": "Anek Latin", - "fontFamily": "Anek Latin, sans-serif", - "slug": "wp-font-lib-anek-latin", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7EZKdClWL3kgw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Latin" - }, - { - "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7AZKdClWL3kgw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Latin" - }, - { - "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuGbAZKdClWL3kgw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Latin" - }, - { - "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7AZKdClWL3kgw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Latin" - }, - { - "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PudbAZKdClWL3kgw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Latin" - }, - { - "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PumbcZKdClWL3kgw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Latin" - }, - { - "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuoLcZKdClWL3kgw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Latin" - }, - { - "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7cZKdClWL3kgw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Latin" - } - ] - }, - { - "name": "Anek Malayalam", - "fontFamily": "Anek Malayalam, sans-serif", - "slug": "wp-font-lib-anek-malayalam", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu_HMr5PDO71Qs.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu-HMr5PDO71Qs.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUcW-HMr5PDO71Qs.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu-HMr5PDO71Qs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUam-HMr5PDO71Qs.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUUW5HMr5PDO71Qs.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUXy5HMr5PDO71Qs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu5HMr5PDO71Qs.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam" - } - ] - }, - { - "name": "Anek Odia", - "fontFamily": "Anek Odia, sans-serif", - "slug": "wp-font-lib-anek-odia", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZf63mXZAtm_es.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Odia" - }, - { - "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZfq3mXZAtm_es.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Odia" - }, - { - "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnnHfq3mXZAtm_es.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Odia" - }, - { - "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZfq3mXZAtm_es.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Odia" - }, - { - "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmrfq3mXZAtm_es.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Odia" - }, - { - "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnlHea3mXZAtm_es.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Odia" - }, - { - "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnl-ea3mXZAtm_es.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Odia" - }, - { - "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZea3mXZAtm_es.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Odia" - } - ] - }, - { - "name": "Anek Tamil", - "fontFamily": "Anek Tamil, sans-serif", - "slug": "wp-font-lib-anek-tamil", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQiZ6q4v4oegjOQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwid6q4v4oegjOQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNHCd6q4v4oegjOQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQid6q4v4oegjOQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNcCd6q4v4oegjOQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNnCB6q4v4oegjOQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNpSB6q4v4oegjOQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwiB6q4v4oegjOQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Tamil" - } - ] - }, - { - "name": "Anek Telugu", - "fontFamily": "Anek Telugu, sans-serif", - "slug": "wp-font-lib-anek-telugu", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y-_oE2G2ep10_8.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136--oE2G2ep10_8.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i133G-oE2G2ep10_8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y--oE2G2ep10_8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13x2-oE2G2ep10_8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13_G5oE2G2ep10_8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i138i5oE2G2ep10_8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136-5oE2G2ep10_8.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Telugu" - } - ] - }, - { - "name": "Angkor", - "fontFamily": "Angkor, system-ui", - "slug": "wp-font-lib-angkor", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/angkor/v28/H4cmBXyAlsPdnlb-8iw-4Lqggw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Angkor" - } - ] - }, - { - "name": "Annie Use Your Telescope", - "fontFamily": "Annie Use Your Telescope, cursive", - "slug": "wp-font-lib-annie-use-your-telescope", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/annieuseyourtelescope/v18/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjlDfB3UUVZA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Annie Use Your Telescope" - } - ] - }, - { - "name": "Anonymous Pro", - "fontFamily": "Anonymous Pro, monospace", - "slug": "wp-font-lib-anonymous-pro", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2Bp2a15UIB7Un-bOeISG3pLlw89CH98Ko.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anonymous Pro" - }, - { - "src": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2fp2a15UIB7Un-bOeISG3pHl428AP44Kqr2Q.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Anonymous Pro" - }, - { - "src": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2cp2a15UIB7Un-bOeISG3pFuAT0CnW7KOywKo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anonymous Pro" - }, - { - "src": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2ap2a15UIB7Un-bOeISG3pHl4OTCzc6IG30KqB9Q.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Anonymous Pro" - } - ] - }, - { - "name": "Antic", - "fontFamily": "Antic, sans-serif", - "slug": "wp-font-lib-antic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/antic/v19/TuGfUVB8XY5DRaZLodgzydtk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Antic" - } - ] - }, - { - "name": "Antic Didone", - "fontFamily": "Antic Didone, serif", - "slug": "wp-font-lib-antic-didone", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anticdidone/v16/RWmPoKKX6u8sp8fIWdnDKqDiqYsGBGBzCw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Antic Didone" - } - ] - }, - { - "name": "Antic Slab", - "fontFamily": "Antic Slab, serif", - "slug": "wp-font-lib-antic-slab", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anticslab/v16/bWt97fPFfRzkCa9Jlp6IWcJWXW5p5Qo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Antic Slab" - } - ] - }, - { - "name": "Anton", - "fontFamily": "Anton, sans-serif", - "slug": "wp-font-lib-anton", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anton/v23/1Ptgg87LROyAm0K08i4gS7lu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anton" - } - ] - }, - { - "name": "Antonio", - "fontFamily": "Antonio, sans-serif", - "slug": "wp-font-lib-antonio", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8BtIY2DwSXlM.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Antonio" - }, - { - "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVzx8RtIY2DwSXlM.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Antonio" - }, - { - "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVwv8RtIY2DwSXlM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Antonio" - }, - { - "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8RtIY2DwSXlM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Antonio" - }, - { - "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxD8RtIY2DwSXlM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Antonio" - }, - { - "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyv9htIY2DwSXlM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Antonio" - }, - { - "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyW9htIY2DwSXlM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Antonio" - } - ] - }, - { - "name": "Anuphan", - "fontFamily": "Anuphan, sans-serif", - "slug": "wp-font-lib-anuphan", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkY9A4kGmW927Gu.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anuphan" - }, - { - "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCmY9Q4kGmW927Gu.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anuphan" - }, - { - "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZClG9Q4kGmW927Gu.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anuphan" - }, - { - "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkY9Q4kGmW927Gu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anuphan" - }, - { - "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkq9Q4kGmW927Gu.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anuphan" - }, - { - "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCnG8g4kGmW927Gu.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anuphan" - }, - { - "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCn_8g4kGmW927Gu.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anuphan" - } - ] - }, - { - "name": "Anybody", - "fontFamily": "Anybody, system-ui", - "slug": "wp-font-lib-anybody", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12HPrsXD_nBPpQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2DPrsXD_nBPpQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JiWDPrsXD_nBPpQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12DPrsXD_nBPpQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J5WDPrsXD_nBPpQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JCWfPrsXD_nBPpQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JMGfPrsXD_nBPpQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2fPrsXD_nBPpQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JfmfPrsXD_nBPpQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7M_H3HVfpcHY.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn7c_H3HVfpcHY.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyN57c_H3HVfpcHY.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7c_H3HVfpcHY.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMV7c_H3HVfpcHY.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyP56s_H3HVfpcHY.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyPA6s_H3HVfpcHY.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn6s_H3HVfpcHY.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOO6s_H3HVfpcHY.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Anybody" - } - ] - }, - { - "name": "Aoboshi One", - "fontFamily": "Aoboshi One, serif", - "slug": "wp-font-lib-aoboshi-one", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/aoboshione/v10/Gg8xN5kXaAXtHQrFxwl10ysLBmZX_UEg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aoboshi One" - } - ] - }, - { - "name": "Arapey", - "fontFamily": "Arapey, serif", - "slug": "wp-font-lib-arapey", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/arapey/v16/-W__XJn-UDDA2RC6Z9AcZkIzeg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arapey" - }, - { - "src": "http://fonts.gstatic.com/s/arapey/v16/-W_9XJn-UDDA2RCKZdoYREcjeo0k.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Arapey" - } - ] - }, - { - "name": "Arbutus", - "fontFamily": "Arbutus, system-ui", - "slug": "wp-font-lib-arbutus", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/arbutus/v24/NaPYcZ7dG_5J3poob9JtryO8fMU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arbutus" - } - ] - }, - { - "name": "Arbutus Slab", - "fontFamily": "Arbutus Slab, serif", - "slug": "wp-font-lib-arbutus-slab", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/arbutusslab/v16/oY1Z8e7OuLXkJGbXtr5ba7ZVa68dJlaFAQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arbutus Slab" - } - ] - }, - { - "name": "Architects Daughter", - "fontFamily": "Architects Daughter, cursive", - "slug": "wp-font-lib-architects-daughter", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/architectsdaughter/v18/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfY5q4szgE-Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Architects Daughter" - } - ] - }, - { - "name": "Archivo", - "fontFamily": "Archivo, sans-serif", - "slug": "wp-font-lib-archivo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDJp8B1oJ0vyVQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDNp8B1oJ0vyVQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTajNp8B1oJ0vyVQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDNp8B1oJ0vyVQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTBjNp8B1oJ0vyVQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT6jRp8B1oJ0vyVQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT0zRp8B1oJ0vyVQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDRp8B1oJ0vyVQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTnTRp8B1oJ0vyVQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBshdsBU7iVdxQ.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABsxdsBU7iVdxQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HDfsxdsBU7iVdxQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBsxdsBU7iVdxQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCzsxdsBU7iVdxQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBftBdsBU7iVdxQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBmtBdsBU7iVdxQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABtBdsBU7iVdxQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HAotBdsBU7iVdxQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Archivo" - } - ] - }, - { - "name": "Archivo Black", - "fontFamily": "Archivo Black, sans-serif", - "slug": "wp-font-lib-archivo-black", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/archivoblack/v17/HTxqL289NzCGg4MzN6KJ7eW6OYuP_x7yx3A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Archivo Black" - } - ] - }, - { - "name": "Archivo Narrow", - "fontFamily": "Archivo Narrow, sans-serif", - "slug": "wp-font-lib-archivo-narrow", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvLFGKpHOtFCQ76Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Archivo Narrow" - }, - { - "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvHlGKpHOtFCQ76Q.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Archivo Narrow" - }, - { - "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhv8laKpHOtFCQ76Q.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Archivo Narrow" - }, - { - "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvy1aKpHOtFCQ76Q.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Archivo Narrow" - }, - { - "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJi53mpNiEr6T6Y.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Archivo Narrow" - }, - { - "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJQ53mpNiEr6T6Y.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Archivo Narrow" - }, - { - "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BK84HmpNiEr6T6Y.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Archivo Narrow" - }, - { - "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BKF4HmpNiEr6T6Y.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Archivo Narrow" - } - ] - }, - { - "name": "Are You Serious", - "fontFamily": "Are You Serious, cursive", - "slug": "wp-font-lib-are-you-serious", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/areyouserious/v10/ll8kK2GVSSr-PtjQ5nONVcNn4306hT9nCGRayg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Are You Serious" - } - ] - }, - { - "name": "Aref Ruqaa", - "fontFamily": "Aref Ruqaa, serif", - "slug": "wp-font-lib-aref-ruqaa", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/arefruqaa/v25/WwkbxPW1E165rajQKDulEIAiVNo5xNY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aref Ruqaa" - }, - { - "src": "http://fonts.gstatic.com/s/arefruqaa/v25/WwkYxPW1E165rajQKDulKDwNcNIS2N_7Bdk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Aref Ruqaa" - } - ] - }, - { - "name": "Aref Ruqaa Ink", - "fontFamily": "Aref Ruqaa Ink, serif", - "slug": "wp-font-lib-aref-ruqaa-ink", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/arefruqaaink/v8/1q2fY5WOGUFlt84GTOkP6Kdx72ThVIGpgnxL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aref Ruqaa Ink" - }, - { - "src": "http://fonts.gstatic.com/s/arefruqaaink/v8/1q2cY5WOGUFlt84GTOkP6Kdx71xde6WhqWBCyxWn.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Aref Ruqaa Ink" - } - ] - }, - { - "name": "Arima", - "fontFamily": "Arima, system-ui", - "slug": "wp-font-lib-arima", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTE-pQGOyYw2fw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Arima" - }, - { - "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX14TA-pQGOyYw2fw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Arima" - }, - { - "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1PzA-pQGOyYw2fw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Arima" - }, - { - "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTA-pQGOyYw2fw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arima" - }, - { - "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1UzA-pQGOyYw2fw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Arima" - }, - { - "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1vzc-pQGOyYw2fw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Arima" - }, - { - "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1hjc-pQGOyYw2fw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Arima" - } - ] - }, - { - "name": "Arimo", - "fontFamily": "Arimo, sans-serif", - "slug": "wp-font-lib-arimo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk37cxsBxDAVQI4aA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arimo" - }, - { - "src": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk338xsBxDAVQI4aA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Arimo" - }, - { - "src": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk3M8tsBxDAVQI4aA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Arimo" - }, - { - "src": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk3CstsBxDAVQI4aA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Arimo" - }, - { - "src": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-ERBrEdwcoaKww.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Arimo" - }, - { - "src": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-2RBrEdwcoaKww.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Arimo" - }, - { - "src": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9aQxrEdwcoaKww.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Arimo" - }, - { - "src": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9jQxrEdwcoaKww.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Arimo" - } - ] - }, - { - "name": "Arizonia", - "fontFamily": "Arizonia, cursive", - "slug": "wp-font-lib-arizonia", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/arizonia/v19/neIIzCemt4A5qa7mv6WGHK06UY30.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arizonia" - } - ] - }, - { - "name": "Armata", - "fontFamily": "Armata, sans-serif", - "slug": "wp-font-lib-armata", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/armata/v20/gokvH63_HV5jQ-E9lD53Q2u_mQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Armata" - } - ] - }, - { - "name": "Arsenal", - "fontFamily": "Arsenal, sans-serif", - "slug": "wp-font-lib-arsenal", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/arsenal/v12/wXKrE3kQtZQ4pF3D11_WAewrhXY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arsenal" - }, - { - "src": "http://fonts.gstatic.com/s/arsenal/v12/wXKpE3kQtZQ4pF3D513cBc4ulXYrtA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Arsenal" - }, - { - "src": "http://fonts.gstatic.com/s/arsenal/v12/wXKuE3kQtZQ4pF3D7-P5JeQAmX8yrdk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Arsenal" - }, - { - "src": "http://fonts.gstatic.com/s/arsenal/v12/wXKsE3kQtZQ4pF3D513kueEKnV03vdnKjw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Arsenal" - } - ] - }, - { - "name": "Artifika", - "fontFamily": "Artifika, serif", - "slug": "wp-font-lib-artifika", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/artifika/v21/VEMyRoxzronptCuxu6Wt5jDtreOL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Artifika" - } - ] - }, - { - "name": "Arvo", - "fontFamily": "Arvo, serif", - "slug": "wp-font-lib-arvo", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/arvo/v20/tDbD2oWUg0MKmSAa7Lzr7vs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arvo" - }, - { - "src": "http://fonts.gstatic.com/s/arvo/v20/tDbN2oWUg0MKqSIQ6J7u_vvijQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Arvo" - }, - { - "src": "http://fonts.gstatic.com/s/arvo/v20/tDbM2oWUg0MKoZw1yLTA8vL7lAE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Arvo" - }, - { - "src": "http://fonts.gstatic.com/s/arvo/v20/tDbO2oWUg0MKqSIoVLHK9tD-hAHkGg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Arvo" - } - ] - }, - { - "name": "Arya", - "fontFamily": "Arya, sans-serif", - "slug": "wp-font-lib-arya", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/arya/v19/ga6CawNG-HJd9Ub1-beqdFE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arya" - }, - { - "src": "http://fonts.gstatic.com/s/arya/v19/ga6NawNG-HJdzfra3b-BaFg3dRE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Arya" - } - ] - }, - { - "name": "Asap", - "fontFamily": "Asap, sans-serif", - "slug": "wp-font-lib-asap", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqQsLmOXoA7Glw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYEqUsLmOXoA7Glw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYzKUsLmOXoA7Glw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqUsLmOXoA7Glw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYoKUsLmOXoA7Glw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYTKIsLmOXoA7Glw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYdaIsLmOXoA7Glw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYEqIsLmOXoA7Glw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYO6IsLmOXoA7Glw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWubEbGmTggvWl0Qn.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZEbWmTggvWl0Qn.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuaabWmTggvWl0Qn.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmTggvWl0Qn.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWub2bWmTggvWl0Qn.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuYaammTggvWl0Qn.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammTggvWl0Qn.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZEammTggvWl0Qn.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZtammTggvWl0Qn.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Asap" - } - ] - }, - { - "name": "Asap Condensed", - "fontFamily": "Asap Condensed, sans-serif", - "slug": "wp-font-lib-asap-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9DSWlEgGqgp-pO.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUIFFim6CovpOkXA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8nSmlEgGqgp-pO.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUOVGim6CovpOkXA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxidypY1o9NHyXh3WvSbGSggdNeLYk1Mq3ap.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxifypY1o9NHyXh3WvSbGSggdOeJaElurmapvvM.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9_S2lEgGqgp-pO.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUL1Him6CovpOkXA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9TTGlEgGqgp-pO.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUJFAim6CovpOkXA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO83TWlEgGqgp-pO.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUPVBim6CovpOkXA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8rTmlEgGqgp-pO.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUOlCim6CovpOkXA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8PT2lEgGqgp-pO.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUM1Dim6CovpOkXA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Asap Condensed" - } - ] - }, - { - "name": "Asar", - "fontFamily": "Asar, serif", - "slug": "wp-font-lib-asar", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/asar/v22/sZlLdRyI6TBIXkYQDLlTW6E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Asar" - } - ] - }, - { - "name": "Asset", - "fontFamily": "Asset, system-ui", - "slug": "wp-font-lib-asset", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/asset/v24/SLXGc1na-mM4cWImRJqExst1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Asset" - } - ] - }, - { - "name": "Assistant", - "fontFamily": "Assistant, sans-serif", - "slug": "wp-font-lib-assistant", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZnEGGf3qGuvM4.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Assistant" - }, - { - "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtrhnEGGf3qGuvM4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Assistant" - }, - { - "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Assistant" - }, - { - "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Assistant" - }, - { - "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Assistant" - }, - { - "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Assistant" - }, - { - "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZgEGGf3qGuvM4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Assistant" - } - ] - }, - { - "name": "Astloch", - "fontFamily": "Astloch, system-ui", - "slug": "wp-font-lib-astloch", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/astloch/v26/TuGRUVJ8QI5GSeUjq9wRzMtkH1Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Astloch" - }, - { - "src": "http://fonts.gstatic.com/s/astloch/v26/TuGUUVJ8QI5GSeUjk2A-6MNPA10xLMQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Astloch" - } - ] - }, - { - "name": "Asul", - "fontFamily": "Asul, sans-serif", - "slug": "wp-font-lib-asul", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/asul/v19/VuJ-dNjKxYr46fMFXK78JIg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Asul" - }, - { - "src": "http://fonts.gstatic.com/s/asul/v19/VuJxdNjKxYr40U8qeKbXOIFneRo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Asul" - } - ] - }, - { - "name": "Athiti", - "fontFamily": "Athiti, sans-serif", - "slug": "wp-font-lib-athiti", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAxDNyAv2-C99ycg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Athiti" - }, - { - "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAoDByAv2-C99ycg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Athiti" - }, - { - "src": "http://fonts.gstatic.com/s/athiti/v12/pe0vMISdLIZIv1w4DBhWCtaiAg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Athiti" - }, - { - "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA-DFyAv2-C99ycg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Athiti" - }, - { - "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA1DZyAv2-C99ycg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Athiti" - }, - { - "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAsDdyAv2-C99ycg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Athiti" - } - ] - }, - { - "name": "Atkinson Hyperlegible", - "fontFamily": "Atkinson Hyperlegible, sans-serif", - "slug": "wp-font-lib-atkinson-hyperlegible", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt23C1KxNDXMspQ1lPyU89-1h6ONRlW45GE5ZgpewSSbQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Atkinson Hyperlegible" - }, - { - "src": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt43C1KxNDXMspQ1lPyU89-1h6ONRlW45G055ItWQGCbUWn.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Atkinson Hyperlegible" - }, - { - "src": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt73C1KxNDXMspQ1lPyU89-1h6ONRlW45G8WbcNcy-OZFy-FA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Atkinson Hyperlegible" - }, - { - "src": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt93C1KxNDXMspQ1lPyU89-1h6ONRlW45G056qRdiWKRlmuFH24.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Atkinson Hyperlegible" - } - ] - }, - { - "name": "Atma", - "fontFamily": "Atma, system-ui", - "slug": "wp-font-lib-atma", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo8JzKjc9PvedRkM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Atma" - }, - { - "src": "http://fonts.gstatic.com/s/atma/v16/uK_84rqWc-Eom25bDj8WIv4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Atma" - }, - { - "src": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo5pyKjc9PvedRkM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Atma" - }, - { - "src": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo7Z1Kjc9PvedRkM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Atma" - }, - { - "src": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo9J0Kjc9PvedRkM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Atma" - } - ] - }, - { - "name": "Atomic Age", - "fontFamily": "Atomic Age, system-ui", - "slug": "wp-font-lib-atomic-age", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/atomicage/v27/f0Xz0eug6sdmRFkYZZGL58Ht9a8GYeA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Atomic Age" - } - ] - }, - { - "name": "Aubrey", - "fontFamily": "Aubrey, system-ui", - "slug": "wp-font-lib-aubrey", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/aubrey/v28/q5uGsou7NPBw-p7vugNsCxVEgA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aubrey" - } - ] - }, - { - "name": "Audiowide", - "fontFamily": "Audiowide, system-ui", - "slug": "wp-font-lib-audiowide", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/audiowide/v16/l7gdbjpo0cum0ckerWCtkQXPExpQBw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Audiowide" - } - ] - }, - { - "name": "Autour One", - "fontFamily": "Autour One, system-ui", - "slug": "wp-font-lib-autour-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/autourone/v24/UqyVK80cP25l3fJgbdfbk5lWVscxdKE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Autour One" - } - ] - }, - { - "name": "Average", - "fontFamily": "Average, serif", - "slug": "wp-font-lib-average", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/average/v18/fC1hPYBHe23MxA7rIeJwVWytTyk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Average" - } - ] - }, - { - "name": "Average Sans", - "fontFamily": "Average Sans, sans-serif", - "slug": "wp-font-lib-average-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/averagesans/v16/1Ptpg8fLXP2dlAXR-HlJJNJPBdqazVoK4A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Average Sans" - } - ] - }, - { - "name": "Averia Gruesa Libre", - "fontFamily": "Averia Gruesa Libre, system-ui", - "slug": "wp-font-lib-averia-gruesa-libre", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/averiagruesalibre/v22/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmmJw0SLRA8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Averia Gruesa Libre" - } - ] - }, - { - "name": "Averia Libre", - "fontFamily": "Averia Libre, system-ui", - "slug": "wp-font-lib-averia-libre", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEarovtb07t-pQgTw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Averia Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFhbUTp2JEwT4Sk.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Averia Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0aKIcMGZEnV6xygz7eNjEiAqPJZ2Xx8w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Averia Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0EKIcMGZEnV6xygz7eNjESAKnNRWDh8405.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Averia Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEavoztb07t-pQgTw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Averia Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFxakTp2JEwT4Sk.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Averia Libre" - } - ] - }, - { - "name": "Averia Sans Libre", - "fontFamily": "Averia Sans Libre, system-ui", - "slug": "wp-font-lib-averia-sans-libre", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd3lMKcQJZP1LmD9.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Averia Sans Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKisSL5fXK3D9qtg.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Averia Sans Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVJGIMYDo_8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Averia Sans Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6RaxZG_G5OvCf_rt7FH3B6BHLMEdVLEoc6C5_8N3k.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Averia Sans Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd31N6cQJZP1LmD9.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Averia Sans Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKjsVL5fXK3D9qtg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Averia Sans Libre" - } - ] - }, - { - "name": "Averia Serif Libre", - "fontFamily": "Averia Serif Libre, system-ui", - "slug": "wp-font-lib-averia-serif-libre", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGCSmqwacqdrKvbQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Averia Serif Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzMmw60uVLe_bXHq.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Averia Serif Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-pQGOyYw2fw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Averia Serif Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIUzD2ms4wxr6GvjeD0X88SHPyX2xYOpwuK64kmf6u2.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Averia Serif Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGGS6qwacqdrKvbQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Averia Serif Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzM2xK0uVLe_bXHq.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Averia Serif Libre" - } - ] - }, - { - "name": "Azeret Mono", - "fontFamily": "Azeret Mono, monospace", - "slug": "wp-font-lib-azeret-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPRh0raa-5s3AA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPVh0raa-5s3AA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfwvVh0raa-5s3AA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh0raa-5s3AA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfrvVh0raa-5s3AA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfQvJh0raa-5s3AA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfe_Jh0raa-5s3AA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPJh0raa-5s3AA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfNfJh0raa-5s3AA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkLye2Z4nAN7J.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJkbye2Z4nAN7J.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLbXkbye2Z4nAN7J.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkbye2Z4nAN7J.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLa7kbye2Z4nAN7J.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZXlrye2Z4nAN7J.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZulrye2Z4nAN7J.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJlrye2Z4nAN7J.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYglrye2Z4nAN7J.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Azeret Mono" - } - ] - }, - { - "name": "B612", - "fontFamily": "B612, sans-serif", - "slug": "wp-font-lib-b612", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/b612/v12/3JnySDDxiSz32jm4GDigUXw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "B612" - }, - { - "src": "http://fonts.gstatic.com/s/b612/v12/3Jn8SDDxiSz36juyHBqlQXwdVw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "B612" - }, - { - "src": "http://fonts.gstatic.com/s/b612/v12/3Jn9SDDxiSz34oWXPDCLTXUETuE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "B612" - }, - { - "src": "http://fonts.gstatic.com/s/b612/v12/3Jn_SDDxiSz36juKoDWBSVcBXuFb0Q.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "B612" - } - ] - }, - { - "name": "B612 Mono", - "fontFamily": "B612 Mono, monospace", - "slug": "wp-font-lib-b612-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/b612mono/v12/kmK_Zq85QVWbN1eW6lJl1wTcquRTtg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "B612 Mono" - }, - { - "src": "http://fonts.gstatic.com/s/b612mono/v12/kmK5Zq85QVWbN1eW6lJV1Q7YiOFDtqtf.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "B612 Mono" - }, - { - "src": "http://fonts.gstatic.com/s/b612mono/v12/kmK6Zq85QVWbN1eW6lJdayv4os9Pv7JGSg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "B612 Mono" - }, - { - "src": "http://fonts.gstatic.com/s/b612mono/v12/kmKkZq85QVWbN1eW6lJV1TZkp8VLnbdWSg4x.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "B612 Mono" - } - ] - }, - { - "name": "BIZ UDGothic", - "fontFamily": "BIZ UDGothic, sans-serif", - "slug": "wp-font-lib-biz-udgothic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bizudgothic/v9/daafSTouBF7RUjnbt8p3LuKttQN98z_MbQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BIZ UDGothic" - }, - { - "src": "http://fonts.gstatic.com/s/bizudgothic/v9/daaASTouBF7RUjnbt8p3LuKVCSxZ-xTQZMhbaA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "BIZ UDGothic" - } - ] - }, - { - "name": "BIZ UDMincho", - "fontFamily": "BIZ UDMincho, serif", - "slug": "wp-font-lib-biz-udmincho", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bizudmincho/v9/EJRRQgI6eOxFjBdKs38yhtW1dwT7rcpY8Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BIZ UDMincho" - }, - { - "src": "http://fonts.gstatic.com/s/bizudmincho/v9/EJROQgI6eOxFjBdKs38yhtWNyyvfpeFE-IyCrw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "BIZ UDMincho" - } - ] - }, - { - "name": "BIZ UDPGothic", - "fontFamily": "BIZ UDPGothic, sans-serif", - "slug": "wp-font-lib-biz-udpgothic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bizudpgothic/v9/hES36X5pHAIBjmS84VL0Bue83nUMQWkMUAk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BIZ UDPGothic" - }, - { - "src": "http://fonts.gstatic.com/s/bizudpgothic/v9/hESq6X5pHAIBjmS84VL0Bue85skjZWEnTABCSQo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "BIZ UDPGothic" - } - ] - }, - { - "name": "BIZ UDPMincho", - "fontFamily": "BIZ UDPMincho, serif", - "slug": "wp-font-lib-biz-udpmincho", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bizudpmincho/v9/ypvfbXOBrmYppy7oWWTg1_58nhhYtUb0gZk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BIZ UDPMincho" - }, - { - "src": "http://fonts.gstatic.com/s/bizudpmincho/v9/ypvCbXOBrmYppy7oWWTg1_58pqR3kU7fnZAy57k.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "BIZ UDPMincho" - } - ] - }, - { - "name": "Babylonica", - "fontFamily": "Babylonica, cursive", - "slug": "wp-font-lib-babylonica", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/babylonica/v2/5aUw9_i2qxWVCAE2aHjTqDJ0-VVMoEw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Babylonica" - } - ] - }, - { - "name": "Bad Script", - "fontFamily": "Bad Script, cursive", - "slug": "wp-font-lib-bad-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/badscript/v16/6NUT8F6PJgbFWQn47_x7lOwuzd1AZtw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bad Script" - } - ] - }, - { - "name": "Bahiana", - "fontFamily": "Bahiana, system-ui", - "slug": "wp-font-lib-bahiana", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bahiana/v19/uU9PCBUV4YenPWJU7xPb3vyHmlI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bahiana" - } - ] - }, - { - "name": "Bahianita", - "fontFamily": "Bahianita, system-ui", - "slug": "wp-font-lib-bahianita", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bahianita/v18/yYLr0hTb3vuqqsBUgxWtxTvV2NJPcA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bahianita" - } - ] - }, - { - "name": "Bai Jamjuree", - "fontFamily": "Bai Jamjuree, sans-serif", - "slug": "wp-font-lib-bai-jamjuree", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0kePuk5A1-yiSgA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Bai Jamjuree" - }, - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oGkpox2S2CgOva.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Bai Jamjuree" - }, - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa09eDuk5A1-yiSgA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Bai Jamjuree" - }, - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pikZox2S2CgOva.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Bai Jamjuree" - }, - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDI1apSCOBt_aeQQ7ftydoaMWcjKm7sp8g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bai Jamjuree" - }, - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIrapSCOBt_aeQQ7ftydoa8W8LOub458jGL.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Bai Jamjuree" - }, - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0reHuk5A1-yiSgA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Bai Jamjuree" - }, - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_o6kJox2S2CgOva.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Bai Jamjuree" - }, - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0gebuk5A1-yiSgA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Bai Jamjuree" - }, - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oWl5ox2S2CgOva.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Bai Jamjuree" - }, - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa05efuk5A1-yiSgA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Bai Jamjuree" - }, - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pylpox2S2CgOva.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Bai Jamjuree" - } - ] - }, - { - "name": "Bakbak One", - "fontFamily": "Bakbak One, system-ui", - "slug": "wp-font-lib-bakbak-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bakbakone/v6/zOL54pXAl6RI-p_ardnuycRuv-hHkOs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bakbak One" - } - ] - }, - { - "name": "Ballet", - "fontFamily": "Ballet, cursive", - "slug": "wp-font-lib-ballet", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ballet/v25/QGYyz_MYZA-HM4NjuGOVnUEXme1I4Xi3C4G-EiAou6Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ballet" - } - ] - }, - { - "name": "Baloo 2", - "fontFamily": "Baloo 2, system-ui", - "slug": "wp-font-lib-baloo-2", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdgazapv9Fat7WcN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdgozapv9Fat7WcN.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdjEyqpv9Fat7WcN.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdj9yqpv9Fat7WcN.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdiayqpv9Fat7WcN.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo 2" - } - ] - }, - { - "name": "Baloo Bhai 2", - "fontFamily": "Baloo Bhai 2, system-ui", - "slug": "wp-font-lib-baloo-bhai-2", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNighMXeCo-jsZzo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Bhai 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNhohMXeCo-jsZzo.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Bhai 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNvYmMXeCo-jsZzo.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Bhai 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNs8mMXeCo-jsZzo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Bhai 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNqgmMXeCo-jsZzo.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Bhai 2" - } - ] - }, - { - "name": "Baloo Bhaijaan 2", - "fontFamily": "Baloo Bhaijaan 2, system-ui", - "slug": "wp-font-lib-baloo-bhaijaan-2", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyRSqP4L4ppfcyC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaijaan 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyjSqP4L4ppfcyC.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaijaan 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TxPTaP4L4ppfcyC.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaijaan 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8Tx2TaP4L4ppfcyC.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaijaan 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TwRTaP4L4ppfcyC.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaijaan 2" - } - ] - }, - { - "name": "Baloo Bhaina 2", - "fontFamily": "Baloo Bhaina 2, system-ui", - "slug": "wp-font-lib-baloo-bhaina-2", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEssPvRfRLYWmZSA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaina 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEgMPvRfRLYWmZSA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaina 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEbMTvRfRLYWmZSA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaina 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEVcTvRfRLYWmZSA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaina 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEMsTvRfRLYWmZSA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaina 2" - } - ] - }, - { - "name": "Baloo Chettan 2", - "fontFamily": "Baloo Chettan 2, system-ui", - "slug": "wp-font-lib-baloo-chettan-2", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CeKTO1oeH9xI2gc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Chettan 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CdCTO1oeH9xI2gc.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Chettan 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CTyUO1oeH9xI2gc.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Chettan 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CQWUO1oeH9xI2gc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Chettan 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CWKUO1oeH9xI2gc.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Chettan 2" - } - ] - }, - { - "name": "Baloo Da 2", - "fontFamily": "Baloo Da 2, system-ui", - "slug": "wp-font-lib-baloo-da-2", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjALsTNe55aRa7UE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Da 2" - }, - { - "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjA5sTNe55aRa7UE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Da 2" - }, - { - "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDVtjNe55aRa7UE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Da 2" - }, - { - "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDstjNe55aRa7UE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Da 2" - }, - { - "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjCLtjNe55aRa7UE.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Da 2" - } - ] - }, - { - "name": "Baloo Paaji 2", - "fontFamily": "Baloo Paaji 2, system-ui", - "slug": "wp-font-lib-baloo-paaji-2", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9AX74fybRUz1r5t.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Paaji 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Al74fybRUz1r5t.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Paaji 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Paaji 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Paaji 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Paaji 2" - } - ] - }, - { - "name": "Baloo Tamma 2", - "fontFamily": "Baloo Tamma 2, system-ui", - "slug": "wp-font-lib-baloo-tamma-2", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMscPp-0IF71SGC5.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Tamma 2" - }, - { - "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMsuPp-0IF71SGC5.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Tamma 2" - }, - { - "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMvCOZ-0IF71SGC5.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Tamma 2" - }, - { - "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMv7OZ-0IF71SGC5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Tamma 2" - }, - { - "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMucOZ-0IF71SGC5.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Tamma 2" - } - ] - }, - { - "name": "Baloo Tammudu 2", - "fontFamily": "Baloo Tammudu 2, system-ui", - "slug": "wp-font-lib-baloo-tammudu-2", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jf8e4c6PZSlGmAA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Tammudu 2" - }, - { - "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jc0e4c6PZSlGmAA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Tammudu 2" - }, - { - "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JSEZ4c6PZSlGmAA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Tammudu 2" - }, - { - "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JRgZ4c6PZSlGmAA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Tammudu 2" - }, - { - "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JX8Z4c6PZSlGmAA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Tammudu 2" - } - ] - }, - { - "name": "Baloo Thambi 2", - "fontFamily": "Baloo Thambi 2, system-ui", - "slug": "wp-font-lib-baloo-thambi-2", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKzcIzaQRG_n4osQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Thambi 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbK_8IzaQRG_n4osQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Thambi 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKE8UzaQRG_n4osQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Thambi 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKKsUzaQRG_n4osQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Thambi 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKTcUzaQRG_n4osQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Thambi 2" - } - ] - }, - { - "name": "Balsamiq Sans", - "fontFamily": "Balsamiq Sans, system-ui", - "slug": "wp-font-lib-balsamiq-sans", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/balsamiqsans/v12/P5sEzZiAbNrN8SB3lQQX7Pnc8dkdIYdNHzs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Balsamiq Sans" - }, - { - "src": "http://fonts.gstatic.com/s/balsamiqsans/v12/P5sazZiAbNrN8SB3lQQX7PncwdsXJaVIDzvcXA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Balsamiq Sans" - }, - { - "src": "http://fonts.gstatic.com/s/balsamiqsans/v12/P5sZzZiAbNrN8SB3lQQX7PncyWUyBY9mAzLFRQI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Balsamiq Sans" - }, - { - "src": "http://fonts.gstatic.com/s/balsamiqsans/v12/P5sfzZiAbNrN8SB3lQQX7PncwdsvmYpsBxDAVQI4aA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Balsamiq Sans" - } - ] - }, - { - "name": "Balthazar", - "fontFamily": "Balthazar, serif", - "slug": "wp-font-lib-balthazar", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/balthazar/v17/d6lKkaajS8Gm4CVQjFEvyRTo39l8hw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Balthazar" - } - ] - }, - { - "name": "Bangers", - "fontFamily": "Bangers, system-ui", - "slug": "wp-font-lib-bangers", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bangers/v21/FeVQS0BTqb0h60ACL5la2bxii28.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bangers" - } - ] - }, - { - "name": "Barlow", - "fontFamily": "Barlow, sans-serif", - "slug": "wp-font-lib-barlow", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E3b8s8yn4hnCci.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHtv4kjgoGqM7E_CfNYwHoDmTcibrA.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3w-oc4FAtlT47dw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfP04Voptzsrd6m9.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3p-kc4FAtlT47dw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOQ4loptzsrd6m9.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7EPC8E46HsxnA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E_Ccs8yn4hnCci.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3_-gc4FAtlT47dw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPI41optzsrd6m9.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E30-8c4FAtlT47dw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPk5Foptzsrd6m9.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3t-4c4FAtlT47dw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOA5Voptzsrd6m9.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3q-0c4FAtlT47dw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOc5loptzsrd6m9.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3j-wc4FAtlT47dw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfO451optzsrd6m9.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Barlow" - } - ] - }, - { - "name": "Barlow Condensed", - "fontFamily": "Barlow Condensed, sans-serif", - "slug": "wp-font-lib-barlow-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B43LT31vytKgbaw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxzL3I-JCGChYJ8VI-L6OO_au7B6xTru1H2lq0La6JN.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B497y_3HcuKECcrs.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrF3DWvIMHYrtUxg.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rx_3HcuKECcrs.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrc3PWvIMHYrtUxg.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xbZ23n3pKg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B6xTT31vytKgbaw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lw_3HcuKECcrs.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrK3LWvIMHYrtUxg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873_3HcuKECcrs.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrB3XWvIMHYrtUxg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2_3HcuKECcrs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrY3TWvIMHYrtUxg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47b1_3HcuKECcrs.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrf3fWvIMHYrtUxg.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B45L0_3HcuKECcrs.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrW3bWvIMHYrtUxg.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed" - } - ] - }, - { - "name": "Barlow Semi Condensed", - "fontFamily": "Barlow Semi Condensed, sans-serif", - "slug": "wp-font-lib-barlow-semi-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfG4qvKk8ogoSP.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpjgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbLLIEsKh5SPZWs.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRft6uPAGEki52WfA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJnAWsgqZiGfHK5.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf06iPAGEki52WfA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIDAmsgqZiGfHK5.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRnf4CrCEo4gg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfYqvKk8ogoSP.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfi6mPAGEki52WfA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJbA2sgqZiGfHK5.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfp66PAGEki52WfA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJ3BGsgqZiGfHK5.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfw6-PAGEki52WfA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbITBWsgqZiGfHK5.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf36yPAGEki52WfA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIPBmsgqZiGfHK5.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf-62PAGEki52WfA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIrB2sgqZiGfHK5.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed" - } - ] - }, - { - "name": "Barriecito", - "fontFamily": "Barriecito, system-ui", - "slug": "wp-font-lib-barriecito", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/barriecito/v17/WWXXlj-CbBOSLY2QTuY_KdUiYwTO0MU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Barriecito" - } - ] - }, - { - "name": "Barrio", - "fontFamily": "Barrio, system-ui", - "slug": "wp-font-lib-barrio", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/barrio/v19/wEO8EBXBk8hBIDiEdQYhWdsX1Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Barrio" - } - ] - }, - { - "name": "Basic", - "fontFamily": "Basic, sans-serif", - "slug": "wp-font-lib-basic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/basic/v17/xfu_0WLxV2_XKQN34lDVyR7D.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Basic" - } - ] - }, - { - "name": "Baskervville", - "fontFamily": "Baskervville, serif", - "slug": "wp-font-lib-baskervville", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/baskervville/v14/YA9Ur0yU4l_XOrogbkun3kQgt5OohvbJ9A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baskervville" - }, - { - "src": "http://fonts.gstatic.com/s/baskervville/v14/YA9Kr0yU4l_XOrogbkun3kQQtZmspPPZ9Mlt.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Baskervville" - } - ] - }, - { - "name": "Battambang", - "fontFamily": "Battambang, system-ui", - "slug": "wp-font-lib-battambang", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/battambang/v24/uk-kEGe7raEw-HjkzZabNhGp5w50_o9T7Q.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Battambang" - }, - { - "src": "http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNtmLxyRa8oZK9I0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Battambang" - }, - { - "src": "http://fonts.gstatic.com/s/battambang/v24/uk-mEGe7raEw-HjkzZabDnWj4yxx7o8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Battambang" - }, - { - "src": "http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNsmMxyRa8oZK9I0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Battambang" - }, - { - "src": "http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNvGOxyRa8oZK9I0.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Battambang" - } - ] - }, - { - "name": "Baumans", - "fontFamily": "Baumans, system-ui", - "slug": "wp-font-lib-baumans", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/baumans/v17/-W_-XJj9QyTd3QfpR_oyaksqY5Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baumans" - } - ] - }, - { - "name": "Bayon", - "fontFamily": "Bayon, sans-serif", - "slug": "wp-font-lib-bayon", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bayon/v29/9XUrlJNmn0LPFl-pOhYEd2NJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bayon" - } - ] - }, - { - "name": "Be Vietnam Pro", - "fontFamily": "Be Vietnam Pro, sans-serif", - "slug": "wp-font-lib-be-vietnam-pro", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVNSTAyLFyeg_IDWvOJmVES_HRUBX8YYbAiah8.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVLSTAyLFyeg_IDWvOJmVES_HwyPRsSZZIneh-waA.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HT4JF8yT7wrcwap.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPbczRbgJdhapcUU.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HScJ18yT7wrcwap.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPdMwRbgJdhapcUU.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVPSTAyLFyeg_IDWvOJmVES_EwwD3s6ZKAi.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVNSTAyLFyeg_IDWvOJmVES_HwyBX8YYbAiah8.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl8yT7wrcwap.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPYsxRbgJdhapcUU.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HToIV8yT7wrcwap.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPac2RbgJdhapcUU.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HSMIF8yT7wrcwap.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPcM3RbgJdhapcUU.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HSQI18yT7wrcwap.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPd80RbgJdhapcUU.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HS0Il8yT7wrcwap.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPfs1RbgJdhapcUU.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro" - } - ] - }, - { - "name": "Beau Rivage", - "fontFamily": "Beau Rivage, cursive", - "slug": "wp-font-lib-beau-rivage", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/beaurivage/v2/UcCi3FIgIG2bH4mMNWJUlmg3NZp8K2sL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Beau Rivage" - } - ] - }, - { - "name": "Bebas Neue", - "fontFamily": "Bebas Neue, sans-serif", - "slug": "wp-font-lib-bebas-neue", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bebasneue/v10/JTUSjIg69CK48gW7PXooxW5rygbi49c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bebas Neue" - } - ] - }, - { - "name": "Belgrano", - "fontFamily": "Belgrano, serif", - "slug": "wp-font-lib-belgrano", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/belgrano/v18/55xvey5tM9rwKWrJZcMFirl08KDJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Belgrano" - } - ] - }, - { - "name": "Bellefair", - "fontFamily": "Bellefair, serif", - "slug": "wp-font-lib-bellefair", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bellefair/v14/kJExBuYY6AAuhiXUxG19__A2pOdvDA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bellefair" - } - ] - }, - { - "name": "Belleza", - "fontFamily": "Belleza, sans-serif", - "slug": "wp-font-lib-belleza", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/belleza/v17/0nkoC9_pNeMfhX4BtcbyawzruP8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Belleza" - } - ] - }, - { - "name": "Bellota", - "fontFamily": "Bellota, system-ui", - "slug": "wp-font-lib-bellota", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAID55kGMViblPtXs.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Bellota" - }, - { - "src": "http://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjHGEfjZtKpXulTQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Bellota" - }, - { - "src": "http://fonts.gstatic.com/s/bellota/v16/MwQ2bhXl3_qEpiwAGJJRtGs-lbA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bellota" - }, - { - "src": "http://fonts.gstatic.com/s/bellota/v16/MwQ0bhXl3_qEpiwAKJBbsEk7hbBWrA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Bellota" - }, - { - "src": "http://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAIC5-kGMViblPtXs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Bellota" - }, - { - "src": "http://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjDGYfjZtKpXulTQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Bellota" - } - ] - }, - { - "name": "Bellota Text", - "fontFamily": "Bellota Text, system-ui", - "slug": "wp-font-lib-bellota-text", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlMVP2VnlWS4f3-UE9hHXM5VfsqfQXwQy6yxg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Bellota Text" - }, - { - "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlOVP2VnlWS4f3-UE9hHXMx--Gmfw_0YSuixmYK.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Bellota Text" - }, - { - "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlTVP2VnlWS4f3-UE9hHXMB-dMOdS7sSg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bellota Text" - }, - { - "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlNVP2VnlWS4f3-UE9hHXMx-9kKVyv8Sjer.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Bellota Text" - }, - { - "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlMVP2VnlWS4f3-UE9hHXM5RfwqfQXwQy6yxg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Bellota Text" - }, - { - "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlOVP2VnlWS4f3-UE9hHXMx--G2eA_0YSuixmYK.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Bellota Text" - } - ] - }, - { - "name": "BenchNine", - "fontFamily": "BenchNine, sans-serif", - "slug": "wp-font-lib-benchnine", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT--tRhWa8q0v8ag.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "BenchNine" - }, - { - "src": "http://fonts.gstatic.com/s/benchnine/v16/ahcbv8612zF4jxrwMosrV8N1jU2gog.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BenchNine" - }, - { - "src": "http://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT6-xRhWa8q0v8ag.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "BenchNine" - } - ] - }, - { - "name": "Benne", - "fontFamily": "Benne, serif", - "slug": "wp-font-lib-benne", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/benne/v22/L0xzDFAhn18E6Vjxlt6qTDBN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Benne" - } - ] - }, - { - "name": "Bentham", - "fontFamily": "Bentham, serif", - "slug": "wp-font-lib-bentham", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bentham/v18/VdGeAZQPEpYfmHglKWw7CJaK_y4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bentham" - } - ] - }, - { - "name": "Berkshire Swash", - "fontFamily": "Berkshire Swash, cursive", - "slug": "wp-font-lib-berkshire-swash", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/berkshireswash/v16/ptRRTi-cavZOGqCvnNJDl5m5XmNPrcQybX4pQA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Berkshire Swash" - } - ] - }, - { - "name": "Besley", - "fontFamily": "Besley, serif", - "slug": "wp-font-lib-besley", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fbbBSdRoFPOl8-E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Besley" - }, - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fYTBSdRoFPOl8-E.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Besley" - }, - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fWjGSdRoFPOl8-E.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Besley" - }, - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fVHGSdRoFPOl8-E.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Besley" - }, - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fTbGSdRoFPOl8-E.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Besley" - }, - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fR_GSdRoFPOl8-E.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Besley" - }, - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CoZdiENGg4-E04A.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Besley" - }, - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Ck5diENGg4-E04A.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Besley" - }, - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Cf5BiENGg4-E04A.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Besley" - }, - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CRpBiENGg4-E04A.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Besley" - }, - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CIZBiENGg4-E04A.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Besley" - }, - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CCJBiENGg4-E04A.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Besley" - } - ] - }, - { - "name": "Beth Ellen", - "fontFamily": "Beth Ellen, cursive", - "slug": "wp-font-lib-beth-ellen", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bethellen/v17/WwkbxPW2BE-3rb_JNT-qEIAiVNo5xNY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Beth Ellen" - } - ] - }, - { - "name": "Bevan", - "fontFamily": "Bevan, system-ui", - "slug": "wp-font-lib-bevan", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bevan/v21/4iCj6KZ0a9NXjF8aUir7tlSJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bevan" - }, - { - "src": "http://fonts.gstatic.com/s/bevan/v21/4iCt6KZ0a9NXjG8YWC7Zs0SJD4U.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Bevan" - } - ] - }, - { - "name": "BhuTuka Expanded One", - "fontFamily": "BhuTuka Expanded One, system-ui", - "slug": "wp-font-lib-bhutuka-expanded-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bhutukaexpandedone/v3/SLXXc0jZ4WUJcClHTtv0t7IaDRsBsWRiJCyX8pg_RVH1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BhuTuka Expanded One" - } - ] - }, - { - "name": "Big Shoulders Display", - "fontFamily": "Big Shoulders Display, system-ui", - "slug": "wp-font-lib-big-shoulders-display", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY86JF46SRP4yZQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ87JF46SRP4yZQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YddE7JF46SRP4yZQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY87JF46SRP4yZQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0Ydb07JF46SRP4yZQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdVE8JF46SRP4yZQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdWg8JF46SRP4yZQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ88JF46SRP4yZQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdSY8JF46SRP4yZQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display" - } - ] - }, - { - "name": "Big Shoulders Inline Display", - "fontFamily": "Big Shoulders Inline Display, system-ui", - "slug": "wp-font-lib-big-shoulders-inline-display", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBEnR5yPc2Huux.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBE3R5yPc2Huux.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0mfE3R5yPc2Huux.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBE3R5yPc2Huux.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nzE3R5yPc2Huux.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kfFHR5yPc2Huux.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kmFHR5yPc2Huux.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBFHR5yPc2Huux.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0loFHR5yPc2Huux.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display" - } - ] - }, - { - "name": "Big Shoulders Inline Text", - "fontFamily": "Big Shoulders Inline Text, system-ui", - "slug": "wp-font-lib-big-shoulders-inline-text", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0yqGN7Y6Jsc8c.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0y6GN7Y6Jsc8c.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgbqy6GN7Y6Jsc8c.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0y6GN7Y6Jsc8c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgaGy6GN7Y6Jsc8c.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZqzKGN7Y6Jsc8c.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZTzKGN7Y6Jsc8c.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0zKGN7Y6Jsc8c.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgYdzKGN7Y6Jsc8c.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text" - } - ] - }, - { - "name": "Big Shoulders Stencil Display", - "fontFamily": "Big Shoulders Stencil Display, system-ui", - "slug": "wp-font-lib-big-shoulders-stencil-display", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0nPKHznJucP9w.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0jPKHznJucP9w.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_ZUjPKHznJucP9w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0jPKHznJucP9w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_CUjPKHznJucP9w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_5U_PKHznJucP9w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_3E_PKHznJucP9w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0_PKHznJucP9w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_kk_PKHznJucP9w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display" - } - ] - }, - { - "name": "Big Shoulders Stencil Text", - "fontFamily": "Big Shoulders Stencil Text, system-ui", - "slug": "wp-font-lib-big-shoulders-stencil-text", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04XIGS_Py_AWbQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4TIGS_Py_AWbQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRjYTIGS_Py_AWbQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04TIGS_Py_AWbQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR4YTIGS_Py_AWbQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRDYPIGS_Py_AWbQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRNIPIGS_Py_AWbQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4PIGS_Py_AWbQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGReoPIGS_Py_AWbQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text" - } - ] - }, - { - "name": "Big Shoulders Text", - "fontFamily": "Big Shoulders Text, system-ui", - "slug": "wp-font-lib-big-shoulders-text", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-r3TIPNl6P2pc.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-q3TIPNl6P2pc.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3dGq3TIPNl6P2pc.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-q3TIPNl6P2pc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3b2q3TIPNl6P2pc.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3VGt3TIPNl6P2pc.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Wit3TIPNl6P2pc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-t3TIPNl6P2pc.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Sat3TIPNl6P2pc.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text" - } - ] - }, - { - "name": "Bigelow Rules", - "fontFamily": "Bigelow Rules, system-ui", - "slug": "wp-font-lib-bigelow-rules", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bigelowrules/v24/RrQWboly8iR_I3KWSzeRuN0zT4cCH8WAJVk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bigelow Rules" - } - ] - }, - { - "name": "Bigshot One", - "fontFamily": "Bigshot One, system-ui", - "slug": "wp-font-lib-bigshot-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bigshotone/v25/u-470qukhRkkO6BD_7cM_gxuUQJBXv_-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bigshot One" - } - ] - }, - { - "name": "Bilbo", - "fontFamily": "Bilbo, cursive", - "slug": "wp-font-lib-bilbo", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bilbo/v20/o-0EIpgpwWwZ210hpIRz4wxE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bilbo" - } - ] - }, - { - "name": "Bilbo Swash Caps", - "fontFamily": "Bilbo Swash Caps, cursive", - "slug": "wp-font-lib-bilbo-swash-caps", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bilboswashcaps/v22/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAPopiRfKp8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bilbo Swash Caps" - } - ] - }, - { - "name": "BioRhyme", - "fontFamily": "BioRhyme, serif", - "slug": "wp-font-lib-biorhyme", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ESOjnGAq8Sk1PoH.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "BioRhyme" - }, - { - "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ETqjXGAq8Sk1PoH.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "BioRhyme" - }, - { - "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cXwaULHBpDMsHYW_HxGpVWIgNit.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BioRhyme" - }, - { - "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ET6inGAq8Sk1PoH.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "BioRhyme" - }, - { - "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ETmiXGAq8Sk1PoH.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "BioRhyme" - } - ] - }, - { - "name": "BioRhyme Expanded", - "fontFamily": "BioRhyme Expanded, serif", - "slug": "wp-font-lib-biorhyme-expanded", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9LjbffxxcblSHSdTXrb_z.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "BioRhyme Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9Ljbffxw4bVSHSdTXrb_z.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "BioRhyme Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dQIE1zZzytGswgU577CDY9LjbffySURXCPYsje.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BioRhyme Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9LjbffxwoalSHSdTXrb_z.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "BioRhyme Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9Ljbffxw0aVSHSdTXrb_z.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "BioRhyme Expanded" - } - ] - }, - { - "name": "Birthstone", - "fontFamily": "Birthstone, cursive", - "slug": "wp-font-lib-birthstone", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/birthstone/v11/8AtsGs2xO4yLRhy87sv_HLn5jRfZHzM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Birthstone" - } - ] - }, - { - "name": "Birthstone Bounce", - "fontFamily": "Birthstone Bounce, cursive", - "slug": "wp-font-lib-birthstone-bounce", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/birthstonebounce/v9/ga6XaxZF43lIvTWrktHOTBJZGH7dEeVJGIMYDo_8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Birthstone Bounce" - }, - { - "src": "http://fonts.gstatic.com/s/birthstonebounce/v9/ga6SaxZF43lIvTWrktHOTBJZGH7dEd29MacQJZP1LmD9.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Birthstone Bounce" - } - ] - }, - { - "name": "Biryani", - "fontFamily": "Biryani, sans-serif", - "slug": "wp-font-lib-biryani", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddYQyGTBSU-J-RxQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Biryani" - }, - { - "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddeAxGTBSU-J-RxQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Biryani" - }, - { - "src": "http://fonts.gstatic.com/s/biryani/v13/hv-WlzNxIFoO84YdTUwZPTh5T-s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Biryani" - }, - { - "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddZQ3GTBSU-J-RxQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Biryani" - }, - { - "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddfA2GTBSU-J-RxQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Biryani" - }, - { - "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddew1GTBSU-J-RxQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Biryani" - }, - { - "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddcg0GTBSU-J-RxQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Biryani" - } - ] - }, - { - "name": "Bitter", - "fontFamily": "Bitter, serif", - "slug": "wp-font-lib-bitter", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbeCL_EXFh2reU.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbfCL_EXFh2reU.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8ajfCL_EXFh2reU.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbfCL_EXFh2reU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8cTfCL_EXFh2reU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8SjYCL_EXFh2reU.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8RHYCL_EXFh2reU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbYCL_EXFh2reU.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8V_YCL_EXFh2reU.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4P3OWHpzveWxBw.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPzOWHpzveWxBw.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cvvzOWHpzveWxBw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4PzOWHpzveWxBw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c0vzOWHpzveWxBw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cPvvOWHpzveWxBw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cB_vOWHpzveWxBw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPvOWHpzveWxBw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cSfvOWHpzveWxBw.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Bitter" - } - ] - }, - { - "name": "Black And White Picture", - "fontFamily": "Black And White Picture, sans-serif", - "slug": "wp-font-lib-black-and-white-picture", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/blackandwhitepicture/v22/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5HbcMi-yWY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Black And White Picture" - } - ] - }, - { - "name": "Black Han Sans", - "fontFamily": "Black Han Sans, sans-serif", - "slug": "wp-font-lib-black-han-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/blackhansans/v15/ea8Aad44WunzF9a-dL6toA8r8nqVIXSkH-Hc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Black Han Sans" - } - ] - }, - { - "name": "Black Ops One", - "fontFamily": "Black Ops One, system-ui", - "slug": "wp-font-lib-black-ops-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/blackopsone/v20/qWcsB6-ypo7xBdr6Xshe96H3WDzRtjkho4M.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Black Ops One" - } - ] - }, - { - "name": "Blaka", - "fontFamily": "Blaka, system-ui", - "slug": "wp-font-lib-blaka", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/blaka/v5/8vIG7w8722p_6kdr20D2FV5e.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Blaka" - } - ] - }, - { - "name": "Blaka Hollow", - "fontFamily": "Blaka Hollow, system-ui", - "slug": "wp-font-lib-blaka-hollow", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/blakahollow/v5/MCoUzAL91sjRE2FsKsxUtezYB9oFyW_-oA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Blaka Hollow" - } - ] - }, - { - "name": "Blaka Ink", - "fontFamily": "Blaka Ink, system-ui", - "slug": "wp-font-lib-blaka-ink", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/blakaink/v7/AlZy_zVVtpj22Znag2chdXf4XB0Tow.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Blaka Ink" - } - ] - }, - { - "name": "Blinker", - "fontFamily": "Blinker, sans-serif", - "slug": "wp-font-lib-blinker", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/blinker/v13/cIf_MaFatEE-VTaP_E2hZEsCkIt9QQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Blinker" - }, - { - "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_OGARGEsnIJkWL4.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Blinker" - }, - { - "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_IWDRGEsnIJkWL4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Blinker" - }, - { - "src": "http://fonts.gstatic.com/s/blinker/v13/cIf9MaFatEE-VTaPxCmrYGkHgIs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Blinker" - }, - { - "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_PGFRGEsnIJkWL4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Blinker" - }, - { - "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_JWERGEsnIJkWL4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Blinker" - }, - { - "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_ImHRGEsnIJkWL4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Blinker" - }, - { - "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_K2GRGEsnIJkWL4.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Blinker" - } - ] - }, - { - "name": "Bodoni Moda", - "fontFamily": "Bodoni Moda, serif", - "slug": "wp-font-lib-bodoni-moda", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oU7awIBytVjMYwE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bodoni Moda" - }, - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oXzawIBytVjMYwE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Bodoni Moda" - }, - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oZDdwIBytVjMYwE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Bodoni Moda" - }, - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oandwIBytVjMYwE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Bodoni Moda" - }, - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oc7dwIBytVjMYwE.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Bodoni Moda" - }, - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oefdwIBytVjMYwE.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Bodoni Moda" - }, - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZKMN4sXrJcwHqoQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Bodoni Moda" - }, - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZGsN4sXrJcwHqoQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Bodoni Moda" - }, - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZ9sR4sXrJcwHqoQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Bodoni Moda" - }, - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZz8R4sXrJcwHqoQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Bodoni Moda" - }, - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZqMR4sXrJcwHqoQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Bodoni Moda" - }, - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZgcR4sXrJcwHqoQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Bodoni Moda" - } - ] - }, - { - "name": "Bokor", - "fontFamily": "Bokor, system-ui", - "slug": "wp-font-lib-bokor", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bokor/v30/m8JcjfpeeaqTiR2WdInbcaxE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bokor" - } - ] - }, - { - "name": "Bona Nova", - "fontFamily": "Bona Nova, serif", - "slug": "wp-font-lib-bona-nova", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bonanova/v10/B50NF7ZCpX7fcHfvIUBJi6hqHK-CLA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bona Nova" - }, - { - "src": "http://fonts.gstatic.com/s/bonanova/v10/B50LF7ZCpX7fcHfvIUB5iaJuPqqSLJYf.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Bona Nova" - }, - { - "src": "http://fonts.gstatic.com/s/bonanova/v10/B50IF7ZCpX7fcHfvIUBxN4dOFISeJY8GgQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Bona Nova" - } - ] - }, - { - "name": "Bonbon", - "fontFamily": "Bonbon, cursive", - "slug": "wp-font-lib-bonbon", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bonbon/v26/0FlVVPeVlFec4ee_cDEAbQY5-A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bonbon" - } - ] - }, - { - "name": "Bonheur Royale", - "fontFamily": "Bonheur Royale, cursive", - "slug": "wp-font-lib-bonheur-royale", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bonheurroyale/v10/c4m51nt_GMTrtX-b9GcG4-YRmYK_c0f1N5Ij.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bonheur Royale" - } - ] - }, - { - "name": "Boogaloo", - "fontFamily": "Boogaloo, system-ui", - "slug": "wp-font-lib-boogaloo", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/boogaloo/v19/kmK-Zq45GAvOdnaW6x1F_SrQo_1K.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Boogaloo" - } - ] - }, - { - "name": "Bowlby One", - "fontFamily": "Bowlby One, system-ui", - "slug": "wp-font-lib-bowlby-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bowlbyone/v19/taiPGmVuC4y96PFeqp8smo6C_Z0wcK4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bowlby One" - } - ] - }, - { - "name": "Bowlby One SC", - "fontFamily": "Bowlby One SC, system-ui", - "slug": "wp-font-lib-bowlby-one-sc", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bowlbyonesc/v20/DtVlJxerQqQm37tzN3wMug9Pzgj8owhNjuE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bowlby One SC" - } - ] - }, - { - "name": "Braah One", - "fontFamily": "Braah One, sans-serif", - "slug": "wp-font-lib-braah-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/braahone/v2/KFOlCnWUpt6LsxxxiylvAx05IsDqlA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Braah One" - } - ] - }, - { - "name": "Brawler", - "fontFamily": "Brawler, serif", - "slug": "wp-font-lib-brawler", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/brawler/v19/xn7gYHE3xXewAscGsgC7S9XdZN8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Brawler" - }, - { - "src": "http://fonts.gstatic.com/s/brawler/v19/xn7lYHE3xXewAscGiryUb932eNaPfk8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Brawler" - } - ] - }, - { - "name": "Bree Serif", - "fontFamily": "Bree Serif, serif", - "slug": "wp-font-lib-bree-serif", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/breeserif/v17/4UaHrEJCrhhnVA3DgluAx63j5pN1MwI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bree Serif" - } - ] - }, - { - "name": "Bruno Ace", - "fontFamily": "Bruno Ace, system-ui", - "slug": "wp-font-lib-bruno-ace", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/brunoace/v1/WwkcxPa2E06x4trkOj_kMKoMWNMg3Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bruno Ace" - } - ] - }, - { - "name": "Bruno Ace SC", - "fontFamily": "Bruno Ace SC, system-ui", - "slug": "wp-font-lib-bruno-ace-sc", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/brunoacesc/v1/ptROTiycffFLBuiHjdJDl634LSFrpe8uZA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bruno Ace SC" - } - ] - }, - { - "name": "Brygada 1918", - "fontFamily": "Brygada 1918, serif", - "slug": "wp-font-lib-brygada-1918", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y2-f-V8Wu5O3gbo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Brygada 1918" - }, - { - "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y12f-V8Wu5O3gbo.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Brygada 1918" - }, - { - "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y7GY-V8Wu5O3gbo.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Brygada 1918" - }, - { - "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y4iY-V8Wu5O3gbo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Brygada 1918" - }, - { - "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcERwcv7GykboaLg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Brygada 1918" - }, - { - "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcIxwcv7GykboaLg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Brygada 1918" - }, - { - "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfczxscv7GykboaLg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Brygada 1918" - }, - { - "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfc9hscv7GykboaLg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Brygada 1918" - } - ] - }, - { - "name": "Bubblegum Sans", - "fontFamily": "Bubblegum Sans, system-ui", - "slug": "wp-font-lib-bubblegum-sans", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bubblegumsans/v16/AYCSpXb_Z9EORv1M5QTjEzMEtdaHzoPPb7R4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bubblegum Sans" - } - ] - }, - { - "name": "Bubbler One", - "fontFamily": "Bubbler One, sans-serif", - "slug": "wp-font-lib-bubbler-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bubblerone/v20/f0Xy0eqj68ppQV9KBLmAouHH26MPePkt.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bubbler One" - } - ] - }, - { - "name": "Buda", - "fontFamily": "Buda, system-ui", - "slug": "wp-font-lib-buda", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/buda/v25/GFDqWAN8mnyIJSSrG7UBr7pZKA0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Buda" - } - ] - }, - { - "name": "Buenard", - "fontFamily": "Buenard, serif", - "slug": "wp-font-lib-buenard", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/buenard/v17/OD5DuM6Cyma8FnnsPzf9qGi9HL4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Buenard" - }, - { - "src": "http://fonts.gstatic.com/s/buenard/v17/OD5GuM6Cyma8FnnsB4vSjGCWALepwss.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Buenard" - } - ] - }, - { - "name": "Bungee", - "fontFamily": "Bungee, system-ui", - "slug": "wp-font-lib-bungee", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bungee/v11/N0bU2SZBIuF2PU_ECn50Kd_PmA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bungee" - } - ] - }, - { - "name": "Bungee Hairline", - "fontFamily": "Bungee Hairline, system-ui", - "slug": "wp-font-lib-bungee-hairline", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bungeehairline/v19/snfys0G548t04270a_ljTLUVrv-7YB2dQ5ZPqQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bungee Hairline" - } - ] - }, - { - "name": "Bungee Inline", - "fontFamily": "Bungee Inline, system-ui", - "slug": "wp-font-lib-bungee-inline", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bungeeinline/v12/Gg8zN58UcgnlCweMrih332VuDGJ1-FEglsc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bungee Inline" - } - ] - }, - { - "name": "Bungee Outline", - "fontFamily": "Bungee Outline, system-ui", - "slug": "wp-font-lib-bungee-outline", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bungeeoutline/v18/_6_mEDvmVP24UvU2MyiGDslL3Qg3YhJqPXxo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bungee Outline" - } - ] - }, - { - "name": "Bungee Shade", - "fontFamily": "Bungee Shade, system-ui", - "slug": "wp-font-lib-bungee-shade", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bungeeshade/v11/DtVkJxarWL0t2KdzK3oI_jks7iLSrwFUlw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bungee Shade" - } - ] - }, - { - "name": "Bungee Spice", - "fontFamily": "Bungee Spice, system-ui", - "slug": "wp-font-lib-bungee-spice", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bungeespice/v9/nwpTtK2nIhxE0q-IwgSpZBqCzyI-aMPF7Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bungee Spice" - } - ] - }, - { - "name": "Butcherman", - "fontFamily": "Butcherman, system-ui", - "slug": "wp-font-lib-butcherman", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/butcherman/v24/2EbiL-thF0loflXUBOdb1zWzq_5uT84.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Butcherman" - } - ] - }, - { - "name": "Butterfly Kids", - "fontFamily": "Butterfly Kids, cursive", - "slug": "wp-font-lib-butterfly-kids", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/butterflykids/v21/ll8lK2CWTjuqAsXDqlnIbMNs5S4arxFrAX1D.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Butterfly Kids" - } - ] - }, - { - "name": "Cabin", - "fontFamily": "Cabin, sans-serif", - "slug": "wp-font-lib-cabin", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EL7Gvxm7rE_s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cabin" - }, - { - "src": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkW-EL7Gvxm7rE_s.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cabin" - }, - { - "src": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkYODL7Gvxm7rE_s.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cabin" - }, - { - "src": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkbqDL7Gvxm7rE_s.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cabin" - }, - { - "src": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHx_KlwkzuA_u1Bg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cabin" - }, - { - "src": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXH9fKlwkzuA_u1Bg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Cabin" - }, - { - "src": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHGfWlwkzuA_u1Bg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Cabin" - }, - { - "src": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHIPWlwkzuA_u1Bg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cabin" - } - ] - }, - { - "name": "Cabin Condensed", - "fontFamily": "Cabin Condensed, sans-serif", - "slug": "wp-font-lib-cabin-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpMtK6mNhBK2err_hqkYhHRqmwaYOjZ5HZl8Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cabin Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwilMH97F15-K1oqQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cabin Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwiuMb97F15-K1oqQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cabin Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwi3Mf97F15-K1oqQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cabin Condensed" - } - ] - }, - { - "name": "Cabin Sketch", - "fontFamily": "Cabin Sketch, system-ui", - "slug": "wp-font-lib-cabin-sketch", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cabinsketch/v19/QGYpz_kZZAGCONcK2A4bGOjMn9JM6fnuKg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cabin Sketch" - }, - { - "src": "http://fonts.gstatic.com/s/cabinsketch/v19/QGY2z_kZZAGCONcK2A4bGOj0I_1o4dLyI4CMFw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cabin Sketch" - } - ] - }, - { - "name": "Caesar Dressing", - "fontFamily": "Caesar Dressing, system-ui", - "slug": "wp-font-lib-caesar-dressing", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/caesardressing/v21/yYLx0hLa3vawqtwdswbotmK4vrR3cbb6LZttyg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Caesar Dressing" - } - ] - }, - { - "name": "Cagliostro", - "fontFamily": "Cagliostro, sans-serif", - "slug": "wp-font-lib-cagliostro", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cagliostro/v21/ZgNWjP5HM73BV5amnX-TjGXEM4COoE4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cagliostro" - } - ] - }, - { - "name": "Cairo", - "fontFamily": "Cairo, sans-serif", - "slug": "wp-font-lib-cairo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hGA-W1ToLQ-HmkA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Cairo" - }, - { - "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hL4-W1ToLQ-HmkA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cairo" - }, - { - "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-W1ToLQ-HmkA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cairo" - }, - { - "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hNI-W1ToLQ-HmkA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cairo" - }, - { - "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hD45W1ToLQ-HmkA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cairo" - }, - { - "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hAc5W1ToLQ-HmkA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cairo" - }, - { - "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hGA5W1ToLQ-HmkA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Cairo" - }, - { - "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hEk5W1ToLQ-HmkA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Cairo" - } - ] - }, - { - "name": "Cairo Play", - "fontFamily": "Cairo Play, sans-serif", - "slug": "wp-font-lib-cairo-play", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnYq9yXa8GvzaA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Cairo Play" - }, - { - "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1zHYq9yXa8GvzaA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cairo Play" - }, - { - "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1knYq9yXa8GvzaA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cairo Play" - }, - { - "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1oHYq9yXa8GvzaA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cairo Play" - }, - { - "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1THEq9yXa8GvzaA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cairo Play" - }, - { - "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1dXEq9yXa8GvzaA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cairo Play" - }, - { - "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnEq9yXa8GvzaA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Cairo Play" - }, - { - "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1O3Eq9yXa8GvzaA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Cairo Play" - } - ] - }, - { - "name": "Caladea", - "fontFamily": "Caladea, serif", - "slug": "wp-font-lib-caladea", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/caladea/v7/kJEzBugZ7AAjhybUjR93-9IztOc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Caladea" - }, - { - "src": "http://fonts.gstatic.com/s/caladea/v7/kJExBugZ7AAjhybUvR19__A2pOdvDA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Caladea" - }, - { - "src": "http://fonts.gstatic.com/s/caladea/v7/kJE2BugZ7AAjhybUtaNY39oYqO52FZ0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Caladea" - }, - { - "src": "http://fonts.gstatic.com/s/caladea/v7/kJE0BugZ7AAjhybUvR1FQ98SrMxzBZ2lDA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Caladea" - } - ] - }, - { - "name": "Calistoga", - "fontFamily": "Calistoga, system-ui", - "slug": "wp-font-lib-calistoga", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/calistoga/v13/6NUU8F2OJg6MeR7l4e0vtMYAwdRZfw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Calistoga" - } - ] - }, - { - "name": "Calligraffitti", - "fontFamily": "Calligraffitti, cursive", - "slug": "wp-font-lib-calligraffitti", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/calligraffitti/v19/46k2lbT3XjDVqJw3DCmCFjE0vnFZM5ZBpYN-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Calligraffitti" - } - ] - }, - { - "name": "Cambay", - "fontFamily": "Cambay, sans-serif", - "slug": "wp-font-lib-cambay", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cambay/v12/SLXJc1rY6H0_ZDsGbrSIz9JsaA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cambay" - }, - { - "src": "http://fonts.gstatic.com/s/cambay/v12/SLXLc1rY6H0_ZDs2bL6M7dd8aGZk.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cambay" - }, - { - "src": "http://fonts.gstatic.com/s/cambay/v12/SLXKc1rY6H0_ZDs-0pusx_lwYX99kA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cambay" - }, - { - "src": "http://fonts.gstatic.com/s/cambay/v12/SLXMc1rY6H0_ZDs2bIYwwvN0Q3ptkDMN.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cambay" - } - ] - }, - { - "name": "Cambo", - "fontFamily": "Cambo, serif", - "slug": "wp-font-lib-cambo", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cambo/v17/IFSqHeNEk8FJk416ok7xkPm8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cambo" - } - ] - }, - { - "name": "Candal", - "fontFamily": "Candal, sans-serif", - "slug": "wp-font-lib-candal", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/candal/v15/XoHn2YH6T7-t_8cNAR4Jt9Yxlw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Candal" - } - ] - }, - { - "name": "Cantarell", - "fontFamily": "Cantarell, sans-serif", - "slug": "wp-font-lib-cantarell", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cantarell/v17/B50NF7ZDq37KMUvlO01Ji6hqHK-CLA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cantarell" - }, - { - "src": "http://fonts.gstatic.com/s/cantarell/v17/B50LF7ZDq37KMUvlO015iaJuPqqSLJYf.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cantarell" - }, - { - "src": "http://fonts.gstatic.com/s/cantarell/v17/B50IF7ZDq37KMUvlO01xN4dOFISeJY8GgQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cantarell" - }, - { - "src": "http://fonts.gstatic.com/s/cantarell/v17/B50WF7ZDq37KMUvlO015iZrSEY6aB4oWgWHB.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cantarell" - } - ] - }, - { - "name": "Cantata One", - "fontFamily": "Cantata One, serif", - "slug": "wp-font-lib-cantata-one", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cantataone/v15/PlI5Fl60Nb5obNzNe2jslVxEt8CwfGaD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cantata One" - } - ] - }, - { - "name": "Cantora One", - "fontFamily": "Cantora One, sans-serif", - "slug": "wp-font-lib-cantora-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cantoraone/v19/gyB4hws1JdgnKy56GB_JX6zdZ4vZVbgZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cantora One" - } - ] - }, - { - "name": "Capriola", - "fontFamily": "Capriola, sans-serif", - "slug": "wp-font-lib-capriola", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/capriola/v14/wXKoE3YSppcvo1PDln_8L-AinG8y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Capriola" - } - ] - }, - { - "name": "Caramel", - "fontFamily": "Caramel, cursive", - "slug": "wp-font-lib-caramel", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/caramel/v7/P5sCzZKBbMTf_ShyxCRuiZ-uydg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Caramel" - } - ] - }, - { - "name": "Carattere", - "fontFamily": "Carattere, cursive", - "slug": "wp-font-lib-carattere", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/carattere/v7/4iCv6Kp1b9dXlgt_CkvTt2aMH4V_gg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Carattere" - } - ] - }, - { - "name": "Cardo", - "fontFamily": "Cardo, serif", - "slug": "wp-font-lib-cardo", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cardo/v19/wlp_gwjKBV1pqiv_1oAZ2H5O.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cardo" - }, - { - "src": "http://fonts.gstatic.com/s/cardo/v19/wlpxgwjKBV1pqhv93IQ73W5OcCk.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cardo" - }, - { - "src": "http://fonts.gstatic.com/s/cardo/v19/wlpygwjKBV1pqhND-aQR82JHaTBX.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cardo" - } - ] - }, - { - "name": "Carlito", - "fontFamily": "Carlito, sans-serif", - "slug": "wp-font-lib-carlito", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/carlito/v3/3Jn9SDPw3m-pk039PDCLTXUETuE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Carlito" - }, - { - "src": "http://fonts.gstatic.com/s/carlito/v3/3Jn_SDPw3m-pk039DDKBSVcBXuFb0Q.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Carlito" - }, - { - "src": "http://fonts.gstatic.com/s/carlito/v3/3Jn4SDPw3m-pk039BIykaX0vUuhCyOo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Carlito" - }, - { - "src": "http://fonts.gstatic.com/s/carlito/v3/3Jn6SDPw3m-pk039DDK59XglVspH2OprMQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Carlito" - } - ] - }, - { - "name": "Carme", - "fontFamily": "Carme, sans-serif", - "slug": "wp-font-lib-carme", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/carme/v16/ptRHTiWdbvZIDOjGxLNrxfbZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Carme" - } - ] - }, - { - "name": "Carrois Gothic", - "fontFamily": "Carrois Gothic, sans-serif", - "slug": "wp-font-lib-carrois-gothic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/carroisgothic/v16/Z9XPDmFATg-N1PLtLOOxvIHl9ZmD3i7ajcJ-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Carrois Gothic" - } - ] - }, - { - "name": "Carrois Gothic SC", - "fontFamily": "Carrois Gothic SC, sans-serif", - "slug": "wp-font-lib-carrois-gothic-sc", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/carroisgothicsc/v15/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28nNHabY4dN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Carrois Gothic SC" - } - ] - }, - { - "name": "Carter One", - "fontFamily": "Carter One, system-ui", - "slug": "wp-font-lib-carter-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/carterone/v17/q5uCsoe5IOB2-pXv9UcNIxR2hYxREMs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Carter One" - } - ] - }, - { - "name": "Castoro", - "fontFamily": "Castoro, serif", - "slug": "wp-font-lib-castoro", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/castoro/v19/1q2GY5yMCld3-O4cHYhEzOYenEU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Castoro" - }, - { - "src": "http://fonts.gstatic.com/s/castoro/v19/1q2EY5yMCld3-O4cLYpOyMQbjEX5fw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Castoro" - } - ] - }, - { - "name": "Castoro Titling", - "fontFamily": "Castoro Titling, system-ui", - "slug": "wp-font-lib-castoro-titling", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/castorotitling/v3/buEupouwccj03leTfjUAhEZWlrNqYgckeo9RMw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Castoro Titling" - } - ] - }, - { - "name": "Catamaran", - "fontFamily": "Catamaran, sans-serif", - "slug": "wp-font-lib-catamaran", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjc1anXuluiLyw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Catamaran" - }, - { - "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPjd1anXuluiLyw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Catamaran" - }, - { - "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPCbd1anXuluiLyw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Catamaran" - }, - { - "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjd1anXuluiLyw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Catamaran" - }, - { - "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPErd1anXuluiLyw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Catamaran" - }, - { - "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPKba1anXuluiLyw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Catamaran" - }, - { - "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPJ_a1anXuluiLyw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Catamaran" - }, - { - "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPja1anXuluiLyw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Catamaran" - }, - { - "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPNHa1anXuluiLyw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Catamaran" - } - ] - }, - { - "name": "Caudex", - "fontFamily": "Caudex, serif", - "slug": "wp-font-lib-caudex", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/caudex/v15/esDQ311QOP6BJUrIyviAnb4eEw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Caudex" - }, - { - "src": "http://fonts.gstatic.com/s/caudex/v15/esDS311QOP6BJUr4yPKEv7sOE4in.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Caudex" - }, - { - "src": "http://fonts.gstatic.com/s/caudex/v15/esDT311QOP6BJUrwdteklZUCGpG-GQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Caudex" - }, - { - "src": "http://fonts.gstatic.com/s/caudex/v15/esDV311QOP6BJUr4yMo4kJ8GOJSuGdLB.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Caudex" - } - ] - }, - { - "name": "Caveat", - "fontFamily": "Caveat, cursive", - "slug": "wp-font-lib-caveat", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjfJ9SIKjYBxPigs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Caveat" - }, - { - "src": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjcB9SIKjYBxPigs.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Caveat" - }, - { - "src": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjSx6SIKjYBxPigs.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Caveat" - }, - { - "src": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjRV6SIKjYBxPigs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Caveat" - } - ] - }, - { - "name": "Caveat Brush", - "fontFamily": "Caveat Brush, cursive", - "slug": "wp-font-lib-caveat-brush", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/caveatbrush/v11/EYq0maZfwr9S9-ETZc3fKXtMW7mT03pdQw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Caveat Brush" - } - ] - }, - { - "name": "Cedarville Cursive", - "fontFamily": "Cedarville Cursive, cursive", - "slug": "wp-font-lib-cedarville-cursive", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cedarvillecursive/v17/yYL00g_a2veiudhUmxjo5VKkoqA-B_neJbBxw8BeTg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cedarville Cursive" - } - ] - }, - { - "name": "Ceviche One", - "fontFamily": "Ceviche One, system-ui", - "slug": "wp-font-lib-ceviche-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cevicheone/v16/gyB4hws1IcA6JzR-GB_JX6zdZ4vZVbgZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ceviche One" - } - ] - }, - { - "name": "Chakra Petch", - "fontFamily": "Chakra Petch, sans-serif", - "slug": "wp-font-lib-chakra-petch", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeNIhFQJXE3AY00g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Chakra Petch" - }, - { - "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpLJQp_A_gMk0izH.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Chakra Petch" - }, - { - "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIf6MapbsEk7TDLdtEz1BwkmmKBhSL7Y1Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chakra Petch" - }, - { - "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfkMapbsEk7TDLdtEz1BwkWmqplarvI1R8t.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Chakra Petch" - }, - { - "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkebIlFQJXE3AY00g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Chakra Petch" - }, - { - "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpKRQ5_A_gMk0izH.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Chakra Petch" - }, - { - "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeQI5FQJXE3AY00g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Chakra Petch" - }, - { - "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpK9RJ_A_gMk0izH.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Chakra Petch" - }, - { - "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeJI9FQJXE3AY00g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Chakra Petch" - }, - { - "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpLZRZ_A_gMk0izH.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Chakra Petch" - } - ] - }, - { - "name": "Changa", - "fontFamily": "Changa, sans-serif", - "slug": "wp-font-lib-changa", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZy2xQjDp9htf1ZM.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Changa" - }, - { - "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ_OxQjDp9htf1ZM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Changa" - }, - { - "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ62xQjDp9htf1ZM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Changa" - }, - { - "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ5-xQjDp9htf1ZM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Changa" - }, - { - "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ3O2QjDp9htf1ZM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Changa" - }, - { - "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ0q2QjDp9htf1ZM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Changa" - }, - { - "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZy22QjDp9htf1ZM.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Changa" - } - ] - }, - { - "name": "Changa One", - "fontFamily": "Changa One, system-ui", - "slug": "wp-font-lib-changa-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/changaone/v18/xfu00W3wXn3QLUJXhzq46AbouLfbK64.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Changa One" - }, - { - "src": "http://fonts.gstatic.com/s/changaone/v18/xfu20W3wXn3QLUJXhzq42ATivJXeO67ISw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Changa One" - } - ] - }, - { - "name": "Chango", - "fontFamily": "Chango, system-ui", - "slug": "wp-font-lib-chango", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chango/v22/2V0cKI0OB5U7WaJyz324TFUaAw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chango" - } - ] - }, - { - "name": "Charis SIL", - "fontFamily": "Charis SIL, serif", - "slug": "wp-font-lib-charis-sil", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/charissil/v2/oPWK_kV3l-s-Q8govXvKrPrmYjZ2Xn0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Charis SIL" - }, - { - "src": "http://fonts.gstatic.com/s/charissil/v2/oPWI_kV3l-s-Q8govXvKnPjsZhRzTn2Ozw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Charis SIL" - }, - { - "src": "http://fonts.gstatic.com/s/charissil/v2/oPWJ_kV3l-s-Q8govXvKlEbJRj5dQnSX1ko.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Charis SIL" - }, - { - "src": "http://fonts.gstatic.com/s/charissil/v2/oPWX_kV3l-s-Q8govXvKnPjU2jtXRlaSxkrMCQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Charis SIL" - } - ] - }, - { - "name": "Charm", - "fontFamily": "Charm, cursive", - "slug": "wp-font-lib-charm", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/charm/v11/7cHmv4oii5K0MeYvIe804WIo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Charm" - }, - { - "src": "http://fonts.gstatic.com/s/charm/v11/7cHrv4oii5K0Md6TDss8yn4hnCci.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Charm" - } - ] - }, - { - "name": "Charmonman", - "fontFamily": "Charmonman, cursive", - "slug": "wp-font-lib-charmonman", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/charmonman/v18/MjQDmiR3vP_nuxDv47jiWJGovLdh6OE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Charmonman" - }, - { - "src": "http://fonts.gstatic.com/s/charmonman/v18/MjQAmiR3vP_nuxDv47jiYC2HmL9K9OhmGnY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Charmonman" - } - ] - }, - { - "name": "Chathura", - "fontFamily": "Chathura, sans-serif", - "slug": "wp-font-lib-chathura", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chathura/v20/_gP91R7-rzUuVjim42dEq0SbTvZyuDo.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Chathura" - }, - { - "src": "http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eMiWSxYPp7oSNy.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Chathura" - }, - { - "src": "http://fonts.gstatic.com/s/chathura/v20/_gP71R7-rzUuVjim418goUC5S-Zy.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chathura" - }, - { - "src": "http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42ecjmSxYPp7oSNy.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Chathura" - }, - { - "src": "http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eAjWSxYPp7oSNy.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Chathura" - } - ] - }, - { - "name": "Chau Philomene One", - "fontFamily": "Chau Philomene One, sans-serif", - "slug": "wp-font-lib-chau-philomene-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chauphilomeneone/v15/55xxezRsPtfie1vPY49qzdgSlJiHRQFsnIx7QMISdQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chau Philomene One" - }, - { - "src": "http://fonts.gstatic.com/s/chauphilomeneone/v15/55xzezRsPtfie1vPY49qzdgSlJiHRQFcnoZ_YscCdXQB.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Chau Philomene One" - } - ] - }, - { - "name": "Chela One", - "fontFamily": "Chela One, system-ui", - "slug": "wp-font-lib-chela-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chelaone/v21/6ae-4KC7Uqgdz_JZdPIy31vWNTMwoQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chela One" - } - ] - }, - { - "name": "Chelsea Market", - "fontFamily": "Chelsea Market, system-ui", - "slug": "wp-font-lib-chelsea-market", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chelseamarket/v13/BCawqZsHqfr89WNP_IApC8tzKBhlLA4uKkWk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chelsea Market" - } - ] - }, - { - "name": "Chenla", - "fontFamily": "Chenla, system-ui", - "slug": "wp-font-lib-chenla", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chenla/v25/SZc43FDpIKu8WZ9eXxfonUPL6Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chenla" - } - ] - }, - { - "name": "Cherish", - "fontFamily": "Cherish, cursive", - "slug": "wp-font-lib-cherish", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cherish/v8/ll88K2mXUyqsDsTN5iDCI6IJjg8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cherish" - } - ] - }, - { - "name": "Cherry Bomb One", - "fontFamily": "Cherry Bomb One, system-ui", - "slug": "wp-font-lib-cherry-bomb-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cherrybombone/v8/y83DW4od1h6KlV3c6JJhRhGOdhrKDNpF41fr-w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cherry Bomb One" - } - ] - }, - { - "name": "Cherry Cream Soda", - "fontFamily": "Cherry Cream Soda, system-ui", - "slug": "wp-font-lib-cherry-cream-soda", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cherrycreamsoda/v21/UMBIrOxBrW6w2FFyi9paG0fdVdRciTd6Cd47DJ7G.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cherry Cream Soda" - } - ] - }, - { - "name": "Cherry Swash", - "fontFamily": "Cherry Swash, system-ui", - "slug": "wp-font-lib-cherry-swash", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cherryswash/v18/i7dNIFByZjaNAMxtZcnfAy58QHi-EwWMbg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cherry Swash" - }, - { - "src": "http://fonts.gstatic.com/s/cherryswash/v18/i7dSIFByZjaNAMxtZcnfAy5E_FeaGy6QZ3WfYg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cherry Swash" - } - ] - }, - { - "name": "Chewy", - "fontFamily": "Chewy, system-ui", - "slug": "wp-font-lib-chewy", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chewy/v18/uK_94ruUb-k-wk5xIDMfO-ed.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chewy" - } - ] - }, - { - "name": "Chicle", - "fontFamily": "Chicle, system-ui", - "slug": "wp-font-lib-chicle", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chicle/v21/lJwG-pw9i2dqU-BDyWKuobYSxw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chicle" - } - ] - }, - { - "name": "Chilanka", - "fontFamily": "Chilanka, cursive", - "slug": "wp-font-lib-chilanka", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chilanka/v20/WWXRlj2DZQiMJYaYRrJQI9EAZhTO.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chilanka" - } - ] - }, - { - "name": "Chivo", - "fontFamily": "Chivo, sans-serif", - "slug": "wp-font-lib-chivo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB7ul2DSFXjQiQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_PB_ul2DSFXjQiQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_4h_ul2DSFXjQiQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_ul2DSFXjQiQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_jh_ul2DSFXjQiQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_Yhjul2DSFXjQiQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_Wxjul2DSFXjQiQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_PBjul2DSFXjQiQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_FRjul2DSFXjQiQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1WrWN33AiasJ.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyG1GrWN33AiasJ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFxY1GrWN33AiasJ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1GrWN33AiasJ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFw01GrWN33AiasJ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzY02rWN33AiasJ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzh02rWN33AiasJ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyG02rWN33AiasJ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyv02rWN33AiasJ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Chivo" - } - ] - }, - { - "name": "Chivo Mono", - "fontFamily": "Chivo Mono, monospace", - "slug": "wp-font-lib-chivo-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hrqfVKphL03l4.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5hr6fVKphL03l4.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D6_r6fVKphL03l4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hr6fVKphL03l4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7Tr6fVKphL03l4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D4_qKfVKphL03l4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D4GqKfVKphL03l4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5hqKfVKphL03l4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5IqKfVKphL03l4.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7E-XIJxp1ml4imo.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7M-WIJxp1ml4imo.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7BGWIJxp1ml4imo.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7E-WIJxp1ml4imo.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7H2WIJxp1ml4imo.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7JGRIJxp1ml4imo.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7KiRIJxp1ml4imo.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7M-RIJxp1ml4imo.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7OaRIJxp1ml4imo.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Chivo Mono" - } - ] - }, - { - "name": "Chokokutai", - "fontFamily": "Chokokutai, system-ui", - "slug": "wp-font-lib-chokokutai", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chokokutai/v9/kmK4Zqw4HwvCeHGM8Fws9y7ypu1Kr7I.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chokokutai" - } - ] - }, - { - "name": "Chonburi", - "fontFamily": "Chonburi, system-ui", - "slug": "wp-font-lib-chonburi", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chonburi/v10/8AtqGs-wOpGRTBq66IWaFr3biAfZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chonburi" - } - ] - }, - { - "name": "Cinzel", - "fontFamily": "Cinzel, serif", - "slug": "wp-font-lib-cinzel", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-tbnTYrvDE5ZdqU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cinzel" - }, - { - "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-uTnTYrvDE5ZdqU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cinzel" - }, - { - "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-gjgTYrvDE5ZdqU.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cinzel" - }, - { - "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-jHgTYrvDE5ZdqU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cinzel" - }, - { - "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-lbgTYrvDE5ZdqU.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Cinzel" - }, - { - "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-n_gTYrvDE5ZdqU.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Cinzel" - } - ] - }, - { - "name": "Cinzel Decorative", - "fontFamily": "Cinzel Decorative, system-ui", - "slug": "wp-font-lib-cinzel-decorative", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaCSScvJGqLYhG8nNt8KPPswUAPnh7URs1LaCyC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cinzel Decorative" - }, - { - "src": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaHSScvJGqLYhG8nNt8KPPswUAPniZoaelDQzCLlQXE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cinzel Decorative" - }, - { - "src": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaHSScvJGqLYhG8nNt8KPPswUAPniZQa-lDQzCLlQXE.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Cinzel Decorative" - } - ] - }, - { - "name": "Clicker Script", - "fontFamily": "Clicker Script, cursive", - "slug": "wp-font-lib-clicker-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/clickerscript/v13/raxkHiKPvt8CMH6ZWP8PdlEq72rY2zqUKafv.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Clicker Script" - } - ] - }, - { - "name": "Climate Crisis", - "fontFamily": "Climate Crisis, system-ui", - "slug": "wp-font-lib-climate-crisis", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/climatecrisis/v5/wEOpEB3AntNeKCPBVW9XOKlmp3AUgWFN1DvIvcM0gFp6jaUrGb7PsQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Climate Crisis" - } - ] - }, - { - "name": "Coda", - "fontFamily": "Coda, system-ui", - "slug": "wp-font-lib-coda", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/coda/v21/SLXHc1jY5nQ8JUIMapaN39I.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Coda" - }, - { - "src": "http://fonts.gstatic.com/s/coda/v21/SLXIc1jY5nQ8HeIgTp6mw9t1cX8.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Coda" - } - ] - }, - { - "name": "Coda Caption", - "fontFamily": "Coda Caption, sans-serif", - "slug": "wp-font-lib-coda-caption", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/codacaption/v19/ieVm2YRII2GMY7SyXSoDRiQGqcx6x_-fACIgaw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Coda Caption" - } - ] - }, - { - "name": "Codystar", - "fontFamily": "Codystar, system-ui", - "slug": "wp-font-lib-codystar", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/codystar/v15/FwZf7-Q1xVk-40qxOuYsyuyrj0e29bfC.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Codystar" - }, - { - "src": "http://fonts.gstatic.com/s/codystar/v15/FwZY7-Q1xVk-40qxOt6A4sijpFu_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Codystar" - } - ] - }, - { - "name": "Coiny", - "fontFamily": "Coiny, system-ui", - "slug": "wp-font-lib-coiny", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/coiny/v16/gyByhwU1K989PXwbElSvO5Tc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Coiny" - } - ] - }, - { - "name": "Combo", - "fontFamily": "Combo, system-ui", - "slug": "wp-font-lib-combo", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/combo/v21/BXRlvF3Jh_fIhg0iBu9y8Hf0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Combo" - } - ] - }, - { - "name": "Comfortaa", - "fontFamily": "Comfortaa, system-ui", - "slug": "wp-font-lib-comfortaa", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Comfortaa" - }, - { - "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Comfortaa" - }, - { - "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Comfortaa" - }, - { - "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Comfortaa" - }, - { - "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Comfortaa" - } - ] - }, - { - "name": "Comforter", - "fontFamily": "Comforter, cursive", - "slug": "wp-font-lib-comforter", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/comforter/v5/H4clBXOCl8nQnlaql3Qa6JG8iqeuag.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Comforter" - } - ] - }, - { - "name": "Comforter Brush", - "fontFamily": "Comforter Brush, cursive", - "slug": "wp-font-lib-comforter-brush", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/comforterbrush/v5/Y4GTYa1xVSggrfzZI5WMjxRaOz0jwLL9Th8YYA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Comforter Brush" - } - ] - }, - { - "name": "Comic Neue", - "fontFamily": "Comic Neue, cursive", - "slug": "wp-font-lib-comic-neue", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_wHLwpteLwtHJlc.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Comic Neue" - }, - { - "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RTplUKylCNlcw_Q.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Comic Neue" - }, - { - "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaHrEJDsxBrF37olUeDx63j5pN1MwI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Comic Neue" - }, - { - "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaFrEJDsxBrF37olUeD96_p4rFwIwJePw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Comic Neue" - }, - { - "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_xHMwpteLwtHJlc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Comic Neue" - }, - { - "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RXp5UKylCNlcw_Q.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Comic Neue" - } - ] - }, - { - "name": "Coming Soon", - "fontFamily": "Coming Soon, cursive", - "slug": "wp-font-lib-coming-soon", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/comingsoon/v19/qWcuB6mzpYL7AJ2VfdQR1u-SUjjzsykh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Coming Soon" - } - ] - }, - { - "name": "Comme", - "fontFamily": "Comme, sans-serif", - "slug": "wp-font-lib-comme", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z5cBr644fWsRO9w.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Comme" - }, - { - "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zZcFr644fWsRO9w.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Comme" - }, - { - "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zu8Fr644fWsRO9w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Comme" - }, - { - "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z5cFr644fWsRO9w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Comme" - }, - { - "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z18Fr644fWsRO9w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Comme" - }, - { - "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zO8Zr644fWsRO9w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Comme" - }, - { - "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zAsZr644fWsRO9w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Comme" - }, - { - "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zZcZr644fWsRO9w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Comme" - }, - { - "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zTMZr644fWsRO9w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Comme" - } - ] - }, - { - "name": "Commissioner", - "fontFamily": "Commissioner, sans-serif", - "slug": "wp-font-lib-commissioner", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTMNcGPe7Fu0jUdk.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Commissioner" - }, - { - "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTENdGPe7Fu0jUdk.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Commissioner" - }, - { - "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTJ1dGPe7Fu0jUdk.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Commissioner" - }, - { - "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTMNdGPe7Fu0jUdk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Commissioner" - }, - { - "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTPFdGPe7Fu0jUdk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Commissioner" - }, - { - "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTB1aGPe7Fu0jUdk.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Commissioner" - }, - { - "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTCRaGPe7Fu0jUdk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Commissioner" - }, - { - "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTENaGPe7Fu0jUdk.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Commissioner" - }, - { - "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTGpaGPe7Fu0jUdk.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Commissioner" - } - ] - }, - { - "name": "Concert One", - "fontFamily": "Concert One, system-ui", - "slug": "wp-font-lib-concert-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/concertone/v17/VEM1Ro9xs5PjtzCu-srDqRTlhv-CuVAQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Concert One" - } - ] - }, - { - "name": "Condiment", - "fontFamily": "Condiment, cursive", - "slug": "wp-font-lib-condiment", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/condiment/v20/pONk1hggFNmwvXALyH6Sq4n4o1vyCQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Condiment" - } - ] - }, - { - "name": "Content", - "fontFamily": "Content, system-ui", - "slug": "wp-font-lib-content", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/content/v24/zrfl0HLayePhU_AwUaDyIiL0RCg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Content" - }, - { - "src": "http://fonts.gstatic.com/s/content/v24/zrfg0HLayePhU_AwaRzdBirfWCHvkAI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Content" - } - ] - }, - { - "name": "Contrail One", - "fontFamily": "Contrail One, system-ui", - "slug": "wp-font-lib-contrail-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/contrailone/v15/eLGbP-j_JA-kG0_Zo51noafdZUvt_c092w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Contrail One" - } - ] - }, - { - "name": "Convergence", - "fontFamily": "Convergence, sans-serif", - "slug": "wp-font-lib-convergence", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/convergence/v15/rax5HiePvdgXPmmMHcIPYRhasU7Q8Cad.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Convergence" - } - ] - }, - { - "name": "Cookie", - "fontFamily": "Cookie, cursive", - "slug": "wp-font-lib-cookie", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cookie/v17/syky-y18lb0tSbfNlQCT9tPdpw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cookie" - } - ] - }, - { - "name": "Copse", - "fontFamily": "Copse, serif", - "slug": "wp-font-lib-copse", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/copse/v15/11hPGpDKz1rGb0djHkihUb-A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Copse" - } - ] - }, - { - "name": "Corben", - "fontFamily": "Corben, system-ui", - "slug": "wp-font-lib-corben", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/corben/v19/LYjDdGzzklQtCMp9oAlEpVs3VQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Corben" - }, - { - "src": "http://fonts.gstatic.com/s/corben/v19/LYjAdGzzklQtCMpFHCZgrXArXN7HWQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Corben" - } - ] - }, - { - "name": "Corinthia", - "fontFamily": "Corinthia, cursive", - "slug": "wp-font-lib-corinthia", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/corinthia/v9/wEO_EBrAnchaJyPMHE0FUfAL3EsHiA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Corinthia" - }, - { - "src": "http://fonts.gstatic.com/s/corinthia/v9/wEO6EBrAnchaJyPMHE097d8v1GAbgbLXQA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Corinthia" - } - ] - }, - { - "name": "Cormorant", - "fontFamily": "Cormorant, serif", - "slug": "wp-font-lib-cormorant", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFk9TQ7Rg7A2uwYs.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cormorant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFhFTQ7Rg7A2uwYs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cormorant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFiNTQ7Rg7A2uwYs.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cormorant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFs9UQ7Rg7A2uwYs.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cormorant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFvZUQ7Rg7A2uwYs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cormorant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQ9fdq6C-r0YvxdA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Cormorant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQq_dq6C-r0YvxdA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cormorant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQmfdq6C-r0YvxdA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Cormorant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQdfBq6C-r0YvxdA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Cormorant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQTPBq6C-r0YvxdA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cormorant" - } - ] - }, - { - "name": "Cormorant Garamond", - "fontFamily": "Cormorant Garamond, serif", - "slug": "wp-font-lib-cormorant-garamond", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQAllvuQWJ5heb_w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cormorant Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjuw-NxBKL_y94.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Cormorant Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3bmX5slCNuHLi8bLeY9MK7whWMhyjornFLsS6V7w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cormorant Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtPkyuF7w6C.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cormorant Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQWlhvuQWJ5heb_w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cormorant Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEO7ug-NxBKL_y94.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Cormorant Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQdl9vuQWJ5heb_w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cormorant Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEOXvQ-NxBKL_y94.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Cormorant Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vuQWJ5heb_w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cormorant Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPzvA-NxBKL_y94.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cormorant Garamond" - } - ] - }, - { - "name": "Cormorant Infant", - "fontFamily": "Cormorant Infant, serif", - "slug": "wp-font-lib-cormorant-infant", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9951w3_DMrQqcdJrk.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cormorant Infant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItcDEhRoUYNrn_Ig.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Cormorant Infant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyPU44g9vKiM1sORYSiWeAsLN993_Af2DsAXq4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cormorant Infant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyJU44g9vKiM1sORYSiWeAsLN997_IV3BkFTq4EPw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cormorant Infant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995wQ2_DMrQqcdJrk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cormorant Infant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItKDAhRoUYNrn_Ig.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Cormorant Infant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995ygx_DMrQqcdJrk.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cormorant Infant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItBDchRoUYNrn_Ig.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Cormorant Infant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9950ww_DMrQqcdJrk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cormorant Infant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItYDYhRoUYNrn_Ig.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cormorant Infant" - } - ] - }, - { - "name": "Cormorant SC", - "fontFamily": "Cormorant SC, serif", - "slug": "wp-font-lib-cormorant-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmABIU_R3y8DOWGA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cormorant SC" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0yb5GD4kxqXBmOVLG30OGwserDow9Tbu-Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cormorant SC" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmWBMU_R3y8DOWGA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cormorant SC" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmdBQU_R3y8DOWGA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cormorant SC" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmEBUU_R3y8DOWGA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cormorant SC" - } - ] - }, - { - "name": "Cormorant Unicase", - "fontFamily": "Cormorant Unicase, serif", - "slug": "wp-font-lib-cormorant-unicase", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9N_tucv7Gy0DRzS.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cormorant Unicase" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vTnsMnx3C9.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cormorant Unicase" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Mnt-cv7Gy0DRzS.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cormorant Unicase" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9MLsOcv7Gy0DRzS.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cormorant Unicase" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Nvsecv7Gy0DRzS.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cormorant Unicase" - } - ] - }, - { - "name": "Cormorant Upright", - "fontFamily": "Cormorant Upright, serif", - "slug": "wp-font-lib-cormorant-upright", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1N5phDsU9X6RPzQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cormorant Upright" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJrdM3I2Y35poFONtLdafkUCHw1y2vVjjTkeMnz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cormorant Upright" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MhpxDsU9X6RPzQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cormorant Upright" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MNoBDsU9X6RPzQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cormorant Upright" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1NpoRDsU9X6RPzQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cormorant Upright" - } - ] - }, - { - "name": "Courgette", - "fontFamily": "Courgette, cursive", - "slug": "wp-font-lib-courgette", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/courgette/v13/wEO_EBrAnc9BLjLQAUkFUfAL3EsHiA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Courgette" - } - ] - }, - { - "name": "Courier Prime", - "fontFamily": "Courier Prime, monospace", - "slug": "wp-font-lib-courier-prime", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/courierprime/v7/u-450q2lgwslOqpF_6gQ8kELWwZjW-_-tvg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Courier Prime" - }, - { - "src": "http://fonts.gstatic.com/s/courierprime/v7/u-4n0q2lgwslOqpF_6gQ8kELawRpX837pvjxPA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Courier Prime" - }, - { - "src": "http://fonts.gstatic.com/s/courierprime/v7/u-4k0q2lgwslOqpF_6gQ8kELY7pMf-fVqvHoJXw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Courier Prime" - }, - { - "src": "http://fonts.gstatic.com/s/courierprime/v7/u-4i0q2lgwslOqpF_6gQ8kELawRR4-LfrtPtNXyeAg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Courier Prime" - } - ] - }, - { - "name": "Cousine", - "fontFamily": "Cousine, monospace", - "slug": "wp-font-lib-cousine", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cousine/v25/d6lIkaiiRdih4SpPzSMlzTbtz9k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cousine" - }, - { - "src": "http://fonts.gstatic.com/s/cousine/v25/d6lKkaiiRdih4SpP_SEvyRTo39l8hw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cousine" - }, - { - "src": "http://fonts.gstatic.com/s/cousine/v25/d6lNkaiiRdih4SpP9Z8K6T7G09BlnmQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cousine" - }, - { - "src": "http://fonts.gstatic.com/s/cousine/v25/d6lPkaiiRdih4SpP_SEXdTvM1_JgjmRpOA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cousine" - } - ] - }, - { - "name": "Coustard", - "fontFamily": "Coustard, serif", - "slug": "wp-font-lib-coustard", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/coustard/v16/3XFpErgg3YsZ5fqUU9UPvWXuROTd.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Coustard" - }, - { - "src": "http://fonts.gstatic.com/s/coustard/v16/3XFuErgg3YsZ5fqUU-2LkEHmb_jU3eRL.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Coustard" - } - ] - }, - { - "name": "Covered By Your Grace", - "fontFamily": "Covered By Your Grace, cursive", - "slug": "wp-font-lib-covered-by-your-grace", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/coveredbyyourgrace/v15/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0FgItq6bFIg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Covered By Your Grace" - } - ] - }, - { - "name": "Crafty Girls", - "fontFamily": "Crafty Girls, cursive", - "slug": "wp-font-lib-crafty-girls", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/craftygirls/v16/va9B4kXI39VaDdlPJo8N_NvuQR37fF3Wlg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Crafty Girls" - } - ] - }, - { - "name": "Creepster", - "fontFamily": "Creepster, system-ui", - "slug": "wp-font-lib-creepster", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/creepster/v13/AlZy_zVUqJz4yMrniH4hdXf4XB0Tow.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Creepster" - } - ] - }, - { - "name": "Crete Round", - "fontFamily": "Crete Round, serif", - "slug": "wp-font-lib-crete-round", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/creteround/v14/55xoey1sJNPjPiv1ZZZrxJ1827zAKnxN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Crete Round" - }, - { - "src": "http://fonts.gstatic.com/s/creteround/v14/55xqey1sJNPjPiv1ZZZrxK1-0bjiL2xNhKc.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Crete Round" - } - ] - }, - { - "name": "Crimson Pro", - "fontFamily": "Crimson Pro, serif", - "slug": "wp-font-lib-crimson-pro", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTm18OJE_VNWoyQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZkG18OJE_VNWoyQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZzm18OJE_VNWoyQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZ_G18OJE_VNWoyQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZEGp8OJE_VNWoyQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZKWp8OJE_VNWoyQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTmp8OJE_VNWoyQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZZ2p8OJE_VNWoyQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4Ue5s7dtC4yZNE.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi7Ke5s7dtC4yZNE.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6Ue5s7dtC4yZNE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6me5s7dtC4yZNE.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5KfJs7dtC4yZNE.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5zfJs7dtC4yZNE.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4UfJs7dtC4yZNE.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi49fJs7dtC4yZNE.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Crimson Pro" - } - ] - }, - { - "name": "Crimson Text", - "fontFamily": "Crimson Text, serif", - "slug": "wp-font-lib-crimson-text", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlp2gwHKFkZgtmSR3NB0oRJvaAJSA_JN3Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Crimson Text" - }, - { - "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlpogwHKFkZgtmSR3NB0oRJfaghWIfdd3ahG.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Crimson Text" - }, - { - "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJXsCx2C9lR1LFffg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Crimson Text" - }, - { - "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajCOD9NV9rRPfrKu.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Crimson Text" - }, - { - "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJX1C12C9lR1LFffg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Crimson Text" - }, - { - "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajDqDtNV9rRPfrKu.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Crimson Text" - } - ] - }, - { - "name": "Croissant One", - "fontFamily": "Croissant One, system-ui", - "slug": "wp-font-lib-croissant-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/croissantone/v21/3y9n6bU9bTPg4m8NDy3Kq24UM3pqn5cdJ-4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Croissant One" - } - ] - }, - { - "name": "Crushed", - "fontFamily": "Crushed, system-ui", - "slug": "wp-font-lib-crushed", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/crushed/v25/U9Mc6dym6WXImTlFT1kfuIqyLzA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Crushed" - } - ] - }, - { - "name": "Cuprum", - "fontFamily": "Cuprum, sans-serif", - "slug": "wp-font-lib-cuprum", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmg-X6ZjzSJjQjgnU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cuprum" - }, - { - "src": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmg9f6ZjzSJjQjgnU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cuprum" - }, - { - "src": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmgzv9ZjzSJjQjgnU.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cuprum" - }, - { - "src": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmgwL9ZjzSJjQjgnU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cuprum" - }, - { - "src": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25jn_YIhYmknUPEA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cuprum" - }, - { - "src": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25vH_YIhYmknUPEA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Cuprum" - }, - { - "src": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25UHjYIhYmknUPEA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Cuprum" - }, - { - "src": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25aXjYIhYmknUPEA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cuprum" - } - ] - }, - { - "name": "Cute Font", - "fontFamily": "Cute Font, system-ui", - "slug": "wp-font-lib-cute-font", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cutefont/v20/Noaw6Uny2oWPbSHMrY6vmJNVNC9hkw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cute Font" - } - ] - }, - { - "name": "Cutive", - "fontFamily": "Cutive, serif", - "slug": "wp-font-lib-cutive", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cutive/v17/NaPZcZ_fHOhV3Ip7T_hDoyqlZQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cutive" - } - ] - }, - { - "name": "Cutive Mono", - "fontFamily": "Cutive Mono, monospace", - "slug": "wp-font-lib-cutive-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cutivemono/v15/m8JWjfRfY7WVjVi2E-K9H5RFRG-K3Mud.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cutive Mono" - } - ] - }, - { - "name": "DM Mono", - "fontFamily": "DM Mono, monospace", - "slug": "wp-font-lib-dm-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTR7PB1QTsUX8KYvrGyIYSnbKX9Rlk.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "DM Mono" - }, - { - "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTT7PB1QTsUX8KYth-orYataIf4VllXuA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "DM Mono" - }, - { - "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTU7PB1QTsUX8KYhh2aBYyMcKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "DM Mono" - }, - { - "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTW7PB1QTsUX8KYth-QAa6JYKzkXw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "DM Mono" - }, - { - "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTR7PB1QTsUX8KYvumzIYSnbKX9Rlk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "DM Mono" - }, - { - "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTT7PB1QTsUX8KYth-o9YetaIf4VllXuA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "DM Mono" - } - ] - }, - { - "name": "DM Sans", - "fontFamily": "DM Sans, sans-serif", - "slug": "wp-font-lib-dm-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "DM Sans" - }, - { - "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Fp2ywxg089UriCZaIGDWCBl0O8Q.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "DM Sans" - }, - { - "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Cp2ywxg089UriAWCrOB-sClQX6Cg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "DM Sans" - }, - { - "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Ap2ywxg089UriCZaw7BymDnYS-Cjk6Q.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "DM Sans" - }, - { - "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Cp2ywxg089UriASitOB-sClQX6Cg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "DM Sans" - }, - { - "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Ap2ywxg089UriCZawpBqmDnYS-Cjk6Q.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "DM Sans" - } - ] - }, - { - "name": "DM Serif Display", - "fontFamily": "DM Serif Display, serif", - "slug": "wp-font-lib-dm-serif-display", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dmserifdisplay/v12/-nFnOHM81r4j6k0gjAW3mujVU2B2K_d709jy92k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "DM Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/dmserifdisplay/v12/-nFhOHM81r4j6k0gjAW3mujVU2B2G_Vx1_r352np3Q.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "DM Serif Display" - } - ] - }, - { - "name": "DM Serif Text", - "fontFamily": "DM Serif Text, serif", - "slug": "wp-font-lib-dm-serif-text", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dmseriftext/v12/rnCu-xZa_krGokauCeNq1wWyafOPXHIJErY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "DM Serif Text" - }, - { - "src": "http://fonts.gstatic.com/s/dmseriftext/v12/rnCw-xZa_krGokauCeNq1wWyWfGFWFAMArZKqQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "DM Serif Text" - } - ] - }, - { - "name": "Damion", - "fontFamily": "Damion, cursive", - "slug": "wp-font-lib-damion", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/damion/v14/hv-XlzJ3KEUe_YZUbWY3MTFgVg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Damion" - } - ] - }, - { - "name": "Dancing Script", - "fontFamily": "Dancing Script, cursive", - "slug": "wp-font-lib-dancing-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSoHTeB9ptDqpw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dancing Script" - }, - { - "src": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BAyoHTeB9ptDqpw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Dancing Script" - }, - { - "src": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B7y0HTeB9ptDqpw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Dancing Script" - }, - { - "src": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B1i0HTeB9ptDqpw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Dancing Script" - } - ] - }, - { - "name": "Dangrek", - "fontFamily": "Dangrek, system-ui", - "slug": "wp-font-lib-dangrek", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dangrek/v26/LYjCdG30nEgoH8E2gCNqqVIuTN4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dangrek" - } - ] - }, - { - "name": "Darker Grotesque", - "fontFamily": "Darker Grotesque, sans-serif", - "slug": "wp-font-lib-darker-grotesque", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXxpqn7y-XFyZFUB.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Darker Grotesque" - }, - { - "src": "http://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXw3qn7y-XFyZFUB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Darker Grotesque" - }, - { - "src": "http://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXwFqn7y-XFyZFUB.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Darker Grotesque" - }, - { - "src": "http://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXzprX7y-XFyZFUB.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Darker Grotesque" - }, - { - "src": "http://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXzQrX7y-XFyZFUB.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Darker Grotesque" - }, - { - "src": "http://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXy3rX7y-XFyZFUB.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Darker Grotesque" - }, - { - "src": "http://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXyerX7y-XFyZFUB.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Darker Grotesque" - } - ] - }, - { - "name": "Darumadrop One", - "fontFamily": "Darumadrop One, system-ui", - "slug": "wp-font-lib-darumadrop-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/darumadropone/v7/cY9cfjeIW11dpCKgRLi675a87IhHBJOxZQPp.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Darumadrop One" - } - ] - }, - { - "name": "David Libre", - "fontFamily": "David Libre, serif", - "slug": "wp-font-lib-david-libre", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/davidlibre/v14/snfus0W_99N64iuYSvp4W_l86p6TYS-Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "David Libre" - }, - { - "src": "http://fonts.gstatic.com/s/davidlibre/v14/snfzs0W_99N64iuYSvp4W8GIw7qbSjORSo9W.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "David Libre" - }, - { - "src": "http://fonts.gstatic.com/s/davidlibre/v14/snfzs0W_99N64iuYSvp4W8HAxbqbSjORSo9W.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "David Libre" - } - ] - }, - { - "name": "Dawning of a New Day", - "fontFamily": "Dawning of a New Day, cursive", - "slug": "wp-font-lib-dawning-of-a-new-day", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dawningofanewday/v16/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8bhWJGNoBE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dawning of a New Day" - } - ] - }, - { - "name": "Days One", - "fontFamily": "Days One, sans-serif", - "slug": "wp-font-lib-days-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/daysone/v14/mem9YaCnxnKRiYZOCLYVeLkWVNBt.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Days One" - } - ] - }, - { - "name": "Dekko", - "fontFamily": "Dekko, cursive", - "slug": "wp-font-lib-dekko", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dekko/v19/46khlb_wWjfSrttFR0vsfl1B.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dekko" - } - ] - }, - { - "name": "Dela Gothic One", - "fontFamily": "Dela Gothic One, system-ui", - "slug": "wp-font-lib-dela-gothic-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/delagothicone/v10/~ChEKD0RlbGEgR290aGljIE9uZSAAKgQIARgB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dela Gothic One" - } - ] - }, - { - "name": "Delicious Handrawn", - "fontFamily": "Delicious Handrawn, cursive", - "slug": "wp-font-lib-delicious-handrawn", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/delicioushandrawn/v4/wlpsgx_NAUNkpmKQifcxkQchDFo3fJ113JpDd6u3AQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Delicious Handrawn" - } - ] - }, - { - "name": "Delius", - "fontFamily": "Delius, cursive", - "slug": "wp-font-lib-delius", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/delius/v15/PN_xRfK0pW_9e1rtYcI-jT3L_w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Delius" - } - ] - }, - { - "name": "Delius Swash Caps", - "fontFamily": "Delius Swash Caps, cursive", - "slug": "wp-font-lib-delius-swash-caps", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/deliusswashcaps/v19/oY1E8fPLr7v4JWCExZpWebxVKORpXXedKmeBvEYs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Delius Swash Caps" - } - ] - }, - { - "name": "Delius Unicase", - "fontFamily": "Delius Unicase, cursive", - "slug": "wp-font-lib-delius-unicase", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/deliusunicase/v26/845BNMEwEIOVT8BmgfSzIr_6mmLHd-73LXWs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Delius Unicase" - }, - { - "src": "http://fonts.gstatic.com/s/deliusunicase/v26/845CNMEwEIOVT8BmgfSzIr_6mlp7WMr_BmmlS5aw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Delius Unicase" - } - ] - }, - { - "name": "Della Respira", - "fontFamily": "Della Respira, serif", - "slug": "wp-font-lib-della-respira", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dellarespira/v18/RLp5K5v44KaueWI6iEJQBiGPRfkSu6EuTHo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Della Respira" - } - ] - }, - { - "name": "Denk One", - "fontFamily": "Denk One, sans-serif", - "slug": "wp-font-lib-denk-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/denkone/v17/dg4m_pzhrqcFb2IzROtHpbglShon.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Denk One" - } - ] - }, - { - "name": "Devonshire", - "fontFamily": "Devonshire, cursive", - "slug": "wp-font-lib-devonshire", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/devonshire/v22/46kqlbDwWirWr4gtBD2BX0Vq01lYAZM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Devonshire" - } - ] - }, - { - "name": "Dhurjati", - "fontFamily": "Dhurjati, sans-serif", - "slug": "wp-font-lib-dhurjati", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dhurjati/v20/_6_8ED3gSeatXfFiFX3ySKQtuTA2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dhurjati" - } - ] - }, - { - "name": "Didact Gothic", - "fontFamily": "Didact Gothic, sans-serif", - "slug": "wp-font-lib-didact-gothic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/didactgothic/v20/ahcfv8qz1zt6hCC5G4F_P4ASpUySp0LlcyQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Didact Gothic" - } - ] - }, - { - "name": "Diplomata", - "fontFamily": "Diplomata, system-ui", - "slug": "wp-font-lib-diplomata", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/diplomata/v27/Cn-0JtiMXwhNwp-wKxyfYGxYrdM9Sg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Diplomata" - } - ] - }, - { - "name": "Diplomata SC", - "fontFamily": "Diplomata SC, system-ui", - "slug": "wp-font-lib-diplomata-sc", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/diplomatasc/v23/buExpoi3ecvs3kidKgBJo2kf-P5Oaiw4cw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Diplomata SC" - } - ] - }, - { - "name": "Do Hyeon", - "fontFamily": "Do Hyeon, sans-serif", - "slug": "wp-font-lib-do-hyeon", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dohyeon/v16/TwMN-I8CRRU2zM86HFE3ZwaH__-C.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Do Hyeon" - } - ] - }, - { - "name": "Dokdo", - "fontFamily": "Dokdo, cursive", - "slug": "wp-font-lib-dokdo", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dokdo/v15/esDf315XNuCBLxLo4NaMlKcH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dokdo" - } - ] - }, - { - "name": "Domine", - "fontFamily": "Domine, serif", - "slug": "wp-font-lib-domine", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X3LAI10VErGuW8Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Domine" - }, - { - "src": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X0DAI10VErGuW8Q.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Domine" - }, - { - "src": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X6zHI10VErGuW8Q.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Domine" - }, - { - "src": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X5XHI10VErGuW8Q.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Domine" - } - ] - }, - { - "name": "Donegal One", - "fontFamily": "Donegal One, serif", - "slug": "wp-font-lib-donegal-one", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/donegalone/v21/m8JWjfRYea-ZnFz6fsK9FZRFRG-K3Mud.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Donegal One" - } - ] - }, - { - "name": "Dongle", - "fontFamily": "Dongle, sans-serif", - "slug": "wp-font-lib-dongle", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dongle/v9/sJoG3Ltdjt6VPkqeEcxrYjWNzXvVPA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Dongle" - }, - { - "src": "http://fonts.gstatic.com/s/dongle/v9/sJoF3Ltdjt6VPkqmveRPah6RxA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dongle" - }, - { - "src": "http://fonts.gstatic.com/s/dongle/v9/sJoG3Ltdjt6VPkqeActrYjWNzXvVPA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Dongle" - } - ] - }, - { - "name": "Doppio One", - "fontFamily": "Doppio One, sans-serif", - "slug": "wp-font-lib-doppio-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/doppioone/v13/Gg8wN5gSaBfyBw2MqCh-lgshKGpe5Fg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Doppio One" - } - ] - }, - { - "name": "Dorsa", - "fontFamily": "Dorsa, sans-serif", - "slug": "wp-font-lib-dorsa", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dorsa/v23/yYLn0hjd0OGwqo493XCFxAnQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dorsa" - } - ] - }, - { - "name": "Dosis", - "fontFamily": "Dosis, sans-serif", - "slug": "wp-font-lib-dosis", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7MV3BkFTq4EPw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Dosis" - }, - { - "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJabMV3BkFTq4EPw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Dosis" - }, - { - "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJN7MV3BkFTq4EPw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dosis" - }, - { - "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJBbMV3BkFTq4EPw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Dosis" - }, - { - "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ6bQV3BkFTq4EPw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Dosis" - }, - { - "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ0LQV3BkFTq4EPw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Dosis" - }, - { - "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7QV3BkFTq4EPw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Dosis" - } - ] - }, - { - "name": "DotGothic16", - "fontFamily": "DotGothic16, sans-serif", - "slug": "wp-font-lib-dotgothic16", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dotgothic16/v15/v6-QGYjBJFKgyw5nSoDAGE7L435YPFrT.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "DotGothic16" - } - ] - }, - { - "name": "Dr Sugiyama", - "fontFamily": "Dr Sugiyama, cursive", - "slug": "wp-font-lib-dr-sugiyama", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/drsugiyama/v23/HTxoL2k4N3O9n5I1boGI7abRM4-t-g7y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dr Sugiyama" - } - ] - }, - { - "name": "Duru Sans", - "fontFamily": "Duru Sans, sans-serif", - "slug": "wp-font-lib-duru-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/durusans/v20/xn7iYH8xwmSyTvEV_HOxT_fYdN-WZw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Duru Sans" - } - ] - }, - { - "name": "DynaPuff", - "fontFamily": "DynaPuff, system-ui", - "slug": "wp-font-lib-dynapuff", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSxYu6YjrSRs4wn8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "DynaPuff" - }, - { - "src": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSyQu6YjrSRs4wn8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "DynaPuff" - }, - { - "src": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS8gp6YjrSRs4wn8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "DynaPuff" - }, - { - "src": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS_Ep6YjrSRs4wn8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "DynaPuff" - } - ] - }, - { - "name": "Dynalight", - "fontFamily": "Dynalight, system-ui", - "slug": "wp-font-lib-dynalight", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dynalight/v18/1Ptsg8LOU_aOmQvTsF4ISotrDfGGxA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dynalight" - } - ] - }, - { - "name": "EB Garamond", - "fontFamily": "EB Garamond, serif", - "slug": "wp-font-lib-eb-garamond", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-6_RUA4V-e6yHgQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "EB Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-2fRUA4V-e6yHgQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "EB Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-NfNUA4V-e6yHgQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "EB Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNUA4V-e6yHgQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "EB Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-a_NUA4V-e6yHgQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "EB Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7e8QI96WamXgXFI.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "EB Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7eOQI96WamXgXFI.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "EB Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7diR496WamXgXFI.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "EB Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7dbR496WamXgXFI.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "EB Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7c8R496WamXgXFI.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "EB Garamond" - } - ] - }, - { - "name": "Eagle Lake", - "fontFamily": "Eagle Lake, cursive", - "slug": "wp-font-lib-eagle-lake", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/eaglelake/v20/ptRMTiqbbuNJDOiKj9wG5O7yKQNute8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Eagle Lake" - } - ] - }, - { - "name": "East Sea Dokdo", - "fontFamily": "East Sea Dokdo, cursive", - "slug": "wp-font-lib-east-sea-dokdo", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/eastseadokdo/v20/xfuo0Wn2V2_KanASqXSZp22m05_aGavYS18y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "East Sea Dokdo" - } - ] - }, - { - "name": "Eater", - "fontFamily": "Eater, system-ui", - "slug": "wp-font-lib-eater", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/eater/v21/mtG04_FCK7bOvpu2u3FwsXsR.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Eater" - } - ] - }, - { - "name": "Economica", - "fontFamily": "Economica, sans-serif", - "slug": "wp-font-lib-economica", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/economica/v13/Qw3fZQZaHCLgIWa29ZBrMcgAAl1lfQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Economica" - }, - { - "src": "http://fonts.gstatic.com/s/economica/v13/Qw3ZZQZaHCLgIWa29ZBbM8IEIFh1fWUl.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Economica" - }, - { - "src": "http://fonts.gstatic.com/s/economica/v13/Qw3aZQZaHCLgIWa29ZBTjeckCnZ5dHw8iw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Economica" - }, - { - "src": "http://fonts.gstatic.com/s/economica/v13/Qw3EZQZaHCLgIWa29ZBbM_q4D3x9Vnksi4M7.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Economica" - } - ] - }, - { - "name": "Eczar", - "fontFamily": "Eczar, serif", - "slug": "wp-font-lib-eczar", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXHd6WqTIVKWJKWg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Eczar" - }, - { - "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXL96WqTIVKWJKWg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Eczar" - }, - { - "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXw9mWqTIVKWJKWg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Eczar" - }, - { - "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDX-tmWqTIVKWJKWg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Eczar" - }, - { - "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXndmWqTIVKWJKWg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Eczar" - } - ] - }, - { - "name": "Edu NSW ACT Foundation", - "fontFamily": "Edu NSW ACT Foundation, cursive", - "slug": "wp-font-lib-edu-nsw-act-foundation", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9tovGLeC-sfguJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Edu NSW ACT Foundation" - }, - { - "src": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9fovGLeC-sfguJ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Edu NSW ACT Foundation" - }, - { - "src": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-zpfGLeC-sfguJ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Edu NSW ACT Foundation" - }, - { - "src": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-KpfGLeC-sfguJ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Edu NSW ACT Foundation" - } - ] - }, - { - "name": "Edu QLD Beginner", - "fontFamily": "Edu QLD Beginner, cursive", - "slug": "wp-font-lib-edu-qld-beginner", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE4E3oebi6vyVWCN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Edu QLD Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE423oebi6vyVWCN.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Edu QLD Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7a2Yebi6vyVWCN.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Edu QLD Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7j2Yebi6vyVWCN.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Edu QLD Beginner" - } - ] - }, - { - "name": "Edu SA Beginner", - "fontFamily": "Edu SA Beginner, cursive", - "slug": "wp-font-lib-edu-sa-beginner", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9989fo1yBydUEDs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Edu SA Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9-09fo1yBydUEDs.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Edu SA Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9wE6fo1yBydUEDs.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Edu SA Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9zg6fo1yBydUEDs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Edu SA Beginner" - } - ] - }, - { - "name": "Edu TAS Beginner", - "fontFamily": "Edu TAS Beginner, cursive", - "slug": "wp-font-lib-edu-tas-beginner", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HwemkrBWRhvk02.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Edu TAS Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HCemkrBWRhvk02.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Edu TAS Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EufWkrBWRhvk02.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Edu TAS Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EXfWkrBWRhvk02.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Edu TAS Beginner" - } - ] - }, - { - "name": "Edu VIC WA NT Beginner", - "fontFamily": "Edu VIC WA NT Beginner, cursive", - "slug": "wp-font-lib-edu-vic-wa-nt-beginner", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OXlPmFXwnpkeGR.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Edu VIC WA NT Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OllPmFXwnpkeGR.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Edu VIC WA NT Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-NJk_mFXwnpkeGR.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Edu VIC WA NT Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-Nwk_mFXwnpkeGR.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Edu VIC WA NT Beginner" - } - ] - }, - { - "name": "El Messiri", - "fontFamily": "El Messiri, sans-serif", - "slug": "wp-font-lib-el-messiri", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXwe65ghj3OoapG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "El Messiri" - }, - { - "src": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXCe65ghj3OoapG.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "El Messiri" - }, - { - "src": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUufK5ghj3OoapG.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "El Messiri" - }, - { - "src": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUXfK5ghj3OoapG.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "El Messiri" - } - ] - }, - { - "name": "Electrolize", - "fontFamily": "Electrolize, sans-serif", - "slug": "wp-font-lib-electrolize", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/electrolize/v14/cIf5Ma1dtE0zSiGSiED7AUEGso5tQafB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Electrolize" - } - ] - }, - { - "name": "Elsie", - "fontFamily": "Elsie, system-ui", - "slug": "wp-font-lib-elsie", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/elsie/v13/BCanqZABrez54yYu9slAeLgX.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Elsie" - }, - { - "src": "http://fonts.gstatic.com/s/elsie/v13/BCaqqZABrez54x6q2-1IU6QeXSBk.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Elsie" - } - ] - }, - { - "name": "Elsie Swash Caps", - "fontFamily": "Elsie Swash Caps, system-ui", - "slug": "wp-font-lib-elsie-swash-caps", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/elsieswashcaps/v21/845DNN8xGZyVX5MVo_upKf7KnjK0ferVKGWsUo8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Elsie Swash Caps" - }, - { - "src": "http://fonts.gstatic.com/s/elsieswashcaps/v21/845ENN8xGZyVX5MVo_upKf7KnjK0RW74DG2HToawrdU.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Elsie Swash Caps" - } - ] - }, - { - "name": "Emblema One", - "fontFamily": "Emblema One, system-ui", - "slug": "wp-font-lib-emblema-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/emblemaone/v21/nKKT-GQ0F5dSY8vzG0rOEIRBHl57G_f_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Emblema One" - } - ] - }, - { - "name": "Emilys Candy", - "fontFamily": "Emilys Candy, system-ui", - "slug": "wp-font-lib-emilys-candy", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/emilyscandy/v14/2EbgL-1mD1Rnb0OGKudbk0y5r9xrX84JjA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Emilys Candy" - } - ] - }, - { - "name": "Encode Sans", - "fontFamily": "Encode Sans, sans-serif", - "slug": "wp-font-lib-encode-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHiZtWP7FJCt2c.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Encode Sans" - }, - { - "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHjZtWP7FJCt2c.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Encode Sans" - }, - { - "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGD_jZtWP7FJCt2c.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Encode Sans" - }, - { - "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjZtWP7FJCt2c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Encode Sans" - }, - { - "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGFPjZtWP7FJCt2c.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Encode Sans" - }, - { - "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGL_kZtWP7FJCt2c.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Encode Sans" - }, - { - "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGIbkZtWP7FJCt2c.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Encode Sans" - }, - { - "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHkZtWP7FJCt2c.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Encode Sans" - }, - { - "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGMjkZtWP7FJCt2c.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Encode Sans" - } - ] - }, - { - "name": "Encode Sans Condensed", - "fontFamily": "Encode Sans Condensed, sans-serif", - "slug": "wp-font-lib-encode-sans-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_76_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-5a-JLQoFI2KR.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-SY6pByQJKnuIFA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-LY2pByQJKnuIFA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGgaWNDw8VIw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-dYypByQJKnuIFA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-WYupByQJKnuIFA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-PYqpByQJKnuIFA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-IYmpByQJKnuIFA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-BYipByQJKnuIFA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed" - } - ] - }, - { - "name": "Encode Sans Expanded", - "fontFamily": "Encode Sans Expanded, sans-serif", - "slug": "wp-font-lib-encode-sans-expanded", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGKQNicoAbJlw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCCNIXIwSP0XD.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCyNIXIwSP0XD.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqoiIwdAd5Ab.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWCiNIXIwSP0XD.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DSNIXIwSP0XD.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDCNIXIwSP0XD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDyNIXIwSP0XD.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDiNIXIwSP0XD.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded" - } - ] - }, - { - "name": "Encode Sans SC", - "fontFamily": "Encode Sans SC, sans-serif", - "slug": "wp-font-lib-encode-sans-sc", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhn8c9NOEEClIc.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhm8c9NOEEClIc.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HCZm8c9NOEEClIc.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhm8c9NOEEClIc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HEpm8c9NOEEClIc.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HKZh8c9NOEEClIc.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HJ9h8c9NOEEClIc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhh8c9NOEEClIc.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HNFh8c9NOEEClIc.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC" - } - ] - }, - { - "name": "Encode Sans Semi Condensed", - "fontFamily": "Encode Sans Semi Condensed, sans-serif", - "slug": "wp-font-lib-encode-sans-semi-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT6oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1T19MFtQ9jpVUA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RZ1eFHbdTgTFmr.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Q91uFHbdTgTFmr.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yR_sVPRsjp.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Rl1-FHbdTgTFmr.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RJ0OFHbdTgTFmr.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qt0eFHbdTgTFmr.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qx0uFHbdTgTFmr.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1QV0-FHbdTgTFmr.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed" - } - ] - }, - { - "name": "Encode Sans Semi Expanded", - "fontFamily": "Encode Sans Semi Expanded, sans-serif", - "slug": "wp-font-lib-encode-sans-semi-expanded", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8xOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM-41KwrlKXeOEA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM0IUCyDLJX6XCWU.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyYXCyDLJX6XCWU.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC4o_LyjgOXc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM34WCyDLJX6XCWU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM1IRCyDLJX6XCWU.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMzYQCyDLJX6XCWU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyoTCyDLJX6XCWU.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMw4SCyDLJX6XCWU.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded" - } - ] - }, - { - "name": "Engagement", - "fontFamily": "Engagement, cursive", - "slug": "wp-font-lib-engagement", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/engagement/v22/x3dlckLDZbqa7RUs9MFVXNossybsHQI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Engagement" - } - ] - }, - { - "name": "Englebert", - "fontFamily": "Englebert, sans-serif", - "slug": "wp-font-lib-englebert", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/englebert/v17/xn7iYH8w2XGrC8AR4HSxT_fYdN-WZw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Englebert" - } - ] - }, - { - "name": "Enriqueta", - "fontFamily": "Enriqueta, serif", - "slug": "wp-font-lib-enriqueta", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/enriqueta/v15/goksH6L7AUFrRvV44HVTS0CjkP1Yog.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Enriqueta" - }, - { - "src": "http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVrv2mHmNZEq6TTFw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Enriqueta" - }, - { - "src": "http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVrk26HmNZEq6TTFw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Enriqueta" - }, - { - "src": "http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVr92-HmNZEq6TTFw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Enriqueta" - } - ] - }, - { - "name": "Ephesis", - "fontFamily": "Ephesis, cursive", - "slug": "wp-font-lib-ephesis", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ephesis/v7/uU9PCBUS8IerL2VG7xPb3vyHmlI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ephesis" - } - ] - }, - { - "name": "Epilogue", - "fontFamily": "Epilogue, sans-serif", - "slug": "wp-font-lib-epilogue", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDLiDJXVigHPVA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDPiDJXVigHPVA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXbjPiDJXVigHPVA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDPiDJXVigHPVA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXAjPiDJXVigHPVA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX7jTiDJXVigHPVA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX1zTiDJXVigHPVA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDTiDJXVigHPVA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXmTTiDJXVigHPVA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKTp_RqATfVHNU.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKT5_RqATfVHNU.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HBUT5_RqATfVHNU.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKT5_RqATfVHNU.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HA4T5_RqATfVHNU.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDUSJ_RqATfVHNU.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDtSJ_RqATfVHNU.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKSJ_RqATfVHNU.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCjSJ_RqATfVHNU.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Epilogue" - } - ] - }, - { - "name": "Erica One", - "fontFamily": "Erica One, system-ui", - "slug": "wp-font-lib-erica-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ericaone/v23/WBLnrEXccV9VGrOKmGD1W0_MJMGxiQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Erica One" - } - ] - }, - { - "name": "Esteban", - "fontFamily": "Esteban, serif", - "slug": "wp-font-lib-esteban", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/esteban/v15/r05bGLZE-bdGdN-GdOuD5jokU8E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Esteban" - } - ] - }, - { - "name": "Estonia", - "fontFamily": "Estonia, cursive", - "slug": "wp-font-lib-estonia", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/estonia/v9/7Au_p_4ijSecA1yHCCL8zkwMIFg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Estonia" - } - ] - }, - { - "name": "Euphoria Script", - "fontFamily": "Euphoria Script, cursive", - "slug": "wp-font-lib-euphoria-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/euphoriascript/v16/mFTpWb0X2bLb_cx6To2B8GpKoD5ak_ZT1D8x7Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Euphoria Script" - } - ] - }, - { - "name": "Ewert", - "fontFamily": "Ewert, system-ui", - "slug": "wp-font-lib-ewert", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ewert/v21/va9I4kzO2tFODYBvS-J3kbDP.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ewert" - } - ] - }, - { - "name": "Exo", - "fontFamily": "Exo, sans-serif", - "slug": "wp-font-lib-exo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM2CwNsOl4p5Is.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4tM3CwNsOl4p5Is.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4g03CwNsOl4p5Is.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3CwNsOl4p5Is.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4mE3CwNsOl4p5Is.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4o0wCwNsOl4p5Is.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4rQwCwNsOl4p5Is.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4tMwCwNsOl4p5Is.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4vowCwNsOl4p5Is.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t040FmPnws9Iu-uA.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0Y0BmPnws9Iu-uA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0vUBmPnws9Iu-uA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t040BmPnws9Iu-uA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t00UBmPnws9Iu-uA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0PUdmPnws9Iu-uA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0BEdmPnws9Iu-uA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0Y0dmPnws9Iu-uA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0SkdmPnws9Iu-uA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Exo" - } - ] - }, - { - "name": "Exo 2", - "fontFamily": "Exo 2, sans-serif", - "slug": "wp-font-lib-exo-2", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvOcPtq-rpvLpQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvKcPtq-rpvLpQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8j4PKcPtq-rpvLpQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvKcPtq-rpvLpQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jjPKcPtq-rpvLpQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jYPWcPtq-rpvLpQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jWfWcPtq-rpvLpQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvWcPtq-rpvLpQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jF_WcPtq-rpvLpQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fNC6jJ7bpQBL.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0fdC6jJ7bpQBL.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drEqfdC6jJ7bpQBL.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fdC6jJ7bpQBL.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drFGfdC6jJ7bpQBL.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGqetC6jJ7bpQBL.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGTetC6jJ7bpQBL.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0etC6jJ7bpQBL.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drHdetC6jJ7bpQBL.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Exo 2" - } - ] - }, - { - "name": "Expletus Sans", - "fontFamily": "Expletus Sans, system-ui", - "slug": "wp-font-lib-expletus-sans", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSY2s1oFQTcXfMm.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Expletus Sans" - }, - { - "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSq2s1oFQTcXfMm.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Expletus Sans" - }, - { - "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaRG3c1oFQTcXfMm.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Expletus Sans" - }, - { - "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaR_3c1oFQTcXfMm.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Expletus Sans" - }, - { - "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmSUrHwD-WOMmKKY.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Expletus Sans" - }, - { - "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmRcrHwD-WOMmKKY.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Expletus Sans" - }, - { - "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmfssHwD-WOMmKKY.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Expletus Sans" - }, - { - "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmcIsHwD-WOMmKKY.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Expletus Sans" - } - ] - }, - { - "name": "Explora", - "fontFamily": "Explora, cursive", - "slug": "wp-font-lib-explora", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/explora/v7/tsstApxFfjUH4wrvc1qPonC3vqc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Explora" - } - ] - }, - { - "name": "Fahkwang", - "fontFamily": "Fahkwang, sans-serif", - "slug": "wp-font-lib-fahkwang", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJHmZlRFipxkwjx.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Fahkwang" - }, - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgHFQHC5Tlhjxdw4.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Fahkwang" - }, - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIjmplRFipxkwjx.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Fahkwang" - }, - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgBVTHC5Tlhjxdw4.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Fahkwang" - }, - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noax6Uj3zpmBOgbNpNqPsr1ZPTZ4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fahkwang" - }, - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa36Uj3zpmBOgbNpOqNuLl7OCZ4ihE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fahkwang" - }, - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJ7m5lRFipxkwjx.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fahkwang" - }, - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgE1SHC5Tlhjxdw4.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Fahkwang" - }, - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJXnJlRFipxkwjx.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Fahkwang" - }, - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgGFVHC5Tlhjxdw4.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Fahkwang" - }, - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIznZlRFipxkwjx.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fahkwang" - }, - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgAVUHC5Tlhjxdw4.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Fahkwang" - } - ] - }, - { - "name": "Familjen Grotesk", - "fontFamily": "Familjen Grotesk, sans-serif", - "slug": "wp-font-lib-familjen-grotesk", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMGJaSztc1jcEYq2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Familjen Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMG7aSztc1jcEYq2.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Familjen Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFXbiztc1jcEYq2.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Familjen Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFubiztc1jcEYq2.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Familjen Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKsSueVz-FJq2Rv4.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Familjen Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKvaueVz-FJq2Rv4.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Familjen Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKhqpeVz-FJq2Rv4.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Familjen Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKiOpeVz-FJq2Rv4.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Familjen Grotesk" - } - ] - }, - { - "name": "Fanwood Text", - "fontFamily": "Fanwood Text, serif", - "slug": "wp-font-lib-fanwood-text", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fanwoodtext/v15/3XFtErwl05Ad_vSCF6Fq7xXGRdbY1P1Sbg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fanwood Text" - }, - { - "src": "http://fonts.gstatic.com/s/fanwoodtext/v15/3XFzErwl05Ad_vSCF6Fq7xX2R9zc9vhCblye.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fanwood Text" - } - ] - }, - { - "name": "Farro", - "fontFamily": "Farro, sans-serif", - "slug": "wp-font-lib-farro", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3hNJ6-WkJUQUq7.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Farro" - }, - { - "src": "http://fonts.gstatic.com/s/farro/v14/i7dEIFl3byGNHZVNHLq2cV5d.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Farro" - }, - { - "src": "http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa25NZ6-WkJUQUq7.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Farro" - }, - { - "src": "http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3xM56-WkJUQUq7.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Farro" - } - ] - }, - { - "name": "Farsan", - "fontFamily": "Farsan, system-ui", - "slug": "wp-font-lib-farsan", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/farsan/v19/VEMwRoJ0vY_zsyz62q-pxDX9rQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Farsan" - } - ] - }, - { - "name": "Fascinate", - "fontFamily": "Fascinate, system-ui", - "slug": "wp-font-lib-fascinate", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fascinate/v21/z7NWdRrufC8XJK0IIEli1LbQRPyNrw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fascinate" - } - ] - }, - { - "name": "Fascinate Inline", - "fontFamily": "Fascinate Inline, system-ui", - "slug": "wp-font-lib-fascinate-inline", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fascinateinline/v22/jVyR7mzzB3zc-jp6QCAu60poNqIy1g3CfRXxWZQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fascinate Inline" - } - ] - }, - { - "name": "Faster One", - "fontFamily": "Faster One, system-ui", - "slug": "wp-font-lib-faster-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fasterone/v19/H4ciBXCHmdfClFb-vWhfyLuShq63czE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Faster One" - } - ] - }, - { - "name": "Fasthand", - "fontFamily": "Fasthand, system-ui", - "slug": "wp-font-lib-fasthand", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fasthand/v26/0yb9GDohyKTYn_ZEESkuYkw2rQg1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fasthand" - } - ] - }, - { - "name": "Fauna One", - "fontFamily": "Fauna One, serif", - "slug": "wp-font-lib-fauna-one", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/faunaone/v15/wlpzgwTPBVpjpCuwkuEx2UxLYClOCg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fauna One" - } - ] - }, - { - "name": "Faustina", - "fontFamily": "Faustina, serif", - "slug": "wp-font-lib-faustina", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHls3IEvGVWWe8tbEg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Faustina" - }, - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsgoEvGVWWe8tbEg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Faustina" - }, - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlssIEvGVWWe8tbEg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Faustina" - }, - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsXIYvGVWWe8tbEg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Faustina" - }, - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsZYYvGVWWe8tbEg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Faustina" - }, - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsAoYvGVWWe8tbEg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Faustina" - }, - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsKZWl-SWc5LEnoF.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Faustina" - }, - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsLHWl-SWc5LEnoF.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Faustina" - }, - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsL1Wl-SWc5LEnoF.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Faustina" - }, - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIZXV-SWc5LEnoF.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Faustina" - }, - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIgXV-SWc5LEnoF.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Faustina" - }, - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsJHXV-SWc5LEnoF.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Faustina" - } - ] - }, - { - "name": "Federant", - "fontFamily": "Federant, system-ui", - "slug": "wp-font-lib-federant", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/federant/v25/2sDdZGNfip_eirT0_U0jRUG0AqUc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Federant" - } - ] - }, - { - "name": "Federo", - "fontFamily": "Federo, sans-serif", - "slug": "wp-font-lib-federo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/federo/v19/iJWFBX-cbD_ETsbmjVOe2WTG7Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Federo" - } - ] - }, - { - "name": "Felipa", - "fontFamily": "Felipa, cursive", - "slug": "wp-font-lib-felipa", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/felipa/v20/FwZa7-owz1Eu4F_wSNSEwM2zpA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Felipa" - } - ] - }, - { - "name": "Fenix", - "fontFamily": "Fenix, serif", - "slug": "wp-font-lib-fenix", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fenix/v20/XoHo2YL_S7-g5ostKzAFvs8o.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fenix" - } - ] - }, - { - "name": "Festive", - "fontFamily": "Festive, cursive", - "slug": "wp-font-lib-festive", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/festive/v7/cY9Ffj6KX1xcoDWhFtfgy9HTkak.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Festive" - } - ] - }, - { - "name": "Figtree", - "fontFamily": "Figtree, sans-serif", - "slug": "wp-font-lib-figtree", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_chQF5ewkEU4HTy.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5ewkEU4HTy.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5ewkEU4HTy.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15ewkEU4HTy.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_eYR15ewkEU4HTy.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_f_R15ewkEU4HTy.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_fWR15ewkEU4HTy.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A-gdyEU25WTybO8.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A7YdyEU25WTybO8.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A4QdyEU25WTybO8.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A2gayEU25WTybO8.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A1EayEU25WTybO8.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3AzYayEU25WTybO8.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3Ax8ayEU25WTybO8.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Figtree" - } - ] - }, - { - "name": "Finger Paint", - "fontFamily": "Finger Paint, system-ui", - "slug": "wp-font-lib-finger-paint", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fingerpaint/v15/0QInMXVJ-o-oRn_7dron8YWO85bS8ANesw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Finger Paint" - } - ] - }, - { - "name": "Finlandica", - "fontFamily": "Finlandica, sans-serif", - "slug": "wp-font-lib-finlandica", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19A7rEjx9i5ss3a3.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Finlandica" - }, - { - "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19AJrEjx9i5ss3a3.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Finlandica" - }, - { - "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dlq0jx9i5ss3a3.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Finlandica" - }, - { - "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dcq0jx9i5ss3a3.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Finlandica" - }, - { - "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz76Cy_CpOtma3uNQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Finlandica" - }, - { - "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz75Ky_CpOtma3uNQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Finlandica" - }, - { - "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz7361_CpOtma3uNQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Finlandica" - }, - { - "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz70e1_CpOtma3uNQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Finlandica" - } - ] - }, - { - "name": "Fira Code", - "fontFamily": "Fira Code, monospace", - "slug": "wp-font-lib-fira-code", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_GNsFVfxN87gsj0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Fira Code" - }, - { - "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sFVfxN87gsj0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fira Code" - }, - { - "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_A9sFVfxN87gsj0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fira Code" - }, - { - "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_ONrFVfxN87gsj0.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Fira Code" - }, - { - "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_NprFVfxN87gsj0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fira Code" - } - ] - }, - { - "name": "Fira Mono", - "fontFamily": "Fira Mono, monospace", - "slug": "wp-font-lib-fira-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/firamono/v14/N0bX2SlFPv1weGeLZDtQIfTTkdbJYA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fira Mono" - }, - { - "src": "http://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDto1d33mf3VaZBRBQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fira Mono" - }, - { - "src": "http://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDtondv3mf3VaZBRBQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fira Mono" - } - ] - }, - { - "name": "Fira Sans", - "fontFamily": "Fira Sans, sans-serif", - "slug": "wp-font-lib-fira-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9C4kDNxMZdWfMOD5Vn9IjOazP3dUTP.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9A4kDNxMZdWfMOD5VvkrCqYTfVcFTPj0s.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnWKnuQR37fF3Wlg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrAGQBf_XljGllLX.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnPKruQR37fF3Wlg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBiQxf_XljGllLX.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9E4kDNxMZdWfMOD5VfkILKSTbndQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9C4kDNxMZdWfMOD5VvkojOazP3dUTP.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnZKvuQR37fF3Wlg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrA6Qhf_XljGllLX.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnSKzuQR37fF3Wlg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrAWRRf_XljGllLX.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnLK3uQR37fF3Wlg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrByRBf_XljGllLX.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnMK7uQR37fF3Wlg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBuRxf_XljGllLX.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnFK_uQR37fF3Wlg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBKRhf_XljGllLX.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Fira Sans" - } - ] - }, - { - "name": "Fira Sans Condensed", - "fontFamily": "Fira Sans Condensed, sans-serif", - "slug": "wp-font-lib-fira-sans-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarWZXtqOlQfx9CjA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOtEADFm8hSaQTFG18FErVhsC9x-tarUfPVzONUXRpSjJcu.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWTnMiMN-cxZblY4.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVYMJ0dzRehY43EA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWV3PiMN-cxZblY4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVBMF0dzRehY43EA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfHnrMtVbx8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarUfPtqOlQfx9CjA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWQXOiMN-cxZblY4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVXMB0dzRehY43EA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWSnJiMN-cxZblY4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVcMd0dzRehY43EA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWU3IiMN-cxZblY4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVFMZ0dzRehY43EA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWVHLiMN-cxZblY4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVCMV0dzRehY43EA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWXXKiMN-cxZblY4.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVLMR0dzRehY43EA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed" - } - ] - }, - { - "name": "Fira Sans Extra Condensed", - "fontFamily": "Fira Sans Extra Condensed, sans-serif", - "slug": "wp-font-lib-fira-sans-extra-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3Zyuv1WarE9ncg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPOcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqW21-ejkp3cn22.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3TCPn3-0oEZ-a2Q.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWd36-pGR7e2SvJQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3VSMn3-0oEZ-a2Q.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWE32-pGR7e2SvJQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5fiku3efvE8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fquv1WarE9ncg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3QyNn3-0oEZ-a2Q.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWS3y-pGR7e2SvJQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3SCKn3-0oEZ-a2Q.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWZ3u-pGR7e2SvJQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3USLn3-0oEZ-a2Q.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWA3q-pGR7e2SvJQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3ViIn3-0oEZ-a2Q.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWH3m-pGR7e2SvJQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3XyJn3-0oEZ-a2Q.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWO3i-pGR7e2SvJQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed" - } - ] - }, - { - "name": "Fjalla One", - "fontFamily": "Fjalla One, sans-serif", - "slug": "wp-font-lib-fjalla-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fjallaone/v15/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fjalla One" - } - ] - }, - { - "name": "Fjord One", - "fontFamily": "Fjord One, serif", - "slug": "wp-font-lib-fjord-one", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fjordone/v21/zOL-4pbEnKBY_9S1jNKr6e5As-FeiQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fjord One" - } - ] - }, - { - "name": "Flamenco", - "fontFamily": "Flamenco, system-ui", - "slug": "wp-font-lib-flamenco", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/flamenco/v18/neIPzCehqYguo67ssZ0qNIkyepH9qGsf.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Flamenco" - }, - { - "src": "http://fonts.gstatic.com/s/flamenco/v18/neIIzCehqYguo67ssaWGHK06UY30.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Flamenco" - } - ] - }, - { - "name": "Flavors", - "fontFamily": "Flavors, system-ui", - "slug": "wp-font-lib-flavors", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/flavors/v22/FBV2dDrhxqmveJTpbkzlNqkG9UY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Flavors" - } - ] - }, - { - "name": "Fleur De Leah", - "fontFamily": "Fleur De Leah, cursive", - "slug": "wp-font-lib-fleur-de-leah", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fleurdeleah/v7/AYCNpXX7ftYZWLhv9UmPJTMC5vat4I_Gdq0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fleur De Leah" - } - ] - }, - { - "name": "Flow Block", - "fontFamily": "Flow Block, system-ui", - "slug": "wp-font-lib-flow-block", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/flowblock/v7/wlp0gwfPCEB65UmTk-d6-WZlbCBXE_I.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Flow Block" - } - ] - }, - { - "name": "Flow Circular", - "fontFamily": "Flow Circular, system-ui", - "slug": "wp-font-lib-flow-circular", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/flowcircular/v7/lJwB-pc4j2F-H8YKuyvfxdZ45ifpWdr2rIg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Flow Circular" - } - ] - }, - { - "name": "Flow Rounded", - "fontFamily": "Flow Rounded, system-ui", - "slug": "wp-font-lib-flow-rounded", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/flowrounded/v7/-zki91mtwsU9qlLiGwD4oQX3oZX-Xup87g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Flow Rounded" - } - ] - }, - { - "name": "Foldit", - "fontFamily": "Foldit, system-ui", - "slug": "wp-font-lib-foldit", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XpANmapUYLHkN80.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Foldit" - }, - { - "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XhAMmapUYLHkN80.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Foldit" - }, - { - "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8Xs4MmapUYLHkN80.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Foldit" - }, - { - "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XpAMmapUYLHkN80.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Foldit" - }, - { - "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XqIMmapUYLHkN80.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Foldit" - }, - { - "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8Xk4LmapUYLHkN80.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Foldit" - }, - { - "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XncLmapUYLHkN80.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Foldit" - }, - { - "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XhALmapUYLHkN80.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Foldit" - }, - { - "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XjkLmapUYLHkN80.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Foldit" - } - ] - }, - { - "name": "Fondamento", - "fontFamily": "Fondamento, cursive", - "slug": "wp-font-lib-fondamento", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fondamento/v17/4UaHrEJGsxNmFTPDnkaJx63j5pN1MwI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fondamento" - }, - { - "src": "http://fonts.gstatic.com/s/fondamento/v17/4UaFrEJGsxNmFTPDnkaJ96_p4rFwIwJePw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fondamento" - } - ] - }, - { - "name": "Fontdiner Swanky", - "fontFamily": "Fontdiner Swanky, system-ui", - "slug": "wp-font-lib-fontdiner-swanky", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fontdinerswanky/v19/ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uEfKiGvxts.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fontdiner Swanky" - } - ] - }, - { - "name": "Forum", - "fontFamily": "Forum, system-ui", - "slug": "wp-font-lib-forum", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/forum/v16/6aey4Ky-Vb8Ew_IWMJMa3mnT.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Forum" - } - ] - }, - { - "name": "Fragment Mono", - "fontFamily": "Fragment Mono, monospace", - "slug": "wp-font-lib-fragment-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fragmentmono/v1/4iCr6K5wfMRRjxp0DA6-2CLnN4RNh4UI_1U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fragment Mono" - }, - { - "src": "http://fonts.gstatic.com/s/fragmentmono/v1/4iC16K5wfMRRjxp0DA6-2CLnB4ZHg6cN71URtQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fragment Mono" - } - ] - }, - { - "name": "Francois One", - "fontFamily": "Francois One, sans-serif", - "slug": "wp-font-lib-francois-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/francoisone/v21/_Xmr-H4zszafZw3A-KPSZutNxgKQu_avAg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Francois One" - } - ] - }, - { - "name": "Frank Ruhl Libre", - "fontFamily": "Frank Ruhl Libre, serif", - "slug": "wp-font-lib-frank-ruhl-libre", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw6bYVqQPxR2EUR_.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Frank Ruhl Libre" - }, - { - "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw7FYVqQPxR2EUR_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Frank Ruhl Libre" - }, - { - "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw73YVqQPxR2EUR_.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Frank Ruhl Libre" - }, - { - "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw4bZlqQPxR2EUR_.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Frank Ruhl Libre" - }, - { - "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw4iZlqQPxR2EUR_.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Frank Ruhl Libre" - }, - { - "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw5FZlqQPxR2EUR_.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Frank Ruhl Libre" - }, - { - "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw5sZlqQPxR2EUR_.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Frank Ruhl Libre" - } - ] - }, - { - "name": "Fraunces", - "fontFamily": "Fraunces, serif", - "slug": "wp-font-lib-fraunces", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxqjDvTShUtWNg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxujDvTShUtWNg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIc6RujDvTShUtWNg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxujDvTShUtWNg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIchRujDvTShUtWNg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcaRyjDvTShUtWNg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcUByjDvTShUtWNg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxyjDvTShUtWNg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcHhyjDvTShUtWNg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTP7Wp05GNi3k.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLTf7Wp05GNi3k.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1gVTf7Wp05GNi3k.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTf7Wp05GNi3k.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1h5Tf7Wp05GNi3k.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1iVSv7Wp05GNi3k.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1isSv7Wp05GNi3k.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLSv7Wp05GNi3k.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jiSv7Wp05GNi3k.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Fraunces" - } - ] - }, - { - "name": "Freckle Face", - "fontFamily": "Freckle Face, system-ui", - "slug": "wp-font-lib-freckle-face", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/freckleface/v15/AMOWz4SXrmKHCvXTohxY-YI0U1K2w9lb4g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Freckle Face" - } - ] - }, - { - "name": "Fredericka the Great", - "fontFamily": "Fredericka the Great, system-ui", - "slug": "wp-font-lib-fredericka-the-great", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/frederickathegreat/v16/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Skz7Ylch2L.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fredericka the Great" - } - ] - }, - { - "name": "Fredoka", - "fontFamily": "Fredoka, sans-serif", - "slug": "wp-font-lib-fredoka", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OryLMFuOLlNldbw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Fredoka" - }, - { - "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3O8SLMFuOLlNldbw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fredoka" - }, - { - "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OwyLMFuOLlNldbw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fredoka" - }, - { - "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OLyXMFuOLlNldbw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Fredoka" - }, - { - "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OFiXMFuOLlNldbw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fredoka" - } - ] - }, - { - "name": "Freehand", - "fontFamily": "Freehand, system-ui", - "slug": "wp-font-lib-freehand", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/freehand/v27/cIf-Ma5eqk01VjKTgAmBTmUOmZJk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Freehand" - } - ] - }, - { - "name": "Fresca", - "fontFamily": "Fresca, sans-serif", - "slug": "wp-font-lib-fresca", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fresca/v18/6ae94K--SKgCzbM2Gr0W13DKPA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fresca" - } - ] - }, - { - "name": "Frijole", - "fontFamily": "Frijole, system-ui", - "slug": "wp-font-lib-frijole", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/frijole/v14/uU9PCBUR8oakM2BQ7xPb3vyHmlI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Frijole" - } - ] - }, - { - "name": "Fruktur", - "fontFamily": "Fruktur, system-ui", - "slug": "wp-font-lib-fruktur", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fruktur/v27/SZc53FHsOru5QYsMfz3GkUrS8DI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fruktur" - }, - { - "src": "http://fonts.gstatic.com/s/fruktur/v27/SZc73FHsOru5QYsMTz_MlWjX4DJXgQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fruktur" - } - ] - }, - { - "name": "Fugaz One", - "fontFamily": "Fugaz One, system-ui", - "slug": "wp-font-lib-fugaz-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fugazone/v15/rax_HiWKp9EAITukFslMBBJek0vA8A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fugaz One" - } - ] - }, - { - "name": "Fuggles", - "fontFamily": "Fuggles, cursive", - "slug": "wp-font-lib-fuggles", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fuggles/v9/k3kQo8UEJOlD1hpOTd7iL0nAMaM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fuggles" - } - ] - }, - { - "name": "Fuzzy Bubbles", - "fontFamily": "Fuzzy Bubbles, cursive", - "slug": "wp-font-lib-fuzzy-bubbles", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fuzzybubbles/v5/6qLGKZMbrgv9pwtjPEVNV0F2NnP5Zxsreko.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fuzzy Bubbles" - }, - { - "src": "http://fonts.gstatic.com/s/fuzzybubbles/v5/6qLbKZMbrgv9pwtjPEVNV0F2Ds_WQxMAZkM1pn4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fuzzy Bubbles" - } - ] - }, - { - "name": "GFS Didot", - "fontFamily": "GFS Didot, serif", - "slug": "wp-font-lib-gfs-didot", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gfsdidot/v15/Jqzh5TybZ9vZMWFssvwiF-fGFSCGAA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "GFS Didot" - } - ] - }, - { - "name": "GFS Neohellenic", - "fontFamily": "GFS Neohellenic, sans-serif", - "slug": "wp-font-lib-gfs-neohellenic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIRdiDOrfiq0b7R8O1Iw9WLcY5TLahP46UDUw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "GFS Neohellenic" - }, - { - "src": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QITdiDOrfiq0b7R8O1Iw9WLcY5jL6JLwaATU91X.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "GFS Neohellenic" - }, - { - "src": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIUdiDOrfiq0b7R8O1Iw9WLcY5rkYdr644fWsRO9w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "GFS Neohellenic" - }, - { - "src": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIWdiDOrfiq0b7R8O1Iw9WLcY5jL5r37oQbeMFe985V.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "GFS Neohellenic" - } - ] - }, - { - "name": "Gabriela", - "fontFamily": "Gabriela, serif", - "slug": "wp-font-lib-gabriela", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gabriela/v17/qkBWXvsO6sreR8E-b_m-zrpHmRzC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gabriela" - } - ] - }, - { - "name": "Gaegu", - "fontFamily": "Gaegu, cursive", - "slug": "wp-font-lib-gaegu", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gaegu/v15/TuGSUVB6Up9NU57nifw74sdtBk0x.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Gaegu" - }, - { - "src": "http://fonts.gstatic.com/s/gaegu/v15/TuGfUVB6Up9NU6ZLodgzydtk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gaegu" - }, - { - "src": "http://fonts.gstatic.com/s/gaegu/v15/TuGSUVB6Up9NU573jvw74sdtBk0x.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gaegu" - } - ] - }, - { - "name": "Gafata", - "fontFamily": "Gafata, sans-serif", - "slug": "wp-font-lib-gafata", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gafata/v16/XRXV3I6Cn0VJKon4MuyAbsrVcA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gafata" - } - ] - }, - { - "name": "Gajraj One", - "fontFamily": "Gajraj One, system-ui", - "slug": "wp-font-lib-gajraj-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gajrajone/v3/1cX2aUDCDpXsuWVb1jIjr1GqhcitzeM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gajraj One" - } - ] - }, - { - "name": "Galada", - "fontFamily": "Galada, system-ui", - "slug": "wp-font-lib-galada", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/galada/v14/H4cmBXyGmcjXlUX-8iw-4Lqggw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Galada" - } - ] - }, - { - "name": "Galdeano", - "fontFamily": "Galdeano, sans-serif", - "slug": "wp-font-lib-galdeano", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/galdeano/v22/uU9MCBoQ4YOqOW1boDPx8PCOg0uX.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Galdeano" - } - ] - }, - { - "name": "Galindo", - "fontFamily": "Galindo, system-ui", - "slug": "wp-font-lib-galindo", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/galindo/v20/HI_KiYMeLqVKqwyuQ5HiRp-dhpQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Galindo" - } - ] - }, - { - "name": "Gamja Flower", - "fontFamily": "Gamja Flower, cursive", - "slug": "wp-font-lib-gamja-flower", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gamjaflower/v20/6NUR8FiKJg-Pa0rM6uN40Z4kyf9Fdty2ew.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gamja Flower" - } - ] - }, - { - "name": "Gantari", - "fontFamily": "Gantari, sans-serif", - "slug": "wp-font-lib-gantari", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOz3wa5GD2qnm.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gOj3wa5GD2qnm.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g1-Oj3wa5GD2qnm.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOj3wa5GD2qnm.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0SOj3wa5GD2qnm.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3-PT3wa5GD2qnm.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3HPT3wa5GD2qnm.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gPT3wa5GD2qnm.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2JPT3wa5GD2qnm.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWyYZWh37nmpWc.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVWzYZWh37nmpWc.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeYuzYZWh37nmpWc.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWzYZWh37nmpWc.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeeezYZWh37nmpWc.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeQu0YZWh37nmpWc.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeTK0YZWh37nmpWc.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVW0YZWh37nmpWc.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeXy0YZWh37nmpWc.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Gantari" - } - ] - }, - { - "name": "Gayathri", - "fontFamily": "Gayathri, sans-serif", - "slug": "wp-font-lib-gayathri", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gayathri/v15/MCoWzAb429DbBilWLLhc-pvSA_gA2W8.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Gayathri" - }, - { - "src": "http://fonts.gstatic.com/s/gayathri/v15/MCoQzAb429DbBilWLIA48J_wBugA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gayathri" - }, - { - "src": "http://fonts.gstatic.com/s/gayathri/v15/MCoXzAb429DbBilWLLiE37v4LfQJwHbn.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gayathri" - } - ] - }, - { - "name": "Gelasio", - "fontFamily": "Gelasio, serif", - "slug": "wp-font-lib-gelasio", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf9MaFfvUQxTTqSxCmrYGkHgIs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gelasio" - }, - { - "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf_MaFfvUQxTTqS9CuhZEsCkIt9QQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Gelasio" - }, - { - "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_N2CRGEsnIJkWL4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Gelasio" - }, - { - "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZkGImmKBhSL7Y1Q.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Gelasio" - }, - { - "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_PGFRGEsnIJkWL4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Gelasio" - }, - { - "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZvGUmmKBhSL7Y1Q.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Gelasio" - }, - { - "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_JWERGEsnIJkWL4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gelasio" - }, - { - "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZ2GQmmKBhSL7Y1Q.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Gelasio" - } - ] - }, - { - "name": "Gemunu Libre", - "fontFamily": "Gemunu Libre, sans-serif", - "slug": "wp-font-lib-gemunu-libre", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iJPvSLeMXPIWA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Gemunu Libre" - }, - { - "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp00aJPvSLeMXPIWA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Gemunu Libre" - }, - { - "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0xiJPvSLeMXPIWA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gemunu Libre" - }, - { - "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0yqJPvSLeMXPIWA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Gemunu Libre" - }, - { - "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp08aOPvSLeMXPIWA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Gemunu Libre" - }, - { - "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0_-OPvSLeMXPIWA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gemunu Libre" - }, - { - "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iOPvSLeMXPIWA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Gemunu Libre" - } - ] - }, - { - "name": "Genos", - "fontFamily": "Genos, sans-serif", - "slug": "wp-font-lib-genos", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVqknorUK6K7ZsAg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVKkjorUK6K7ZsAg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwV9EjorUK6K7ZsAg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVqkjorUK6K7ZsAg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVmEjorUK6K7ZsAg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVdE_orUK6K7ZsAg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVTU_orUK6K7ZsAg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVKk_orUK6K7ZsAg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVA0_orUK6K7ZsAg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA70i-CbN8Ard7.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA7ki-CbN8Ard7.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgte7ki-CbN8Ard7.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA7ki-CbN8Ard7.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsy7ki-CbN8Ard7.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgve6Ui-CbN8Ard7.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgvn6Ui-CbN8Ard7.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA6Ui-CbN8Ard7.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgup6Ui-CbN8Ard7.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Genos" - } - ] - }, - { - "name": "Gentium Book Plus", - "fontFamily": "Gentium Book Plus, serif", - "slug": "wp-font-lib-gentium-book-plus", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFL2-RHBgUK5fbjKxRpbBtJPyRpofKfdbLOrdPV.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gentium Book Plus" - }, - { - "src": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFN2-RHBgUK5fbjKxRpbBtJPyRpocKdf7bsqMPVZb4.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Gentium Book Plus" - }, - { - "src": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFO2-RHBgUK5fbjKxRpbBtJPyRpocojWpbGhs_cfKe1.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gentium Book Plus" - }, - { - "src": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFA2-RHBgUK5fbjKxRpbBtJPyRpocKdRwrDjMv-ebe1Els.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Gentium Book Plus" - } - ] - }, - { - "name": "Gentium Plus", - "fontFamily": "Gentium Plus, serif", - "slug": "wp-font-lib-gentium-plus", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gentiumplus/v2/Iurd6Ytw-oSPaZ00r2bNe8VpjJtM6G0t9w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gentium Plus" - }, - { - "src": "http://fonts.gstatic.com/s/gentiumplus/v2/IurD6Ytw-oSPaZ00r2bNe8VZjpFIymg9957e.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Gentium Plus" - }, - { - "src": "http://fonts.gstatic.com/s/gentiumplus/v2/IurC6Ytw-oSPaZ00r2bNe8VRMLRo4EYx_ofHsw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gentium Plus" - }, - { - "src": "http://fonts.gstatic.com/s/gentiumplus/v2/IurA6Ytw-oSPaZ00r2bNe8VZjqn05Uw13ILXs-h6.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Gentium Plus" - } - ] - }, - { - "name": "Geo", - "fontFamily": "Geo, sans-serif", - "slug": "wp-font-lib-geo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/geo/v19/CSRz4zRZlufVL3BmQjlCbQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Geo" - }, - { - "src": "http://fonts.gstatic.com/s/geo/v19/CSRx4zRZluflLXpiYDxSbf8r.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Geo" - } - ] - }, - { - "name": "Geologica", - "fontFamily": "Geologica, sans-serif", - "slug": "wp-font-lib-geologica", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqDx_qQ-MYAXWnqFs.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Geologica" - }, - { - "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD5_rQ-MYAXWnqFs.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Geologica" - }, - { - "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD0HrQ-MYAXWnqFs.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Geologica" - }, - { - "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqDx_rQ-MYAXWnqFs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Geologica" - }, - { - "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqDy3rQ-MYAXWnqFs.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Geologica" - }, - { - "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD8HsQ-MYAXWnqFs.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Geologica" - }, - { - "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD_jsQ-MYAXWnqFs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Geologica" - }, - { - "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD5_sQ-MYAXWnqFs.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Geologica" - }, - { - "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD7bsQ-MYAXWnqFs.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Geologica" - } - ] - }, - { - "name": "Georama", - "fontFamily": "Georama, sans-serif", - "slug": "wp-font-lib-georama", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvktmQsL5_tgbg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mvgtmQsL5_tgbg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5RPgtmQsL5_tgbg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvgtmQsL5_tgbg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5KPgtmQsL5_tgbg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5xP8tmQsL5_tgbg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5_f8tmQsL5_tgbg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mv8tmQsL5_tgbg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5s_8tmQsL5_tgbg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2wEPxf5wbh3T.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF2gEPxf5wbh3T.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rub2gEPxf5wbh3T.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2gEPxf5wbh3T.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rv32gEPxf5wbh3T.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsb3QEPxf5wbh3T.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsi3QEPxf5wbh3T.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF3QEPxf5wbh3T.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rts3QEPxf5wbh3T.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Georama" - } - ] - }, - { - "name": "Geostar", - "fontFamily": "Geostar, system-ui", - "slug": "wp-font-lib-geostar", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/geostar/v22/sykz-yx4n701VLOftSq9-trEvlQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Geostar" - } - ] - }, - { - "name": "Geostar Fill", - "fontFamily": "Geostar Fill, system-ui", - "slug": "wp-font-lib-geostar-fill", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/geostarfill/v22/AMOWz4SWuWiXFfjEohxQ9os0U1K2w9lb4g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Geostar Fill" - } - ] - }, - { - "name": "Germania One", - "fontFamily": "Germania One, system-ui", - "slug": "wp-font-lib-germania-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/germaniaone/v20/Fh4yPjrqIyv2ucM2qzBjeS3ezAJONau6ew.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Germania One" - } - ] - }, - { - "name": "Gideon Roman", - "fontFamily": "Gideon Roman, system-ui", - "slug": "wp-font-lib-gideon-roman", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gideonroman/v8/e3tmeuGrVOys8sxzZgWlmXoge0PWovdU4w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gideon Roman" - } - ] - }, - { - "name": "Gidugu", - "fontFamily": "Gidugu, sans-serif", - "slug": "wp-font-lib-gidugu", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gidugu/v21/L0x8DFMkk1Uf6w3RvPCmRSlUig.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gidugu" - } - ] - }, - { - "name": "Gilda Display", - "fontFamily": "Gilda Display, serif", - "slug": "wp-font-lib-gilda-display", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gildadisplay/v14/t5tmIRoYMoaYG0WEOh7HwMeR7TnFrpOHYh4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gilda Display" - } - ] - }, - { - "name": "Girassol", - "fontFamily": "Girassol, system-ui", - "slug": "wp-font-lib-girassol", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/girassol/v17/JTUUjIo_-DK48laaNC9Nz2pJzxbi.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Girassol" - } - ] - }, - { - "name": "Give You Glory", - "fontFamily": "Give You Glory, cursive", - "slug": "wp-font-lib-give-you-glory", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/giveyouglory/v15/8QIQdiHOgt3vv4LR7ahjw9-XYc1zB4ZD6rwa.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Give You Glory" - } - ] - }, - { - "name": "Glass Antiqua", - "fontFamily": "Glass Antiqua, system-ui", - "slug": "wp-font-lib-glass-antiqua", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/glassantiqua/v20/xfu30Wr0Wn3NOQM2piC0uXOjnL_wN6fRUkY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Glass Antiqua" - } - ] - }, - { - "name": "Glegoo", - "fontFamily": "Glegoo, serif", - "slug": "wp-font-lib-glegoo", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/glegoo/v14/_Xmt-HQyrTKWaw2Ji6mZAI91xw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Glegoo" - }, - { - "src": "http://fonts.gstatic.com/s/glegoo/v14/_Xmu-HQyrTKWaw2xN4a9CKRpzimMsg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Glegoo" - } - ] - }, - { - "name": "Gloock", - "fontFamily": "Gloock, serif", - "slug": "wp-font-lib-gloock", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gloock/v2/Iurb6YFw84WUY4N5jxylBrdRjQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gloock" - } - ] - }, - { - "name": "Gloria Hallelujah", - "fontFamily": "Gloria Hallelujah, cursive", - "slug": "wp-font-lib-gloria-hallelujah", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gloriahallelujah/v17/LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy3TKEvkCF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gloria Hallelujah" - } - ] - }, - { - "name": "Glory", - "fontFamily": "Glory, sans-serif", - "slug": "wp-font-lib-glory", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQwIiDpn-dDi9EOQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQQImDpn-dDi9EOQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQnomDpn-dDi9EOQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQwImDpn-dDi9EOQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQ8omDpn-dDi9EOQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQHo6Dpn-dDi9EOQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQJ46Dpn-dDi9EOQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQQI6Dpn-dDi9EOQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMo15XWZLCpUOaM6.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMq14nWZLCpUOaM6.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Glory" - } - ] - }, - { - "name": "Gluten", - "fontFamily": "Gluten, system-ui", - "slug": "wp-font-lib-gluten", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7B1Luni7ciJh.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Gluten" - }, - { - "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb7R1Luni7ciJh.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Gluten" - }, - { - "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8UF7R1Luni7ciJh.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Gluten" - }, - { - "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7R1Luni7ciJh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gluten" - }, - { - "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vp7R1Luni7ciJh.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Gluten" - }, - { - "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8WF6h1Luni7ciJh.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Gluten" - }, - { - "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8W86h1Luni7ciJh.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gluten" - }, - { - "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb6h1Luni7ciJh.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Gluten" - }, - { - "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xy6h1Luni7ciJh.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Gluten" - } - ] - }, - { - "name": "Goblin One", - "fontFamily": "Goblin One, system-ui", - "slug": "wp-font-lib-goblin-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/goblinone/v22/CSR64z1ZnOqZRjRCBVY_TOcATNt_pOU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Goblin One" - } - ] - }, - { - "name": "Gochi Hand", - "fontFamily": "Gochi Hand, cursive", - "slug": "wp-font-lib-gochi-hand", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gochihand/v19/hES06XlsOjtJsgCkx1PkTo71-n0nXWA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gochi Hand" - } - ] - }, - { - "name": "Goldman", - "fontFamily": "Goldman, system-ui", - "slug": "wp-font-lib-goldman", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/goldman/v16/pe0uMIWbN4JFplR2LDJ4Bt-7G98.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Goldman" - }, - { - "src": "http://fonts.gstatic.com/s/goldman/v16/pe0rMIWbN4JFplR2FI5XIteQB9Zra1U.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Goldman" - } - ] - }, - { - "name": "Golos Text", - "fontFamily": "Golos Text, sans-serif", - "slug": "wp-font-lib-golos-text", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVRRQ5cEr8zXcyx.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Golos Text" - }, - { - "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVjRQ5cEr8zXcyx.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Golos Text" - }, - { - "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plWPQg5cEr8zXcyx.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Golos Text" - }, - { - "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plW2Qg5cEr8zXcyx.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Golos Text" - }, - { - "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plXRQg5cEr8zXcyx.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Golos Text" - }, - { - "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plX4Qg5cEr8zXcyx.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Golos Text" - } - ] - }, - { - "name": "Gorditas", - "fontFamily": "Gorditas, system-ui", - "slug": "wp-font-lib-gorditas", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gorditas/v20/ll8_K2aTVD26DsPEtQDoDa4AlxYb.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gorditas" - }, - { - "src": "http://fonts.gstatic.com/s/gorditas/v20/ll84K2aTVD26DsPEtThUIooIvAoShA1i.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gorditas" - } - ] - }, - { - "name": "Gothic A1", - "fontFamily": "Gothic A1, sans-serif", - "slug": "wp-font-lib-gothic-a1", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR74z5ZnPydRjlCCwlCCMcqYtd2vfwk.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Gothic A1" - }, - { - "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCpOYKSPl6tOU9Eg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Gothic A1" - }, - { - "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCwOUKSPl6tOU9Eg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Gothic A1" - }, - { - "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR94z5ZnPydRjlCCwl6bM0uQNJmvQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gothic A1" - }, - { - "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCmOQKSPl6tOU9Eg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Gothic A1" - }, - { - "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCtOMKSPl6tOU9Eg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Gothic A1" - }, - { - "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC0OIKSPl6tOU9Eg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gothic A1" - }, - { - "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCzOEKSPl6tOU9Eg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Gothic A1" - }, - { - "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC6OAKSPl6tOU9Eg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Gothic A1" - } - ] - }, - { - "name": "Gotu", - "fontFamily": "Gotu, sans-serif", - "slug": "wp-font-lib-gotu", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gotu/v14/o-0FIpksx3QOlH0Lioh6-hU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gotu" - } - ] - }, - { - "name": "Goudy Bookletter 1911", - "fontFamily": "Goudy Bookletter 1911, serif", - "slug": "wp-font-lib-goudy-bookletter-1911", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/goudybookletter1911/v15/sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5tRbXZ4IXAA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Goudy Bookletter 1911" - } - ] - }, - { - "name": "Gowun Batang", - "fontFamily": "Gowun Batang, serif", - "slug": "wp-font-lib-gowun-batang", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gowunbatang/v7/ijwSs5nhRMIjYsdSgcMa3wRhXLH-yuAtLw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gowun Batang" - }, - { - "src": "http://fonts.gstatic.com/s/gowunbatang/v7/ijwNs5nhRMIjYsdSgcMa3wRZ4J7awssxJii23w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gowun Batang" - } - ] - }, - { - "name": "Gowun Dodum", - "fontFamily": "Gowun Dodum, sans-serif", - "slug": "wp-font-lib-gowun-dodum", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gowundodum/v7/3Jn5SD_00GqwlBnWc1TUJF0FfORL0fNy.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gowun Dodum" - } - ] - }, - { - "name": "Graduate", - "fontFamily": "Graduate, system-ui", - "slug": "wp-font-lib-graduate", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/graduate/v13/C8cg4cs3o2n15t_2YxgR6X2NZAn2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Graduate" - } - ] - }, - { - "name": "Grand Hotel", - "fontFamily": "Grand Hotel, cursive", - "slug": "wp-font-lib-grand-hotel", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/grandhotel/v14/7Au7p_IgjDKdCRWuR1azpmQNEl0O0kEx.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Grand Hotel" - } - ] - }, - { - "name": "Grandstander", - "fontFamily": "Grandstander, system-ui", - "slug": "wp-font-lib-grandstander", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1-_D3jWttFGmQk.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9--D3jWttFGmQk.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQDwG-D3jWttFGmQk.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1--D3jWttFGmQk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD22-D3jWttFGmQk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD4G5D3jWttFGmQk.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD7i5D3jWttFGmQk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9-5D3jWttFGmQk.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD_a5D3jWttFGmQk.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zrcsvNDiQlBYQ.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzvcsvNDiQlBYQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9uTvcsvNDiQlBYQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zvcsvNDiQlBYQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf91TvcsvNDiQlBYQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9OTzcsvNDiQlBYQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ADzcsvNDiQlBYQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzzcsvNDiQlBYQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9TjzcsvNDiQlBYQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Grandstander" - } - ] - }, - { - "name": "Grape Nuts", - "fontFamily": "Grape Nuts, cursive", - "slug": "wp-font-lib-grape-nuts", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/grapenuts/v2/syk2-yF4iLM2RfKj4F7k3tLvol2RN1E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Grape Nuts" - } - ] - }, - { - "name": "Gravitas One", - "fontFamily": "Gravitas One, system-ui", - "slug": "wp-font-lib-gravitas-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gravitasone/v15/5h1diZ4hJ3cblKy3LWakKQmaDWRNr3DzbQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gravitas One" - } - ] - }, - { - "name": "Great Vibes", - "fontFamily": "Great Vibes, cursive", - "slug": "wp-font-lib-great-vibes", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/greatvibes/v15/RWmMoKWR9v4ksMfaWd_JN-XCg6UKDXlq.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Great Vibes" - } - ] - }, - { - "name": "Grechen Fuemen", - "fontFamily": "Grechen Fuemen, cursive", - "slug": "wp-font-lib-grechen-fuemen", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/grechenfuemen/v7/vEFI2_tHEQ4d5ObgKxBzZh0MAWgc-NaXXq7H.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Grechen Fuemen" - } - ] - }, - { - "name": "Grenze", - "fontFamily": "Grenze, serif", - "slug": "wp-font-lib-grenze", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZRFGb7hR12BxqPm2IjuAkalnmd.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZXFGb7hR12BxqH_VpHsg04k2md0kI.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPN0MDkicWn2CEyw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vrrky0SvWWUy1uW.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPU0ADkicWn2CEyw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqPkC0SvWWUy1uW.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZTFGb7hR12Bxq3_2gnmgwKlg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZRFGb7hR12BxqH_WIjuAkalnmd.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPC0EDkicWn2CEyw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VrXkS0SvWWUy1uW.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPJ0YDkicWn2CEyw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vr7li0SvWWUy1uW.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPQ0cDkicWn2CEyw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vqfly0SvWWUy1uW.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPX0QDkicWn2CEyw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqDlC0SvWWUy1uW.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPe0UDkicWn2CEyw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqnlS0SvWWUy1uW.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Grenze" - } - ] - }, - { - "name": "Grenze Gotisch", - "fontFamily": "Grenze Gotisch, system-ui", - "slug": "wp-font-lib-grenze-gotisch", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz5UcICdYPSd_w.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch" - }, - { - "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rz9UcICdYPSd_w.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch" - }, - { - "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5cT9UcICdYPSd_w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch" - }, - { - "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz9UcICdYPSd_w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch" - }, - { - "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5HT9UcICdYPSd_w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch" - }, - { - "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i58ThUcICdYPSd_w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch" - }, - { - "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5yDhUcICdYPSd_w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch" - }, - { - "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rzhUcICdYPSd_w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch" - }, - { - "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5hjhUcICdYPSd_w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch" - } - ] - }, - { - "name": "Grey Qo", - "fontFamily": "Grey Qo, cursive", - "slug": "wp-font-lib-grey-qo", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/greyqo/v7/BXRrvF_Nmv_TyXxNDOtQ9Wf0QcE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Grey Qo" - } - ] - }, - { - "name": "Griffy", - "fontFamily": "Griffy, system-ui", - "slug": "wp-font-lib-griffy", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/griffy/v22/FwZa7-ox2FQh9kfwSNSEwM2zpA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Griffy" - } - ] - }, - { - "name": "Gruppo", - "fontFamily": "Gruppo, sans-serif", - "slug": "wp-font-lib-gruppo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gruppo/v17/WwkfxPmzE06v_ZWFWXDAOIEQUQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gruppo" - } - ] - }, - { - "name": "Gudea", - "fontFamily": "Gudea, sans-serif", - "slug": "wp-font-lib-gudea", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gudea/v15/neIFzCqgsI0mp-CP9IGON7Ez.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gudea" - }, - { - "src": "http://fonts.gstatic.com/s/gudea/v15/neILzCqgsI0mp9CN_oWsMqEzSJQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Gudea" - }, - { - "src": "http://fonts.gstatic.com/s/gudea/v15/neIIzCqgsI0mp9gz26WGHK06UY30.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gudea" - } - ] - }, - { - "name": "Gugi", - "fontFamily": "Gugi, system-ui", - "slug": "wp-font-lib-gugi", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gugi/v13/A2BVn5dXywshVA6A9DEfgqM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gugi" - } - ] - }, - { - "name": "Gulzar", - "fontFamily": "Gulzar, serif", - "slug": "wp-font-lib-gulzar", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gulzar/v8/Wnz6HAc9eB3HB2ILYTwZqg_MPQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gulzar" - } - ] - }, - { - "name": "Gupter", - "fontFamily": "Gupter, serif", - "slug": "wp-font-lib-gupter", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gupter/v14/2-cm9JNmxJqPO1QUYZa_Wu_lpA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gupter" - }, - { - "src": "http://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qslb-bUsT5rZhaZg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Gupter" - }, - { - "src": "http://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qs3bmbUsT5rZhaZg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gupter" - } - ] - }, - { - "name": "Gurajada", - "fontFamily": "Gurajada, serif", - "slug": "wp-font-lib-gurajada", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gurajada/v15/FwZY7-Qx308m-l-0Kd6A4sijpFu_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gurajada" - } - ] - }, - { - "name": "Gwendolyn", - "fontFamily": "Gwendolyn, cursive", - "slug": "wp-font-lib-gwendolyn", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gwendolyn/v5/qkBXXvoO_M3CSss-d7ee5JRLkAXbMQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gwendolyn" - }, - { - "src": "http://fonts.gstatic.com/s/gwendolyn/v5/qkBSXvoO_M3CSss-d7emWLtvmC7HONiSFQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gwendolyn" - } - ] - }, - { - "name": "Habibi", - "fontFamily": "Habibi, serif", - "slug": "wp-font-lib-habibi", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/habibi/v21/CSR-4zFWkuqcTTNCShJeZOYySQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Habibi" - } - ] - }, - { - "name": "Hachi Maru Pop", - "fontFamily": "Hachi Maru Pop, cursive", - "slug": "wp-font-lib-hachi-maru-pop", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hachimarupop/v17/HI_TiYoRLqpLrEiMAuO9Ysfz7rW1EM_btd8u.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hachi Maru Pop" - } - ] - }, - { - "name": "Hahmlet", - "fontFamily": "Hahmlet, serif", - "slug": "wp-font-lib-hahmlet", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKOdjobsO-aVxn.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Hahmlet" - }, - { - "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKONjobsO-aVxn.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Hahmlet" - }, - { - "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RgUONjobsO-aVxn.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hahmlet" - }, - { - "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKONjobsO-aVxn.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hahmlet" - }, - { - "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4Rh4ONjobsO-aVxn.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hahmlet" - }, - { - "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RiUP9jobsO-aVxn.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hahmlet" - }, - { - "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RitP9jobsO-aVxn.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hahmlet" - }, - { - "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKP9jobsO-aVxn.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Hahmlet" - }, - { - "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjjP9jobsO-aVxn.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Hahmlet" - } - ] - }, - { - "name": "Halant", - "fontFamily": "Halant, serif", - "slug": "wp-font-lib-halant", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2Pbsvc_pCmwZqcwdRXg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Halant" - }, - { - "src": "http://fonts.gstatic.com/s/halant/v14/u-4-0qaujRI2PbsX39Jmky12eg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Halant" - }, - { - "src": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvK_tCmwZqcwdRXg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Halant" - }, - { - "src": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvB_xCmwZqcwdRXg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Halant" - }, - { - "src": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvY_1CmwZqcwdRXg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Halant" - } - ] - }, - { - "name": "Hammersmith One", - "fontFamily": "Hammersmith One, sans-serif", - "slug": "wp-font-lib-hammersmith-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hammersmithone/v17/qWcyB624q4L_C4jGQ9IK0O_dFlnbshsks4MRXw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hammersmith One" - } - ] - }, - { - "name": "Hanalei", - "fontFamily": "Hanalei, system-ui", - "slug": "wp-font-lib-hanalei", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hanalei/v23/E21n_dD8iufIjBRHXzgmVydREus.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hanalei" - } - ] - }, - { - "name": "Hanalei Fill", - "fontFamily": "Hanalei Fill, system-ui", - "slug": "wp-font-lib-hanalei-fill", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hanaleifill/v22/fC1mPYtObGbfyQznIaQzPQiMVwLBplm9aw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hanalei Fill" - } - ] - }, - { - "name": "Handlee", - "fontFamily": "Handlee, cursive", - "slug": "wp-font-lib-handlee", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/handlee/v14/-F6xfjBsISg9aMakDmr6oilJ3ik.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Handlee" - } - ] - }, - { - "name": "Hanken Grotesk", - "fontFamily": "Hanken Grotesk, sans-serif", - "slug": "wp-font-lib-hanken-grotesk", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2da4fpNzXhRKA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcM2Za4fpNzXhRKA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Nc7WZa4fpNzXhRKA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2Za4fpNzXhRKA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcgWZa4fpNzXhRKA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcbWFa4fpNzXhRKA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcVGFa4fpNzXhRKA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcM2Fa4fpNzXhRKA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcGmFa4fpNzXhRKA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWyo_BJ731BKMSK.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUyovBJ731BKMSK.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyXsovBJ731BKMSK.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWyovBJ731BKMSK.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWAovBJ731BKMSK.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyVspfBJ731BKMSK.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyVVpfBJ731BKMSK.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUypfBJ731BKMSK.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUbpfBJ731BKMSK.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk" - } - ] - }, - { - "name": "Hanuman", - "fontFamily": "Hanuman, serif", - "slug": "wp-font-lib-hanuman", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJzdNvD15HhpJJBQMLdPKNiaRpFvg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Hanuman" - }, - { - "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQAr_HIlMZRNcp0o.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hanuman" - }, - { - "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJxdNvD15HhpJJBeKbXOIFneRo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hanuman" - }, - { - "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQBr4HIlMZRNcp0o.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hanuman" - }, - { - "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQCL6HIlMZRNcp0o.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Hanuman" - } - ] - }, - { - "name": "Happy Monkey", - "fontFamily": "Happy Monkey, system-ui", - "slug": "wp-font-lib-happy-monkey", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/happymonkey/v14/K2F2fZZcl-9SXwl5F_C4R_OABwD2bWqVjw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Happy Monkey" - } - ] - }, - { - "name": "Harmattan", - "fontFamily": "Harmattan, sans-serif", - "slug": "wp-font-lib-harmattan", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/harmattan/v19/goksH6L2DkFvVvRp9XpTS0CjkP1Yog.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Harmattan" - }, - { - "src": "http://fonts.gstatic.com/s/harmattan/v19/gokpH6L2DkFvVvRp9Xprv2mHmNZEq6TTFw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Harmattan" - }, - { - "src": "http://fonts.gstatic.com/s/harmattan/v19/gokpH6L2DkFvVvRp9Xprk26HmNZEq6TTFw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Harmattan" - }, - { - "src": "http://fonts.gstatic.com/s/harmattan/v19/gokpH6L2DkFvVvRp9Xpr92-HmNZEq6TTFw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Harmattan" - } - ] - }, - { - "name": "Headland One", - "fontFamily": "Headland One, serif", - "slug": "wp-font-lib-headland-one", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/headlandone/v16/yYLu0hHR2vKnp89Tk1TCq3Tx0PlTeZ3mJA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Headland One" - } - ] - }, - { - "name": "Heebo", - "fontFamily": "Heebo, sans-serif", - "slug": "wp-font-lib-heebo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiS2cckOnz02SXQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Heebo" - }, - { - "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSycckOnz02SXQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Heebo" - }, - { - "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1E1yycckOnz02SXQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Heebo" - }, - { - "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSycckOnz02SXQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Heebo" - }, - { - "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EuyycckOnz02SXQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Heebo" - }, - { - "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EVyucckOnz02SXQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Heebo" - }, - { - "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EbiucckOnz02SXQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Heebo" - }, - { - "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSucckOnz02SXQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Heebo" - }, - { - "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EICucckOnz02SXQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Heebo" - } - ] - }, - { - "name": "Henny Penny", - "fontFamily": "Henny Penny, system-ui", - "slug": "wp-font-lib-henny-penny", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hennypenny/v17/wXKvE3UZookzsxz_kjGSfMQqt3M7tMDT.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Henny Penny" - } - ] - }, - { - "name": "Hepta Slab", - "fontFamily": "Hepta Slab, serif", - "slug": "wp-font-lib-hepta-slab", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5jfbY5B0NBkz.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Hepta Slab" - }, - { - "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV5zfbY5B0NBkz.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Hepta Slab" - }, - { - "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvlL5zfbY5B0NBkz.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hepta Slab" - }, - { - "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5zfbY5B0NBkz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hepta Slab" - }, - { - "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvkn5zfbY5B0NBkz.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hepta Slab" - }, - { - "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvnL4DfbY5B0NBkz.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hepta Slab" - }, - { - "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvny4DfbY5B0NBkz.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hepta Slab" - }, - { - "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV4DfbY5B0NBkz.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Hepta Slab" - }, - { - "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvm84DfbY5B0NBkz.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Hepta Slab" - } - ] - }, - { - "name": "Herr Von Muellerhoff", - "fontFamily": "Herr Von Muellerhoff, cursive", - "slug": "wp-font-lib-herr-von-muellerhoff", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/herrvonmuellerhoff/v16/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c6_qJY3QPQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Herr Von Muellerhoff" - } - ] - }, - { - "name": "Hi Melody", - "fontFamily": "Hi Melody, cursive", - "slug": "wp-font-lib-hi-melody", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/himelody/v13/46ktlbP8Vnz0pJcqCTbEf29E31BBGA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hi Melody" - } - ] - }, - { - "name": "Hina Mincho", - "fontFamily": "Hina Mincho, serif", - "slug": "wp-font-lib-hina-mincho", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hinamincho/v9/2sDaZGBRhpXa2Jjz5w5LAGW8KbkVZTHR.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hina Mincho" - } - ] - }, - { - "name": "Hind", - "fontFamily": "Hind, sans-serif", - "slug": "wp-font-lib-hind", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfMJaIRuYjDpf5Vw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hind" - }, - { - "src": "http://fonts.gstatic.com/s/hind/v16/5aU69_a8oxmIRG5yBROzkDM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hind" - }, - { - "src": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfJpbIRuYjDpf5Vw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hind" - }, - { - "src": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfLZcIRuYjDpf5Vw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hind" - }, - { - "src": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfNJdIRuYjDpf5Vw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hind" - } - ] - }, - { - "name": "Hind Guntur", - "fontFamily": "Hind Guntur, sans-serif", - "slug": "wp-font-lib-hind-guntur", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yGn1czn9zaj5Ju.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hind Guntur" - }, - { - "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKvE3UZrok56nvamSuJd8Qqt3M7tMDT.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hind Guntur" - }, - { - "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zenlczn9zaj5Ju.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hind Guntur" - }, - { - "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zymVczn9zaj5Ju.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hind Guntur" - }, - { - "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yWmFczn9zaj5Ju.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hind Guntur" - } - ] - }, - { - "name": "Hind Madurai", - "fontFamily": "Hind Madurai, sans-serif", - "slug": "wp-font-lib-hind-madurai", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfXaUnecsoMJ0b_g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hind Madurai" - }, - { - "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xx0e2p98ZvDXdZQIOcpqjn8Y0DceA0OQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hind Madurai" - }, - { - "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfBaQnecsoMJ0b_g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hind Madurai" - }, - { - "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfKaMnecsoMJ0b_g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hind Madurai" - }, - { - "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfTaInecsoMJ0b_g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hind Madurai" - } - ] - }, - { - "name": "Hind Siliguri", - "fontFamily": "Hind Siliguri, sans-serif", - "slug": "wp-font-lib-hind-siliguri", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRDf44uEfKiGvxts.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hind Siliguri" - }, - { - "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwTs5juQtsyLLR5jN4cxBEofJvQxuk0Nig.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hind Siliguri" - }, - { - "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRG_54uEfKiGvxts.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hind Siliguri" - }, - { - "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoREP-4uEfKiGvxts.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hind Siliguri" - }, - { - "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRCf_4uEfKiGvxts.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hind Siliguri" - } - ] - }, - { - "name": "Hind Vadodara", - "fontFamily": "Hind Vadodara, sans-serif", - "slug": "wp-font-lib-hind-vadodara", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSDn3iXM0oSOL2Yw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hind Vadodara" - }, - { - "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neINzCKvrIcn5pbuuuriV9tTcJXfrXsfvSo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hind Vadodara" - }, - { - "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSGH2iXM0oSOL2Yw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hind Vadodara" - }, - { - "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSE3xiXM0oSOL2Yw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hind Vadodara" - }, - { - "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSCnwiXM0oSOL2Yw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hind Vadodara" - } - ] - }, - { - "name": "Holtwood One SC", - "fontFamily": "Holtwood One SC, serif", - "slug": "wp-font-lib-holtwood-one-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/holtwoodonesc/v16/yYLx0hLR0P-3vMFSk1TCq3Txg5B3cbb6LZttyg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Holtwood One SC" - } - ] - }, - { - "name": "Homemade Apple", - "fontFamily": "Homemade Apple, cursive", - "slug": "wp-font-lib-homemade-apple", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/homemadeapple/v18/Qw3EZQFXECDrI2q789EKQZJob3x9Vnksi4M7.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Homemade Apple" - } - ] - }, - { - "name": "Homenaje", - "fontFamily": "Homenaje, sans-serif", - "slug": "wp-font-lib-homenaje", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/homenaje/v16/FwZY7-Q-xVAi_l-6Ld6A4sijpFu_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Homenaje" - } - ] - }, - { - "name": "Hubballi", - "fontFamily": "Hubballi, system-ui", - "slug": "wp-font-lib-hubballi", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hubballi/v4/o-0JIpUj3WIZ1RFN56B7yBBNYuSF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hubballi" - } - ] - }, - { - "name": "Hurricane", - "fontFamily": "Hurricane, cursive", - "slug": "wp-font-lib-hurricane", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hurricane/v5/pe0sMIuULZxTolZ5YldyAv2-C99ycg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hurricane" - } - ] - }, - { - "name": "IBM Plex Mono", - "fontFamily": "IBM Plex Mono, monospace", - "slug": "wp-font-lib-ibm-plex-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6pfjptAgt5VM-kVkqdyU8n3kwq0n1hj-sNFQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6rfjptAgt5VM-kVkqdyU8n1ioStndlre4dFcFh.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3uAL8ldPg-IUDNg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSGlZFh8ARHNh4zg.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3oQI8ldPg-IUDNg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSflVFh8ARHNh4zg.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F63fjptAgt5VM-kVkqdyU8n5igg1l9kn-s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6pfjptAgt5VM-kVkqdyU8n1ioq0n1hj-sNFQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3twJ8ldPg-IUDNg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSJlRFh8ARHNh4zg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3vAO8ldPg-IUDNg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSClNFh8ARHNh4zg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3pQP8ldPg-IUDNg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSblJFh8ARHNh4zg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "IBM Plex Mono" - } - ] - }, - { - "name": "IBM Plex Sans", - "fontFamily": "IBM Plex Sans, sans-serif", - "slug": "wp-font-lib-ibm-plex-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKjbLeEKxIedbzDw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX8KVElMYYaJe8bpLHnCwDKhdTmdKZMW9PjD3N8.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjR7_MIZmdd_qFmo.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTm2Idscf3vBmpl8A.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjXr8MIZmdd_qFmo.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRscf3vBmpl8A.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYXgKVElMYYaJe8bpLHnCwDKtdbUFI5NadY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKhdTeEKxIedbzDw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjSL9MIZmdd_qFmo.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTm5IVscf3vBmpl8A.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjQ76MIZmdd_qFmo.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJscf3vBmpl8A.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjWr7MIZmdd_qFmo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINscf3vBmpl8A.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans" - } - ] - }, - { - "name": "IBM Plex Sans Arabic", - "fontFamily": "IBM Plex Sans Arabic, sans-serif", - "slug": "wp-font-lib-ibm-plex-sans-arabic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3MZRtWPQCuHme67tEYUIx3Kh0PHR9N6YNe3PC5eMlAMg0.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPy_dCTVsVJKxTs.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOW_tCTVsVJKxTs.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3CZRtWPQCuHme67tEYUIx3Kh0PHR9N6bs61vSbfdlA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPO_9CTVsVJKxTs.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPi-NCTVsVJKxTs.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOG-dCTVsVJKxTs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Arabic" - } - ] - }, - { - "name": "IBM Plex Sans Condensed", - "fontFamily": "IBM Plex Sans Condensed, sans-serif", - "slug": "wp-font-lib-ibm-plex-sans-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY7KyKvBgYsMDhM.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8hN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8M_LhakJHhOgBg.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5m6Yvrr4cFFwq5.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8GPqpYMnEhq5H1w.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4C6ovrr4cFFwq5.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8AfppYMnEhq5H1w.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbauwq_jhJsM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYasyKvBgYsMDhM.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5a64vrr4cFFwq5.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8F_opYMnEhq5H1w.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY527Ivrr4cFFwq5.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8HPvpYMnEhq5H1w.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4S7Yvrr4cFFwq5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8BfupYMnEhq5H1w.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans Condensed" - } - ] - }, - { - "name": "IBM Plex Sans Devanagari", - "fontFamily": "IBM Plex Sans Devanagari, sans-serif", - "slug": "wp-font-lib-ibm-plex-sans-devanagari", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXB3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HMUjwUcjwCEQq.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HnWnQe-b8AV0z0w.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H-WrQe-b8AV0z0w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXH3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O__VUL0c83gCA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HoWvQe-b8AV0z0w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HjWzQe-b8AV0z0w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H6W3Qe-b8AV0z0w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Devanagari" - } - ] - }, - { - "name": "IBM Plex Sans Hebrew", - "fontFamily": "IBM Plex Sans Hebrew, sans-serif", - "slug": "wp-font-lib-ibm-plex-sans-hebrew", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa4qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEXB-l0VqDaM7C4.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVt230_hjqF9Tc2.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUJ2H0_hjqF9Tc2.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa2qYENg9Kw1mpLpO0bGM5lfHAAZHhDXH2l8Fk3rSaM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVR2X0_hjqF9Tc2.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEV93n0_hjqF9Tc2.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUZ330_hjqF9Tc2.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Hebrew" - } - ] - }, - { - "name": "IBM Plex Sans JP", - "fontFamily": "IBM Plex Sans JP, sans-serif", - "slug": "wp-font-lib-ibm-plex-sans-jp", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XLDn9KbTDf6_f7dISNqYf_tvPT7E7yjPB7twdmHQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7OLTrNpVuw5_BAM.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7IbQrNpVuw5_BAM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XNDn9KbTDf6_f7dISNqYf_tvPT1Cr4iNJ-pwc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7N7RrNpVuw5_BAM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7PLWrNpVuw5_BAM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7JbXrNpVuw5_BAM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans JP" - } - ] - }, - { - "name": "IBM Plex Sans KR", - "fontFamily": "IBM Plex Sans KR, sans-serif", - "slug": "wp-font-lib-ibm-plex-sans-kr", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFM2-VJISZe3O_rc3ZVYh4aTwNOyra_X5zCpMrMfA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans KR" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyhqef7bsqMPVZb4.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans KR" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyn6df7bsqMPVZb4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans KR" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFK2-VJISZe3O_rc3ZVYh4aTwNO8tK1W77HtMo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans KR" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyiacf7bsqMPVZb4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans KR" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOygqbf7bsqMPVZb4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans KR" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOym6af7bsqMPVZb4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans KR" - } - ] - }, - { - "name": "IBM Plex Sans Thai", - "fontFamily": "IBM Plex Sans Thai, sans-serif", - "slug": "wp-font-lib-ibm-plex-sans-thai", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JNje1VVIzcq1HzJq2AEdo2Tj_qvLqEatYlR8ZKUqcX.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqExvcFbehGW74OXw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEovQFbehGW74OXw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JPje1VVIzcq1HzJq2AEdo2Tj_qvLq8DtwhZcNaUg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE-vUFbehGW74OXw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE1vIFbehGW74OXw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEsvMFbehGW74OXw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai" - } - ] - }, - { - "name": "IBM Plex Sans Thai Looped", - "fontFamily": "IBM Plex Sans Thai Looped, sans-serif", - "slug": "wp-font-lib-ibm-plex-sans-thai-looped", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss5AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_HaKpHOtFCQ76Q.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_NqrhFmDGC0i8Cc.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_L6ohFmDGC0i8Cc.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss_AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30LxBKAoFGoBCQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_OaphFmDGC0i8Cc.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_MquhFmDGC0i8Cc.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_K6vhFmDGC0i8Cc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai Looped" - } - ] - }, - { - "name": "IBM Plex Serif", - "fontFamily": "IBM Plex Serif, serif", - "slug": "wp-font-lib-ibm-plex-serif", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizBREVNn1dOx-zrZ2X3pZvkTi182zIZj1bIkNo.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizHREVNn1dOx-zrZ2X3pZvkTiUa41YTi3TNgNq55w.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3Q-hIzoVrBicOg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4_oyq17jjNOg_oc.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi20-RIzoVrBicOg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa454xq17jjNOg_oc.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizDREVNn1dOx-zrZ2X3pZvkThUY0TY7ikbI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizBREVNn1dOx-zrZ2X3pZvkTiUa2zIZj1bIkNo.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3s-BIzoVrBicOg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa48Ywq17jjNOg_oc.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3A_xIzoVrBicOg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4-o3q17jjNOg_oc.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi2k_hIzoVrBicOg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4442q17jjNOg_oc.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "IBM Plex Serif" - } - ] - }, - { - "name": "IM Fell DW Pica", - "fontFamily": "IM Fell DW Pica, serif", - "slug": "wp-font-lib-im-fell-dw-pica", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imfelldwpica/v16/2sDGZGRQotv9nbn2qSl0TxXVYNw9ZAPUvi88MQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell DW Pica" - }, - { - "src": "http://fonts.gstatic.com/s/imfelldwpica/v16/2sDEZGRQotv9nbn2qSl0TxXVYNwNZgnQnCosMXm0.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IM Fell DW Pica" - } - ] - }, - { - "name": "IM Fell DW Pica SC", - "fontFamily": "IM Fell DW Pica SC, serif", - "slug": "wp-font-lib-im-fell-dw-pica-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imfelldwpicasc/v21/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW-BiKEUiBGA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell DW Pica SC" - } - ] - }, - { - "name": "IM Fell Double Pica", - "fontFamily": "IM Fell Double Pica, serif", - "slug": "wp-font-lib-im-fell-double-pica", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imfelldoublepica/v14/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0S1UL5Ayp0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell Double Pica" - }, - { - "src": "http://fonts.gstatic.com/s/imfelldoublepica/v14/3XF0EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0a_VJxF2p2G8g.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IM Fell Double Pica" - } - ] - }, - { - "name": "IM Fell Double Pica SC", - "fontFamily": "IM Fell Double Pica SC, serif", - "slug": "wp-font-lib-im-fell-double-pica-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imfelldoublepicasc/v21/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4Y0Eeru2dGg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell Double Pica SC" - } - ] - }, - { - "name": "IM Fell English", - "fontFamily": "IM Fell English, serif", - "slug": "wp-font-lib-im-fell-english", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imfellenglish/v14/Ktk1ALSLW8zDe0rthJysWrnLsAz3F6mZVY9Y5w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell English" - }, - { - "src": "http://fonts.gstatic.com/s/imfellenglish/v14/Ktk3ALSLW8zDe0rthJysWrnLsAzHFaOdd4pI59zg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IM Fell English" - } - ] - }, - { - "name": "IM Fell English SC", - "fontFamily": "IM Fell English SC, serif", - "slug": "wp-font-lib-im-fell-english-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imfellenglishsc/v16/a8IENpD3CDX-4zrWfr1VY879qFF05pZLO4gOg0shzA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell English SC" - } - ] - }, - { - "name": "IM Fell French Canon", - "fontFamily": "IM Fell French Canon, serif", - "slug": "wp-font-lib-im-fell-french-canon", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coVPt1ozoPz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell French Canon" - }, - { - "src": "http://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6gfiNtDWYfYc-tDiyiw08rrghJszkK6foXNNlKy5PzzrU.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IM Fell French Canon" - } - ] - }, - { - "name": "IM Fell French Canon SC", - "fontFamily": "IM Fell French Canon SC, serif", - "slug": "wp-font-lib-im-fell-french-canon-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imfellfrenchcanonsc/v22/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3c0UBCVIVqH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell French Canon SC" - } - ] - }, - { - "name": "IM Fell Great Primer", - "fontFamily": "IM Fell Great Primer, serif", - "slug": "wp-font-lib-im-fell-great-primer", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorXvDo3SQY1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell Great Primer" - }, - { - "src": "http://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6UNwSJtayYxOkbYFsT6hMsLzX7u85rJrrVtj4VTBY1N6U.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IM Fell Great Primer" - } - ] - }, - { - "name": "IM Fell Great Primer SC", - "fontFamily": "IM Fell Great Primer SC, serif", - "slug": "wp-font-lib-im-fell-great-primer-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imfellgreatprimersc/v21/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf9BXz0s8FG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell Great Primer SC" - } - ] - }, - { - "name": "Ibarra Real Nova", - "fontFamily": "Ibarra Real Nova, serif", - "slug": "wp-font-lib-ibarra-real-nova", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdg5MDtVT9TWIvS.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ibarra Real Nova" - }, - { - "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdS5MDtVT9TWIvS.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Ibarra Real Nova" - }, - { - "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXe-48DtVT9TWIvS.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Ibarra Real Nova" - }, - { - "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXeH48DtVT9TWIvS.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Ibarra Real Nova" - }, - { - "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopyiuXztxXZvSkTo.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Ibarra Real Nova" - }, - { - "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopxquXztxXZvSkTo.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Ibarra Real Nova" - }, - { - "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop_apXztxXZvSkTo.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Ibarra Real Nova" - }, - { - "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop8-pXztxXZvSkTo.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Ibarra Real Nova" - } - ] - }, - { - "name": "Iceberg", - "fontFamily": "Iceberg, system-ui", - "slug": "wp-font-lib-iceberg", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/iceberg/v20/8QIJdijAiM7o-qnZuIgOq7jkAOw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Iceberg" - } - ] - }, - { - "name": "Iceland", - "fontFamily": "Iceland, system-ui", - "slug": "wp-font-lib-iceland", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/iceland/v16/rax9HiuFsdMNOnWPWKxGADBbg0s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Iceland" - } - ] - }, - { - "name": "Imbue", - "fontFamily": "Imbue, serif", - "slug": "wp-font-lib-imbue", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iWfOsNNK-Q4xY.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Imbue" - }, - { - "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iXfOsNNK-Q4xY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Imbue" - }, - { - "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP5aXfOsNNK-Q4xY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Imbue" - }, - { - "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iXfOsNNK-Q4xY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Imbue" - }, - { - "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP_qXfOsNNK-Q4xY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Imbue" - }, - { - "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPxaQfOsNNK-Q4xY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Imbue" - }, - { - "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPy-QfOsNNK-Q4xY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Imbue" - }, - { - "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iQfOsNNK-Q4xY.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Imbue" - }, - { - "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP2GQfOsNNK-Q4xY.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Imbue" - } - ] - }, - { - "name": "Imperial Script", - "fontFamily": "Imperial Script, cursive", - "slug": "wp-font-lib-imperial-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imperialscript/v3/5DCPAKrpzy_H98IV2ISnZBbGrVNvPenlvttWNg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Imperial Script" - } - ] - }, - { - "name": "Imprima", - "fontFamily": "Imprima, sans-serif", - "slug": "wp-font-lib-imprima", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imprima/v18/VEMxRoN7sY3yuy-7-oWHyDzktPo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Imprima" - } - ] - }, - { - "name": "Inconsolata", - "fontFamily": "Inconsolata, monospace", - "slug": "wp-font-lib-inconsolata", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU8aRr8lleY2co.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Inconsolata" - }, - { - "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp9s8aRr8lleY2co.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Inconsolata" - }, - { - "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8aRr8lleY2co.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inconsolata" - }, - { - "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp7c8aRr8lleY2co.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Inconsolata" - }, - { - "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp1s7aRr8lleY2co.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Inconsolata" - }, - { - "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp2I7aRr8lleY2co.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Inconsolata" - }, - { - "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU7aRr8lleY2co.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Inconsolata" - }, - { - "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lppyw7aRr8lleY2co.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Inconsolata" - } - ] - }, - { - "name": "Inder", - "fontFamily": "Inder, sans-serif", - "slug": "wp-font-lib-inder", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/inder/v14/w8gUH2YoQe8_4vq6pw-P3U4O.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inder" - } - ] - }, - { - "name": "Indie Flower", - "fontFamily": "Indie Flower, cursive", - "slug": "wp-font-lib-indie-flower", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/indieflower/v17/m8JVjfNVeKWVnh3QMuKkFcZlbkGG1dKEDw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Indie Flower" - } - ] - }, - { - "name": "Ingrid Darling", - "fontFamily": "Ingrid Darling, cursive", - "slug": "wp-font-lib-ingrid-darling", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ingriddarling/v2/LDIrapaJNxUtSuFdw-9yf4rCPsLOub458jGL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ingrid Darling" - } - ] - }, - { - "name": "Inika", - "fontFamily": "Inika, serif", - "slug": "wp-font-lib-inika", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/inika/v21/rnCm-x5X3QP-phTHRcc2s2XH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inika" - }, - { - "src": "http://fonts.gstatic.com/s/inika/v21/rnCr-x5X3QP-pix7auM-mHnOSOuk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Inika" - } - ] - }, - { - "name": "Inknut Antiqua", - "fontFamily": "Inknut Antiqua, serif", - "slug": "wp-font-lib-inknut-antiqua", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2vwrj5bBoIYJNf.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Inknut Antiqua" - }, - { - "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GSYax7VC4ot_qNB4nYpBdaKXUD6pzxRwYB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inknut Antiqua" - }, - { - "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU33w7j5bBoIYJNf.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Inknut Antiqua" - }, - { - "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU3bxLj5bBoIYJNf.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Inknut Antiqua" - }, - { - "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2_xbj5bBoIYJNf.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Inknut Antiqua" - }, - { - "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2jxrj5bBoIYJNf.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Inknut Antiqua" - }, - { - "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2Hx7j5bBoIYJNf.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Inknut Antiqua" - } - ] - }, - { - "name": "Inria Sans", - "fontFamily": "Inria Sans, sans-serif", - "slug": "wp-font-lib-inria-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3ELaDQtFqeY3fX4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Inria Sans" - }, - { - "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAgQlPrcQybX4pQA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Inria Sans" - }, - { - "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRMTiqXYfZMCOiVj9kQ5O7yKQNute8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inria Sans" - }, - { - "src": "http://fonts.gstatic.com/s/inriasans/v14/ptROTiqXYfZMCOiVj9kQ1Oz4LSFrpe8uZA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Inria Sans" - }, - { - "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3FLdDQtFqeY3fX4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Inria Sans" - }, - { - "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAkQ5PrcQybX4pQA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Inria Sans" - } - ] - }, - { - "name": "Inria Serif", - "fontFamily": "Inria Serif, serif", - "slug": "wp-font-lib-inria-serif", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC14PYxPY3rXxEndZJAzN3wAVQjFhFyta3xN.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Inria Serif" - }, - { - "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC16PYxPY3rXxEndZJAzN3SuT4THjliPbmxN0_E.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Inria Serif" - }, - { - "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC1lPYxPY3rXxEndZJAzN0SsfSzNr0Ck.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inria Serif" - }, - { - "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC1nPYxPY3rXxEndZJAzN3SudyjvqlCkcmU.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Inria Serif" - }, - { - "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC14PYxPY3rXxEndZJAzN3wQUgjFhFyta3xN.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Inria Serif" - }, - { - "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC16PYxPY3rXxEndZJAzN3SuT5TAjliPbmxN0_E.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Inria Serif" - } - ] - }, - { - "name": "Inspiration", - "fontFamily": "Inspiration, cursive", - "slug": "wp-font-lib-inspiration", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/inspiration/v3/x3dkckPPZa6L4wIg5cZOEvoGnSrlBBsy.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inspiration" - } - ] - }, - { - "name": "Instrument Sans", - "fontFamily": "Instrument Sans, sans-serif", - "slug": "wp-font-lib-instrument-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-Qf1mS0v3_7Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Instrument Sans" - }, - { - "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npST3-Qf1mS0v3_7Y.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Instrument Sans" - }, - { - "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQb_gf1mS0v3_7Y.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Instrument Sans" - }, - { - "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gf1mS0v3_7Y.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Instrument Sans" - }, - { - "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENuu-2kykN2u7YUwU.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Instrument Sans" - }, - { - "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENut22kykN2u7YUwU.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Instrument Sans" - }, - { - "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENujGxkykN2u7YUwU.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Instrument Sans" - }, - { - "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENugixkykN2u7YUwU.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Instrument Sans" - } - ] - }, - { - "name": "Instrument Serif", - "fontFamily": "Instrument Serif, serif", - "slug": "wp-font-lib-instrument-serif", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/instrumentserif/v4/jizBRFtNs2ka5fXjeivQ4LroWlx-2zIZj1bIkNo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Instrument Serif" - }, - { - "src": "http://fonts.gstatic.com/s/instrumentserif/v4/jizHRFtNs2ka5fXjeivQ4LroWlx-6zATi3TNgNq55w.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Instrument Serif" - } - ] - }, - { - "name": "Inter", - "fontFamily": "Inter, sans-serif", - "slug": "wp-font-lib-inter", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyeMZhrib2Bg-4.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Inter" - }, - { - "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyfMZhrib2Bg-4.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Inter" - }, - { - "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZhrib2Bg-4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Inter" - }, - { - "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZhrib2Bg-4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inter" - }, - { - "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Inter" - }, - { - "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Inter" - }, - { - "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Inter" - }, - { - "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyYMZhrib2Bg-4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Inter" - }, - { - "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuBWYMZhrib2Bg-4.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Inter" - } - ] - }, - { - "name": "Inter Tight", - "fontFamily": "Inter Tight, sans-serif", - "slug": "wp-font-lib-inter-tight", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw6qXCRToK8EPg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjw-qXCRToK8EPg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjUQ-qXCRToK8EPg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qXCRToK8EPg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qXCRToK8EPg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqXCRToK8EPg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj6AiqXCRToK8EPg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjwiqXCRToK8EPg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjpgiqXCRToK8EPg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHi5XgqoUPvi5.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCHy5XgqoUPvi5.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0wcHy5XgqoUPvi5.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHy5XgqoUPvi5.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xwHy5XgqoUPvi5.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ycGC5XgqoUPvi5.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ylGC5XgqoUPvi5.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCGC5XgqoUPvi5.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zrGC5XgqoUPvi5.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Inter Tight" - } - ] - }, - { - "name": "Irish Grover", - "fontFamily": "Irish Grover, system-ui", - "slug": "wp-font-lib-irish-grover", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/irishgrover/v23/buExpoi6YtLz2QW7LA4flVgf-P5Oaiw4cw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Irish Grover" - } - ] - }, - { - "name": "Island Moments", - "fontFamily": "Island Moments, cursive", - "slug": "wp-font-lib-island-moments", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/islandmoments/v3/NaPBcZfVGvBdxIt7Ar0qzkXJF-TGIohbZ6SY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Island Moments" - } - ] - }, - { - "name": "Istok Web", - "fontFamily": "Istok Web, sans-serif", - "slug": "wp-font-lib-istok-web", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/istokweb/v21/3qTvojGmgSyUukBzKslZAWF-9kIIaQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Istok Web" - }, - { - "src": "http://fonts.gstatic.com/s/istokweb/v21/3qTpojGmgSyUukBzKslpA2t61EcYaQ7F.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Istok Web" - }, - { - "src": "http://fonts.gstatic.com/s/istokweb/v21/3qTqojGmgSyUukBzKslhvU5a_mkUYBfcMw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Istok Web" - }, - { - "src": "http://fonts.gstatic.com/s/istokweb/v21/3qT0ojGmgSyUukBzKslpA1PG-2MQQhLMMygN.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Istok Web" - } - ] - }, - { - "name": "Italiana", - "fontFamily": "Italiana, serif", - "slug": "wp-font-lib-italiana", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/italiana/v16/QldNNTtLsx4E__B0XTmRY31Wx7Vv.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Italiana" - } - ] - }, - { - "name": "Italianno", - "fontFamily": "Italianno, cursive", - "slug": "wp-font-lib-italianno", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/italianno/v17/dg4n_p3sv6gCJkwzT6Rnj5YpQwM-gg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Italianno" - } - ] - }, - { - "name": "Itim", - "fontFamily": "Itim, cursive", - "slug": "wp-font-lib-itim", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/itim/v11/0nknC9ziJOYewARKkc7ZdwU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Itim" - } - ] - }, - { - "name": "Jacques Francois", - "fontFamily": "Jacques Francois, serif", - "slug": "wp-font-lib-jacques-francois", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jacquesfrancois/v20/ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcPqoeRWfbs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jacques Francois" - } - ] - }, - { - "name": "Jacques Francois Shadow", - "fontFamily": "Jacques Francois Shadow, system-ui", - "slug": "wp-font-lib-jacques-francois-shadow", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jacquesfrancoisshadow/v21/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8VsHuV5ULS.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jacques Francois Shadow" - } - ] - }, - { - "name": "Jaldi", - "fontFamily": "Jaldi, sans-serif", - "slug": "wp-font-lib-jaldi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jaldi/v12/or3sQ67z0_CI30NUZpD_B6g8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jaldi" - }, - { - "src": "http://fonts.gstatic.com/s/jaldi/v12/or3hQ67z0_CI33voSbT3LLQ1niPn.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Jaldi" - } - ] - }, - { - "name": "JetBrains Mono", - "fontFamily": "JetBrains Mono, monospace", - "slug": "wp-font-lib-jetbrains-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yK1jPVmUsaaDhw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKxjPVmUsaaDhw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8lqxjPVmUsaaDhw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjPVmUsaaDhw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8-qxjPVmUsaaDhw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8FqtjPVmUsaaDhw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tjPVmUsaaDhw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKtjPVmUsaaDhw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-Lf1OQk6OThxPA.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LflOQk6OThxPA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO_VflOQk6OThxPA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-LflOQk6OThxPA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-5flOQk6OThxPA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9VeVOQk6OThxPA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9seVOQk6OThxPA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LeVOQk6OThxPA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono" - } - ] - }, - { - "name": "Jim Nightshade", - "fontFamily": "Jim Nightshade, cursive", - "slug": "wp-font-lib-jim-nightshade", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jimnightshade/v20/PlIkFlu9Pb08Q8HLM1PxmB0g-OS4V3qKaMxD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jim Nightshade" - } - ] - }, - { - "name": "Joan", - "fontFamily": "Joan, serif", - "slug": "wp-font-lib-joan", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/joan/v2/ZXupe1oZsqWRbRdH8X1p_Ng.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Joan" - } - ] - }, - { - "name": "Jockey One", - "fontFamily": "Jockey One, sans-serif", - "slug": "wp-font-lib-jockey-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jockeyone/v16/HTxpL2g2KjCFj4x8WI6ArIb7HYOk4xc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jockey One" - } - ] - }, - { - "name": "Jolly Lodger", - "fontFamily": "Jolly Lodger, system-ui", - "slug": "wp-font-lib-jolly-lodger", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jollylodger/v20/BXRsvFTAh_bGkA1uQ48dlB3VWerT3ZyuqA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jolly Lodger" - } - ] - }, - { - "name": "Jomhuria", - "fontFamily": "Jomhuria, system-ui", - "slug": "wp-font-lib-jomhuria", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jomhuria/v18/Dxxp8j-TMXf-llKur2b1MOGbC3Dh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jomhuria" - } - ] - }, - { - "name": "Jomolhari", - "fontFamily": "Jomolhari, serif", - "slug": "wp-font-lib-jomolhari", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jomolhari/v14/EvONzA1M1Iw_CBd2hsQCF1IZKq5INg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jomolhari" - } - ] - }, - { - "name": "Josefin Sans", - "fontFamily": "Josefin Sans, sans-serif", - "slug": "wp-font-lib-josefin-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjRXMFrLgTsQV0.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_LjQXMFrLgTsQV0.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_GbQXMFrLgTsQV0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjQXMFrLgTsQV0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ArQXMFrLgTsQV0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ObXXMFrLgTsQV0.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_N_XXMFrLgTsQV0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtINhKibpUV3MEQ.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTNIJhKibpUV3MEQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCT6oJhKibpUV3MEQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtIJhKibpUV3MEQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCThoJhKibpUV3MEQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTaoVhKibpUV3MEQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTU4VhKibpUV3MEQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Josefin Sans" - } - ] - }, - { - "name": "Josefin Slab", - "fontFamily": "Josefin Slab, serif", - "slug": "wp-font-lib-josefin-slab", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71mtd3k3K6CcEyI.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W79msd3k3K6CcEyI.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W7wesd3k3K6CcEyI.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71msd3k3K6CcEyI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W72usd3k3K6CcEyI.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W74erd3k3K6CcEyI.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W776rd3k3K6CcEyI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzs9L4KZAyK43w.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvHzo9L4KZAyK43w.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvwTo9L4KZAyK43w.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzo9L4KZAyK43w.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvrTo9L4KZAyK43w.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvQT09L4KZAyK43w.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHveD09L4KZAyK43w.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Josefin Slab" - } - ] - }, - { - "name": "Jost", - "fontFamily": "Jost, sans-serif", - "slug": "wp-font-lib-jost", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJAVGPokMmuHL.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwjJQVGPokMmuHL.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mz9JQVGPokMmuHL.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJQVGPokMmuHL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myRJQVGPokMmuHL.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mx9IgVGPokMmuHL.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mxEIgVGPokMmuHL.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwjIgVGPokMmuHL.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwKIgVGPokMmuHL.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0ENI0un_HLMEo.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0FNI0un_HLMEo.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZrMFNI0un_HLMEo.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0FNI0un_HLMEo.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZt8FNI0un_HLMEo.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZjMCNI0un_HLMEo.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZgoCNI0un_HLMEo.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0CNI0un_HLMEo.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZkQCNI0un_HLMEo.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Jost" - } - ] - }, - { - "name": "Joti One", - "fontFamily": "Joti One, system-ui", - "slug": "wp-font-lib-joti-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jotione/v22/Z9XVDmdJQAmWm9TwaYTe4u2El6GC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Joti One" - } - ] - }, - { - "name": "Jua", - "fontFamily": "Jua, sans-serif", - "slug": "wp-font-lib-jua", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jua/v13/co3KmW9ljjAjc-DZCsKgsg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jua" - } - ] - }, - { - "name": "Judson", - "fontFamily": "Judson, serif", - "slug": "wp-font-lib-judson", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/judson/v19/FeVRS0Fbvbc14VxRD7N01bV7kg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Judson" - }, - { - "src": "http://fonts.gstatic.com/s/judson/v19/FeVTS0Fbvbc14VxhDblw97BrknZf.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Judson" - }, - { - "src": "http://fonts.gstatic.com/s/judson/v19/FeVSS0Fbvbc14Vxps5xQ3Z5nm29Gww.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Judson" - } - ] - }, - { - "name": "Julee", - "fontFamily": "Julee, cursive", - "slug": "wp-font-lib-julee", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/julee/v25/TuGfUVB3RpZPQ6ZLodgzydtk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Julee" - } - ] - }, - { - "name": "Julius Sans One", - "fontFamily": "Julius Sans One, sans-serif", - "slug": "wp-font-lib-julius-sans-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/juliussansone/v14/1Pt2g8TAX_SGgBGUi0tGOYEga5W-xXEW6aGXHw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Julius Sans One" - } - ] - }, - { - "name": "Junge", - "fontFamily": "Junge, serif", - "slug": "wp-font-lib-junge", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/junge/v20/gokgH670Gl1lUqAdvhB7SnKm.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Junge" - } - ] - }, - { - "name": "Jura", - "fontFamily": "Jura, sans-serif", - "slug": "wp-font-lib-jura", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP0D7auhTfmrH_rt.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Jura" - }, - { - "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP1d7auhTfmrH_rt.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jura" - }, - { - "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP1v7auhTfmrH_rt.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Jura" - }, - { - "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP2D6quhTfmrH_rt.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Jura" - }, - { - "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP266quhTfmrH_rt.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Jura" - } - ] - }, - { - "name": "Just Another Hand", - "fontFamily": "Just Another Hand, cursive", - "slug": "wp-font-lib-just-another-hand", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/justanotherhand/v19/845CNN4-AJyIGvIou-6yJKyptyOpOcr_BmmlS5aw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Just Another Hand" - } - ] - }, - { - "name": "Just Me Again Down Here", - "fontFamily": "Just Me Again Down Here, cursive", - "slug": "wp-font-lib-just-me-again-down-here", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/justmeagaindownhere/v24/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwHvqDwc_fg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Just Me Again Down Here" - } - ] - }, - { - "name": "K2D", - "fontFamily": "K2D, sans-serif", - "slug": "wp-font-lib-k2d", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7aRnpF2V0ErE6UpvrIw74NL.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7afnpF2V0EjdZ1NtLYS6pNLAjk.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Erv4QJlJw85ppSGw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3hlZY4xJ9CGyAa.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Er24cJlJw85ppSGw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2FlpY4xJ9CGyAa.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7aTnpF2V0ETd68tnLcg7w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7aRnpF2V0EjdaUpvrIw74NL.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Erg4YJlJw85ppSGw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3dl5Y4xJ9CGyAa.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Err4EJlJw85ppSGw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3xkJY4xJ9CGyAa.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Ery4AJlJw85ppSGw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2VkZY4xJ9CGyAa.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Er14MJlJw85ppSGw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2JkpY4xJ9CGyAa.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "K2D" - } - ] - }, - { - "name": "Kadwa", - "fontFamily": "Kadwa, serif", - "slug": "wp-font-lib-kadwa", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kadwa/v10/rnCm-x5V0g7iphTHRcc2s2XH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kadwa" - }, - { - "src": "http://fonts.gstatic.com/s/kadwa/v10/rnCr-x5V0g7ipix7auM-mHnOSOuk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kadwa" - } - ] - }, - { - "name": "Kaisei Decol", - "fontFamily": "Kaisei Decol, serif", - "slug": "wp-font-lib-kaisei-decol", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrwmSqP45sidWf3QmfFW6iyW1EP22OjoA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kaisei Decol" - }, - { - "src": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iKr3gr00i_qb57kA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kaisei Decol" - }, - { - "src": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iK534r00i_qb57kA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kaisei Decol" - } - ] - }, - { - "name": "Kaisei HarunoUmi", - "fontFamily": "Kaisei HarunoUmi, serif", - "slug": "wp-font-lib-kaisei-harunoumi", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_RiZQSLqBQoAHhK_C6N_nzy_jcGsv5sM8u3mk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kaisei HarunoUmi" - }, - { - "src": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcIj_QlMcFwmC9FAU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kaisei HarunoUmi" - }, - { - "src": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcInfWlMcFwmC9FAU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kaisei HarunoUmi" - } - ] - }, - { - "name": "Kaisei Opti", - "fontFamily": "Kaisei Opti, serif", - "slug": "wp-font-lib-kaisei-opti", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldKNThJphYb8_g6c2nlIFle7KlmxuHx.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kaisei Opti" - }, - { - "src": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGGqxY1u7f34DYwn.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kaisei Opti" - }, - { - "src": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGHiw41u7f34DYwn.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kaisei Opti" - } - ] - }, - { - "name": "Kaisei Tokumin", - "fontFamily": "Kaisei Tokumin, serif", - "slug": "wp-font-lib-kaisei-tokumin", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8sN5wdZg7xCwuMsylww2ZiQkJf1l0pj946.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kaisei Tokumin" - }, - { - "src": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnqr_3khpMIzeI6v.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kaisei Tokumin" - }, - { - "src": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnrj-XkhpMIzeI6v.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kaisei Tokumin" - }, - { - "src": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnr_-nkhpMIzeI6v.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Kaisei Tokumin" - } - ] - }, - { - "name": "Kalam", - "fontFamily": "Kalam, cursive", - "slug": "wp-font-lib-kalam", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtD6GgLLmCUItqGt.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kalam" - }, - { - "src": "http://fonts.gstatic.com/s/kalam/v16/YA9dr0Wd4kDdMuhWMibDszkB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kalam" - }, - { - "src": "http://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtDqHQLLmCUItqGt.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kalam" - } - ] - }, - { - "name": "Kameron", - "fontFamily": "Kameron, serif", - "slug": "wp-font-lib-kameron", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kameron/v15/vm82dR7vXErQxuznsL4wL-XIYH8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kameron" - }, - { - "src": "http://fonts.gstatic.com/s/kameron/v15/vm8zdR7vXErQxuzniAIfC-3jfHb--NY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kameron" - } - ] - }, - { - "name": "Kanit", - "fontFamily": "Kanit, sans-serif", - "slug": "wp-font-lib-kanit", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKX-Go6G5tXcr72GwWKcaxALFs.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKV-Go6G5tXcraQI2GAdY5FPFtrGw.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr5aOiWgX6BJNUJy.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI82hVaRrMFJyAu4.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4-OSWgX6BJNUJy.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI6miVaRrMFJyAu4.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKZ-Go6G5tXcoaSEQGodLxA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKX-Go6G5tXcraQGwWKcaxALFs.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr5mOCWgX6BJNUJy.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI_GjVaRrMFJyAu4.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr5KPyWgX6BJNUJy.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI92kVaRrMFJyAu4.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4uPiWgX6BJNUJy.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI7mlVaRrMFJyAu4.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4yPSWgX6BJNUJy.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI6WmVaRrMFJyAu4.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4WPCWgX6BJNUJy.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI4GnVaRrMFJyAu4.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Kanit" - } - ] - }, - { - "name": "Kantumruy Pro", - "fontFamily": "Kantumruy Pro, sans-serif", - "slug": "wp-font-lib-kantumruy-pro", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urUs0M34dR6dW.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg3urEs0M34dR6dW.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg0wrEs0M34dR6dW.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urEs0M34dR6dW.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1crEs0M34dR6dW.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2wq0s0M34dR6dW.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2Jq0s0M34dR6dW.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N2OXo_QrdWlcU.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7yN3OXo_QrdWlcU.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7_13OXo_QrdWlcU.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N3OXo_QrdWlcU.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim75F3OXo_QrdWlcU.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim731wOXo_QrdWlcU.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim70RwOXo_QrdWlcU.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Kantumruy Pro" - } - ] - }, - { - "name": "Karantina", - "fontFamily": "Karantina, system-ui", - "slug": "wp-font-lib-karantina", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxXCgf-P5Oaiw4cw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Karantina" - }, - { - "src": "http://fonts.gstatic.com/s/karantina/v11/buE0po24ccnh31GVMABJ8AA78NVSYw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Karantina" - }, - { - "src": "http://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxTC8f-P5Oaiw4cw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Karantina" - } - ] - }, - { - "name": "Karla", - "fontFamily": "Karla, sans-serif", - "slug": "wp-font-lib-karla", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJqqFENLR7fHGw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDppqqFENLR7fHGw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqqFENLR7fHGw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDypqqFENLR7fHGw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDJp2qFENLR7fHGw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDH52qFENLR7fHGw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJ2qFENLR7fHGw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCV0lPZbLXGxGR.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNkcV0lPZbLXGxGR.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlCV0lPZbLXGxGR.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlwV0lPZbLXGxGR.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmcUElPZbLXGxGR.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmlUElPZbLXGxGR.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCUElPZbLXGxGR.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Karla" - } - ] - }, - { - "name": "Karma", - "fontFamily": "Karma, serif", - "slug": "wp-font-lib-karma", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjDY8Z_uqzGQC_-.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Karma" - }, - { - "src": "http://fonts.gstatic.com/s/karma/v16/va9I4kzAzMZRGIBvS-J3kbDP.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Karma" - }, - { - "src": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLibYsZ_uqzGQC_-.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Karma" - }, - { - "src": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLi3ZcZ_uqzGQC_-.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Karma" - }, - { - "src": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjTZMZ_uqzGQC_-.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Karma" - } - ] - }, - { - "name": "Katibeh", - "fontFamily": "Katibeh, system-ui", - "slug": "wp-font-lib-katibeh", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/katibeh/v17/ZGjXol5MQJog4bxDaC1RVDNdGDs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Katibeh" - } - ] - }, - { - "name": "Kaushan Script", - "fontFamily": "Kaushan Script, cursive", - "slug": "wp-font-lib-kaushan-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kaushanscript/v14/vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kaushan Script" - } - ] - }, - { - "name": "Kavivanar", - "fontFamily": "Kavivanar, cursive", - "slug": "wp-font-lib-kavivanar", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kavivanar/v18/o-0IIpQgyXYSwhxP7_Jb4j5Ba_2c7A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kavivanar" - } - ] - }, - { - "name": "Kavoon", - "fontFamily": "Kavoon, system-ui", - "slug": "wp-font-lib-kavoon", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kavoon/v21/pxiFyp4_scRYhlU4NLr6f1pdEQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kavoon" - } - ] - }, - { - "name": "Kdam Thmor Pro", - "fontFamily": "Kdam Thmor Pro, sans-serif", - "slug": "wp-font-lib-kdam-thmor-pro", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kdamthmorpro/v1/EJRPQgAzVdcI-Qdvt34jzurnGA7_j89I8ZWb.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kdam Thmor Pro" - } - ] - }, - { - "name": "Keania One", - "fontFamily": "Keania One, system-ui", - "slug": "wp-font-lib-keania-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/keaniaone/v21/zOL54pXJk65E8pXardnuycRuv-hHkOs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Keania One" - } - ] - }, - { - "name": "Kelly Slab", - "fontFamily": "Kelly Slab, system-ui", - "slug": "wp-font-lib-kelly-slab", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kellyslab/v15/-W_7XJX0Rz3cxUnJC5t6TkMBf50kbiM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kelly Slab" - } - ] - }, - { - "name": "Kenia", - "fontFamily": "Kenia, system-ui", - "slug": "wp-font-lib-kenia", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kenia/v24/jizURE5PuHQH9qCONUGswfGM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kenia" - } - ] - }, - { - "name": "Khand", - "fontFamily": "Khand, sans-serif", - "slug": "wp-font-lib-khand", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bL5cFE3ZwaH__-C.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Khand" - }, - { - "src": "http://fonts.gstatic.com/s/khand/v17/TwMA-IINQlQQ0YpVWHU_TBqO.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Khand" - }, - { - "src": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bKhcVE3ZwaH__-C.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Khand" - }, - { - "src": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bKNdlE3ZwaH__-C.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Khand" - }, - { - "src": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bLpd1E3ZwaH__-C.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Khand" - } - ] - }, - { - "name": "Khmer", - "fontFamily": "Khmer, system-ui", - "slug": "wp-font-lib-khmer", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/khmer/v25/MjQImit_vPPwpF-BpN2EeYmD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Khmer" - } - ] - }, - { - "name": "Khula", - "fontFamily": "Khula, sans-serif", - "slug": "wp-font-lib-khula", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-ljCvUrC59XwXD.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Khula" - }, - { - "src": "http://fonts.gstatic.com/s/khula/v12/OpNCnoEOns3V7FcJpA_chzJ0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Khula" - }, - { - "src": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G_RiivUrC59XwXD.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Khula" - }, - { - "src": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-1iyvUrC59XwXD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Khula" - }, - { - "src": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-piCvUrC59XwXD.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Khula" - } - ] - }, - { - "name": "Kings", - "fontFamily": "Kings, cursive", - "slug": "wp-font-lib-kings", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kings/v5/8AtnGsK4O5CYXU_Iq6GSPaHS.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kings" - } - ] - }, - { - "name": "Kirang Haerang", - "fontFamily": "Kirang Haerang, system-ui", - "slug": "wp-font-lib-kirang-haerang", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kiranghaerang/v20/E21-_dn_gvvIjhYON1lpIU4-bcqvWPaJq4no.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kirang Haerang" - } - ] - }, - { - "name": "Kite One", - "fontFamily": "Kite One, sans-serif", - "slug": "wp-font-lib-kite-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kiteone/v22/70lQu7shLnA_E02vyq1b6HnGO4uA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kite One" - } - ] - }, - { - "name": "Kiwi Maru", - "fontFamily": "Kiwi Maru, serif", - "slug": "wp-font-lib-kiwi-maru", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gNCi0Vxn9R5ShnA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kiwi Maru" - }, - { - "src": "http://fonts.gstatic.com/s/kiwimaru/v14/R70YjykGkuuDep-hRg6YmACQXzLhTg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kiwi Maru" - }, - { - "src": "http://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gbCm0Vxn9R5ShnA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kiwi Maru" - } - ] - }, - { - "name": "Klee One", - "fontFamily": "Klee One, cursive", - "slug": "wp-font-lib-klee-one", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kleeone/v7/LDIxapCLNRc6A8oT4q4AOeekWPrP.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Klee One" - }, - { - "src": "http://fonts.gstatic.com/s/kleeone/v7/LDI2apCLNRc6A8oT4pbYF8Osc-bGkqIw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Klee One" - } - ] - }, - { - "name": "Knewave", - "fontFamily": "Knewave, system-ui", - "slug": "wp-font-lib-knewave", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/knewave/v14/sykz-yx0lLcxQaSItSq9-trEvlQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Knewave" - } - ] - }, - { - "name": "KoHo", - "fontFamily": "KoHo, sans-serif", - "slug": "wp-font-lib-koho", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPuE1WJ75JoKhHys.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "KoHo" - }, - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNisssJ_zIqCkDyvqZA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "KoHo" - }, - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPoU2WJ75JoKhHys.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "KoHo" - }, - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNiss1JzzIqCkDyvqZA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "KoHo" - }, - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2F-fZ5fmddNBikefJbSOos.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "KoHo" - }, - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2FwfZ5fmddNNisUeLTXKou4Bg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "KoHo" - }, - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPt03WJ75JoKhHys.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "KoHo" - }, - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissjJ3zIqCkDyvqZA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "KoHo" - }, - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPvEwWJ75JoKhHys.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "KoHo" - }, - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissoJrzIqCkDyvqZA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "KoHo" - }, - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPpUxWJ75JoKhHys.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "KoHo" - }, - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissxJvzIqCkDyvqZA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "KoHo" - } - ] - }, - { - "name": "Kodchasan", - "fontFamily": "Kodchasan, sans-serif", - "slug": "wp-font-lib-kodchasan", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeR1Cggeqo3eMeoA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Kodchasan" - }, - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUlIgOCs_-YOoIgN.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Kodchasan" - }, - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeI1Oggeqo3eMeoA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kodchasan" - }, - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUksg-Cs_-YOoIgN.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Kodchasan" - }, - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXxaUPOAJv9sG4I-DJmj3uEicG01A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kodchasan" - }, - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX3aUPOAJv9sG4I-DJWjXGAq8Sk1PoH.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Kodchasan" - }, - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJee1Kggeqo3eMeoA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kodchasan" - }, - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUl0guCs_-YOoIgN.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Kodchasan" - }, - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeV1Wggeqo3eMeoA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Kodchasan" - }, - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUlYheCs_-YOoIgN.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Kodchasan" - }, - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeM1Sggeqo3eMeoA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kodchasan" - }, - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUk8hOCs_-YOoIgN.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Kodchasan" - } - ] - }, - { - "name": "Koh Santepheap", - "fontFamily": "Koh Santepheap, system-ui", - "slug": "wp-font-lib-koh-santepheap", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMfW3p6SJbwyGj2rBZyeOrTjNuFHVyTtjNJUWU.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Koh Santepheap" - }, - { - "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtNP3y5mD9ASHz5.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Koh Santepheap" - }, - { - "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMdW3p6SJbwyGj2rBZyeOrTjOPhF1ixsyNJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Koh Santepheap" - }, - { - "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtdOHy5mD9ASHz5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Koh Santepheap" - }, - { - "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtlOny5mD9ASHz5.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Koh Santepheap" - } - ] - }, - { - "name": "Kolker Brush", - "fontFamily": "Kolker Brush, cursive", - "slug": "wp-font-lib-kolker-brush", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kolkerbrush/v3/iJWDBXWRZjfKWdvmzwvvog3-7KJ6x8qNUQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kolker Brush" - } - ] - }, - { - "name": "Konkhmer Sleokchher", - "fontFamily": "Konkhmer Sleokchher, system-ui", - "slug": "wp-font-lib-konkhmer-sleokchher", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/konkhmersleokchher/v2/_Xmw-GE-rjmabA_M-aPOZOsCrUv825LFI3507E0d-W0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Konkhmer Sleokchher" - } - ] - }, - { - "name": "Kosugi", - "fontFamily": "Kosugi, sans-serif", - "slug": "wp-font-lib-kosugi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kosugi/v15/pxiFyp4_v8FCjlI4NLr6f1pdEQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kosugi" - } - ] - }, - { - "name": "Kosugi Maru", - "fontFamily": "Kosugi Maru, sans-serif", - "slug": "wp-font-lib-kosugi-maru", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kosugimaru/v14/0nksC9PgP_wGh21A2KeqGiTqivr9iBq_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kosugi Maru" - } - ] - }, - { - "name": "Kotta One", - "fontFamily": "Kotta One, serif", - "slug": "wp-font-lib-kotta-one", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kottaone/v20/S6u_w41LXzPc_jlfNWqPHA3s5dwt7w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kotta One" - } - ] - }, - { - "name": "Koulen", - "fontFamily": "Koulen, system-ui", - "slug": "wp-font-lib-koulen", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/koulen/v25/AMOQz46as3KIBPeWgnA9kuYMUg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Koulen" - } - ] - }, - { - "name": "Kranky", - "fontFamily": "Kranky, system-ui", - "slug": "wp-font-lib-kranky", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kranky/v24/hESw6XVgJzlPsFnMpheEZo_H_w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kranky" - } - ] - }, - { - "name": "Kreon", - "fontFamily": "Kreon, serif", - "slug": "wp-font-lib-kreon", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvPNimejUfp2dWNg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kreon" - }, - { - "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvYtimejUfp2dWNg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kreon" - }, - { - "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvUNimejUfp2dWNg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kreon" - }, - { - "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvvN-mejUfp2dWNg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Kreon" - }, - { - "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2Dnvhd-mejUfp2dWNg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kreon" - } - ] - }, - { - "name": "Kristi", - "fontFamily": "Kristi, cursive", - "slug": "wp-font-lib-kristi", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kristi/v17/uK_y4ricdeU6zwdRCh0TMv6EXw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kristi" - } - ] - }, - { - "name": "Krona One", - "fontFamily": "Krona One, sans-serif", - "slug": "wp-font-lib-krona-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kronaone/v14/jAnEgHdjHcjgfIb1ZcUCMY-h3cWkWg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Krona One" - } - ] - }, - { - "name": "Krub", - "fontFamily": "Krub, sans-serif", - "slug": "wp-font-lib-krub", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZo47KLF4R6gWaf8.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Krub" - }, - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQiwLByQ4oTef_6gQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Krub" - }, - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZuo4KLF4R6gWaf8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Krub" - }, - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQipLNyQ4oTef_6gQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Krub" - }, - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlLdRyC6CRYXkYQDLlTW6E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Krub" - }, - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlFdRyC6CRYbkQaCJtWS6EPcA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Krub" - }, - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZrI5KLF4R6gWaf8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Krub" - }, - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi_LJyQ4oTef_6gQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Krub" - }, - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZp4-KLF4R6gWaf8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Krub" - }, - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi0LVyQ4oTef_6gQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Krub" - }, - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZvo_KLF4R6gWaf8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Krub" - }, - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQitLRyQ4oTef_6gQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Krub" - } - ] - }, - { - "name": "Kufam", - "fontFamily": "Kufam, sans-serif", - "slug": "wp-font-lib-kufam", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3lqk7qQCJHvIwYg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kufam" - }, - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3pKk7qQCJHvIwYg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kufam" - }, - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3SK47qQCJHvIwYg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Kufam" - }, - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3ca47qQCJHvIwYg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kufam" - }, - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3Fq47qQCJHvIwYg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Kufam" - }, - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3P647qQCJHvIwYg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Kufam" - }, - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXurT6gqNPPcgYp0i.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Kufam" - }, - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXurh6gqNPPcgYp0i.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Kufam" - }, - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXuoN7QqNPPcgYp0i.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Kufam" - }, - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXuo07QqNPPcgYp0i.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Kufam" - }, - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXupT7QqNPPcgYp0i.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Kufam" - }, - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXup67QqNPPcgYp0i.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Kufam" - } - ] - }, - { - "name": "Kulim Park", - "fontFamily": "Kulim Park, sans-serif", - "slug": "wp-font-lib-kulim-park", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjJYNwa5aZbUvGjU.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Kulim Park" - }, - { - "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUKa9QYZcqCjVVUA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Kulim Park" - }, - { - "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjPIOwa5aZbUvGjU.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kulim Park" - }, - { - "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUTaxQYZcqCjVVUA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Kulim Park" - }, - { - "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN79secq3hflz1Uu3IwtF4m5aZxebw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kulim Park" - }, - { - "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN59secq3hflz1Uu3IwhFws4YR0abw2Aw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Kulim Park" - }, - { - "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjIYIwa5aZbUvGjU.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Kulim Park" - }, - { - "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUOapQYZcqCjVVUA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Kulim Park" - }, - { - "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjOIJwa5aZbUvGjU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kulim Park" - }, - { - "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUXatQYZcqCjVVUA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Kulim Park" - } - ] - }, - { - "name": "Kumar One", - "fontFamily": "Kumar One, system-ui", - "slug": "wp-font-lib-kumar-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kumarone/v18/bMr1mS-P958wYi6YaGeGNO6WU3oT0g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kumar One" - } - ] - }, - { - "name": "Kumar One Outline", - "fontFamily": "Kumar One Outline, system-ui", - "slug": "wp-font-lib-kumar-one-outline", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kumaroneoutline/v17/Noao6VH62pyLP0fsrZ-v18wlUEcX9zDwRQu8EGKF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kumar One Outline" - } - ] - }, - { - "name": "Kumbh Sans", - "fontFamily": "Kumbh Sans, sans-serif", - "slug": "wp-font-lib-kumbh-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQkZcA8bTuUkqaLg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans" - }, - { - "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQEZYA8bTuUkqaLg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans" - }, - { - "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQz5YA8bTuUkqaLg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans" - }, - { - "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQkZYA8bTuUkqaLg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans" - }, - { - "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQo5YA8bTuUkqaLg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans" - }, - { - "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQT5EA8bTuUkqaLg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans" - }, - { - "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQdpEA8bTuUkqaLg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans" - }, - { - "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQEZEA8bTuUkqaLg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans" - }, - { - "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQOJEA8bTuUkqaLg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans" - } - ] - }, - { - "name": "Kurale", - "fontFamily": "Kurale, serif", - "slug": "wp-font-lib-kurale", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kurale/v11/4iCs6KV9e9dXjho6eAT3v02QFg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kurale" - } - ] - }, - { - "name": "La Belle Aurore", - "fontFamily": "La Belle Aurore, cursive", - "slug": "wp-font-lib-la-belle-aurore", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/labelleaurore/v16/RrQIbot8-mNYKnGNDkWlocovHeIIG-eFNVmULg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "La Belle Aurore" - } - ] - }, - { - "name": "Labrada", - "fontFamily": "Labrada, serif", - "slug": "wp-font-lib-labrada", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VTSgM4QPdUej17.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9XTSwM4QPdUej17.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9UNSwM4QPdUej17.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VTSwM4QPdUej17.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VhSwM4QPdUej17.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9WNTAM4QPdUej17.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9W0TAM4QPdUej17.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9XTTAM4QPdUej17.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9X6TAM4QPdUej17.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCOt6SvN2fy17-dE.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCGt7SvN2fy17-dE.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCLV7SvN2fy17-dE.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCOt7SvN2fy17-dE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCNl7SvN2fy17-dE.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCDV8SvN2fy17-dE.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCAx8SvN2fy17-dE.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCGt8SvN2fy17-dE.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCEJ8SvN2fy17-dE.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Labrada" - } - ] - }, - { - "name": "Lacquer", - "fontFamily": "Lacquer, system-ui", - "slug": "wp-font-lib-lacquer", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lacquer/v15/EYqzma1QwqpG4_BBB7-AXhttQ5I.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lacquer" - } - ] - }, - { - "name": "Laila", - "fontFamily": "Laila, sans-serif", - "slug": "wp-font-lib-laila", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLzxogNAh14nVcfe.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Laila" - }, - { - "src": "http://fonts.gstatic.com/s/laila/v13/LYjMdG_8nE8jDIRdiidIrEIu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Laila" - }, - { - "src": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLypowNAh14nVcfe.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Laila" - }, - { - "src": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLyFpANAh14nVcfe.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Laila" - }, - { - "src": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLzhpQNAh14nVcfe.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Laila" - } - ] - }, - { - "name": "Lakki Reddy", - "fontFamily": "Lakki Reddy, cursive", - "slug": "wp-font-lib-lakki-reddy", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lakkireddy/v19/S6u5w49MUSzD9jlCPmvLZQfox9k97-xZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lakki Reddy" - } - ] - }, - { - "name": "Lalezar", - "fontFamily": "Lalezar, system-ui", - "slug": "wp-font-lib-lalezar", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lalezar/v14/zrfl0HLVx-HwTP82UaDyIiL0RCg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lalezar" - } - ] - }, - { - "name": "Lancelot", - "fontFamily": "Lancelot, system-ui", - "slug": "wp-font-lib-lancelot", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lancelot/v23/J7acnppxBGtQEulG4JY4xJ9CGyAa.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lancelot" - } - ] - }, - { - "name": "Langar", - "fontFamily": "Langar, system-ui", - "slug": "wp-font-lib-langar", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/langar/v27/kJEyBukW7AIlgjGVrTVZ99sqrQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Langar" - } - ] - }, - { - "name": "Lateef", - "fontFamily": "Lateef, serif", - "slug": "wp-font-lib-lateef", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0bjygbqTb9nQ-RA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lateef" - }, - { - "src": "http://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0Cj-gbqTb9nQ-RA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lateef" - }, - { - "src": "http://fonts.gstatic.com/s/lateef/v29/hESw6XVnNCxEvkbMpheEZo_H_w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lateef" - }, - { - "src": "http://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0Uj6gbqTb9nQ-RA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lateef" - }, - { - "src": "http://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0fjmgbqTb9nQ-RA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lateef" - }, - { - "src": "http://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0GjigbqTb9nQ-RA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lateef" - }, - { - "src": "http://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0BjugbqTb9nQ-RA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lateef" - } - ] - }, - { - "name": "Lato", - "fontFamily": "Lato, sans-serif", - "slug": "wp-font-lib-lato", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHh30wWyWrFCbw7A.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lato" - }, - { - "src": "http://fonts.gstatic.com/s/lato/v24/S6u-w4BMUTPHjxsIPy-vNiPg7MU0.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Lato" - }, - { - "src": "http://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh7USew-FGC_p9dw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lato" - }, - { - "src": "http://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI9w2PHA3s5dwt7w.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Lato" - }, - { - "src": "http://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxk6XweuBCY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lato" - }, - { - "src": "http://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxswWyWrFCbw7A.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Lato" - }, - { - "src": "http://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lato" - }, - { - "src": "http://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Lato" - }, - { - "src": "http://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lato" - }, - { - "src": "http://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Lato" - } - ] - }, - { - "name": "Lavishly Yours", - "fontFamily": "Lavishly Yours, cursive", - "slug": "wp-font-lib-lavishly-yours", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lavishlyyours/v2/jizDREVIvGwH5OjiZmX9r5z_WxUY0TY7ikbI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lavishly Yours" - } - ] - }, - { - "name": "League Gothic", - "fontFamily": "League Gothic, sans-serif", - "slug": "wp-font-lib-league-gothic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/leaguegothic/v6/qFdR35CBi4tvBz81xy7WG7ep-BQAY7Krj7feObpH_-amidQ6Q9hn.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "League Gothic" - } - ] - }, - { - "name": "League Script", - "fontFamily": "League Script, cursive", - "slug": "wp-font-lib-league-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/leaguescript/v24/CSR54zpSlumSWj9CGVsoBZdeaNNUuOwkC2s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "League Script" - } - ] - }, - { - "name": "League Spartan", - "fontFamily": "League Spartan, sans-serif", - "slug": "wp-font-lib-league-spartan", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oXpBMdcFguczA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "League Spartan" - }, - { - "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoTpBMdcFguczA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "League Spartan" - }, - { - "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITpBMdcFguczA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "League Spartan" - }, - { - "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTpBMdcFguczA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "League Spartan" - }, - { - "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMzITpBMdcFguczA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "League Spartan" - }, - { - "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMIIPpBMdcFguczA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "League Spartan" - }, - { - "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPpBMdcFguczA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "League Spartan" - }, - { - "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoPpBMdcFguczA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "League Spartan" - }, - { - "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMV4PpBMdcFguczA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "League Spartan" - } - ] - }, - { - "name": "Leckerli One", - "fontFamily": "Leckerli One, cursive", - "slug": "wp-font-lib-leckerli-one", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/leckerlione/v16/V8mCoQH8VCsNttEnxnGQ-1itLZxcBtItFw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Leckerli One" - } - ] - }, - { - "name": "Ledger", - "fontFamily": "Ledger, serif", - "slug": "wp-font-lib-ledger", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ledger/v16/j8_q6-HK1L3if_sxm8DwHTBhHw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ledger" - } - ] - }, - { - "name": "Lekton", - "fontFamily": "Lekton, sans-serif", - "slug": "wp-font-lib-lekton", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lekton/v17/SZc43FDmLaWmWpBeXxfonUPL6Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lekton" - }, - { - "src": "http://fonts.gstatic.com/s/lekton/v17/SZc63FDmLaWmWpBuXR3sv0bb6StO.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Lekton" - }, - { - "src": "http://fonts.gstatic.com/s/lekton/v17/SZc73FDmLaWmWpBm4zjMlWjX4DJXgQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lekton" - } - ] - }, - { - "name": "Lemon", - "fontFamily": "Lemon, system-ui", - "slug": "wp-font-lib-lemon", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lemon/v15/HI_EiYEVKqRMq0jBSZXAQ4-d.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lemon" - } - ] - }, - { - "name": "Lemonada", - "fontFamily": "Lemonada, system-ui", - "slug": "wp-font-lib-lemonada", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGJOt2mfWc3Z2pTg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lemonada" - }, - { - "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGeut2mfWc3Z2pTg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lemonada" - }, - { - "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGSOt2mfWc3Z2pTg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lemonada" - }, - { - "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGpOx2mfWc3Z2pTg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lemonada" - }, - { - "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGnex2mfWc3Z2pTg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lemonada" - } - ] - }, - { - "name": "Lexend", - "fontFamily": "Lexend, sans-serif", - "slug": "wp-font-lib-lexend", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsX_LBte6KuGEo.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend" - }, - { - "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sW_LBte6KuGEo.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend" - }, - { - "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC2UW_LBte6KuGEo.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend" - }, - { - "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsW_LBte6KuGEo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend" - }, - { - "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCwkW_LBte6KuGEo.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend" - }, - { - "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC-UR_LBte6KuGEo.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend" - }, - { - "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC9wR_LBte6KuGEo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend" - }, - { - "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sR_LBte6KuGEo.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend" - }, - { - "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC5IR_LBte6KuGEo.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend" - } - ] - }, - { - "name": "Lexend Deca", - "fontFamily": "Lexend Deca, sans-serif", - "slug": "wp-font-lib-lexend-deca", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48MxArBPCqLNflg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend Deca" - }, - { - "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cM1ArBPCqLNflg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend Deca" - }, - { - "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4rs1ArBPCqLNflg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend Deca" - }, - { - "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48M1ArBPCqLNflg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend Deca" - }, - { - "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4ws1ArBPCqLNflg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend Deca" - }, - { - "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4LspArBPCqLNflg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend Deca" - }, - { - "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4F8pArBPCqLNflg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend Deca" - }, - { - "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cMpArBPCqLNflg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend Deca" - }, - { - "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4WcpArBPCqLNflg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend Deca" - } - ] - }, - { - "name": "Lexend Exa", - "fontFamily": "Lexend Exa, sans-serif", - "slug": "wp-font-lib-lexend-exa", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7T6bHHJ8BRq0b.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend Exa" - }, - { - "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7TqbHHJ8BRq0b.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend Exa" - }, - { - "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9qlTqbHHJ8BRq0b.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend Exa" - }, - { - "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend Exa" - }, - { - "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9rJTqbHHJ8BRq0b.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend Exa" - }, - { - "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend Exa" - }, - { - "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9ocSabHHJ8BRq0b.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend Exa" - }, - { - "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7SabHHJ8BRq0b.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend Exa" - }, - { - "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9pSSabHHJ8BRq0b.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend Exa" - } - ] - }, - { - "name": "Lexend Giga", - "fontFamily": "Lexend Giga, sans-serif", - "slug": "wp-font-lib-lexend-giga", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LmE68oo6eepYQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend Giga" - }, - { - "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWLiE68oo6eepYQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend Giga" - }, - { - "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRChriE68oo6eepYQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend Giga" - }, - { - "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LiE68oo6eepYQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend Giga" - }, - { - "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC6riE68oo6eepYQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend Giga" - }, - { - "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCBr-E68oo6eepYQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend Giga" - }, - { - "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCP7-E68oo6eepYQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend Giga" - }, - { - "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWL-E68oo6eepYQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend Giga" - }, - { - "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCcb-E68oo6eepYQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend Giga" - } - ] - }, - { - "name": "Lexend Mega", - "fontFamily": "Lexend Mega, sans-serif", - "slug": "wp-font-lib-lexend-mega", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fivveyiq9EqQw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend Mega" - }, - { - "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcfmvveyiq9EqQw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend Mega" - }, - { - "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLr_mvveyiq9EqQw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend Mega" - }, - { - "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fmvveyiq9EqQw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend Mega" - }, - { - "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLw_mvveyiq9EqQw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend Mega" - }, - { - "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLL_6vveyiq9EqQw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend Mega" - }, - { - "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLFv6vveyiq9EqQw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend Mega" - }, - { - "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcf6vveyiq9EqQw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend Mega" - }, - { - "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLWP6vveyiq9EqQw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend Mega" - } - ] - }, - { - "name": "Lexend Peta", - "fontFamily": "Lexend Peta, sans-serif", - "slug": "wp-font-lib-lexend-peta", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SFyW1YuRTsnfw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend Peta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSByW1YuRTsnfw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend Peta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRtyByW1YuRTsnfw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend Peta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SByW1YuRTsnfw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend Peta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR2yByW1YuRTsnfw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend Peta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRNydyW1YuRTsnfw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend Peta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRDidyW1YuRTsnfw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend Peta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSdyW1YuRTsnfw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend Peta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRQCdyW1YuRTsnfw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend Peta" - } - ] - }, - { - "name": "Lexend Tera", - "fontFamily": "Lexend Tera, sans-serif", - "slug": "wp-font-lib-lexend-tera", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zITdpz0fYxcrQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend Tera" - }, - { - "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzMTdpz0fYxcrQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend Tera" - }, - { - "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMuTMTdpz0fYxcrQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend Tera" - }, - { - "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zMTdpz0fYxcrQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend Tera" - }, - { - "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM1TMTdpz0fYxcrQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend Tera" - }, - { - "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMOTQTdpz0fYxcrQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend Tera" - }, - { - "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMADQTdpz0fYxcrQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend Tera" - }, - { - "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzQTdpz0fYxcrQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend Tera" - }, - { - "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMTjQTdpz0fYxcrQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend Tera" - } - ] - }, - { - "name": "Lexend Zetta", - "fontFamily": "Lexend Zetta, sans-serif", - "slug": "wp-font-lib-lexend-zetta", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bH0z5jbs8qbts.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bG0z5jbs8qbts.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy4jG0z5jbs8qbts.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bG0z5jbs8qbts.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy-TG0z5jbs8qbts.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCywjB0z5jbs8qbts.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCyzHB0z5jbs8qbts.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bB0z5jbs8qbts.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy3_B0z5jbs8qbts.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta" - } - ] - }, - { - "name": "Libre Barcode 128", - "fontFamily": "Libre Barcode 128, system-ui", - "slug": "wp-font-lib-libre-barcode-128", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librebarcode128/v26/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A_gMk0izH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Barcode 128" - } - ] - }, - { - "name": "Libre Barcode 128 Text", - "fontFamily": "Libre Barcode 128 Text, system-ui", - "slug": "wp-font-lib-libre-barcode-128-text", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librebarcode128text/v26/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cV3Y6M90w4k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Barcode 128 Text" - } - ] - }, - { - "name": "Libre Barcode 39", - "fontFamily": "Libre Barcode 39, system-ui", - "slug": "wp-font-lib-libre-barcode-39", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librebarcode39/v19/-nFnOHM08vwC6h8Li1eQnP_AHzI2K_d709jy92k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Barcode 39" - } - ] - }, - { - "name": "Libre Barcode 39 Extended", - "fontFamily": "Libre Barcode 39 Extended, system-ui", - "slug": "wp-font-lib-libre-barcode-39-extended", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librebarcode39extended/v25/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNRCOZ1GOBw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Barcode 39 Extended" - } - ] - }, - { - "name": "Libre Barcode 39 Extended Text", - "fontFamily": "Libre Barcode 39 Extended Text, system-ui", - "slug": "wp-font-lib-libre-barcode-39-extended-text", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librebarcode39extendedtext/v25/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68fLIiPopNNA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Barcode 39 Extended Text" - } - ] - }, - { - "name": "Libre Barcode 39 Text", - "fontFamily": "Libre Barcode 39 Text, system-ui", - "slug": "wp-font-lib-libre-barcode-39-text", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librebarcode39text/v26/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-031RRL-9rYaw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Barcode 39 Text" - } - ] - }, - { - "name": "Libre Barcode EAN13 Text", - "fontFamily": "Libre Barcode EAN13 Text, system-ui", - "slug": "wp-font-lib-libre-barcode-ean13-text", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librebarcodeean13text/v19/wlpigxXFDU1_oCu9nfZytgIqSG0XRcJm_OQiB96PAGEki52WfA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Barcode EAN13 Text" - } - ] - }, - { - "name": "Libre Baskerville", - "fontFamily": "Libre Baskerville, serif", - "slug": "wp-font-lib-libre-baskerville", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNeYRI4CN2V.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Baskerville" - }, - { - "src": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxYaDc2V2ro.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Libre Baskerville" - }, - { - "src": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjYwI8Gcw6Oi.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Libre Baskerville" - } - ] - }, - { - "name": "Libre Bodoni", - "fontFamily": "Libre Bodoni, serif", - "slug": "wp-font-lib-libre-bodoni", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6I1fwWzZcOb3U3s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Bodoni" - }, - { - "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6L9fwWzZcOb3U3s.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Libre Bodoni" - }, - { - "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6FNYwWzZcOb3U3s.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Libre Bodoni" - }, - { - "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6GpYwWzZcOb3U3s.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Libre Bodoni" - }, - { - "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcKS_TdMTyQ3syLg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Libre Bodoni" - }, - { - "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcGy_TdMTyQ3syLg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Libre Bodoni" - }, - { - "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUc9yjTdMTyQ3syLg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Libre Bodoni" - }, - { - "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUczijTdMTyQ3syLg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Libre Bodoni" - } - ] - }, - { - "name": "Libre Caslon Display", - "fontFamily": "Libre Caslon Display, serif", - "slug": "wp-font-lib-libre-caslon-display", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librecaslondisplay/v14/TuGOUUFxWphYQ6YI6q9Xp61FQzxDRKmzr2lRdRhtCC4d.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Caslon Display" - } - ] - }, - { - "name": "Libre Caslon Text", - "fontFamily": "Libre Caslon Text, serif", - "slug": "wp-font-lib-libre-caslon-text", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT878IGsGw1aF1JU10PUbTvNNaDMcq_3eNrHgO1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Caslon Text" - }, - { - "src": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT678IGsGw1aF1JU10PUbTvNNaDMfq91-dJGxO1q9o.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Libre Caslon Text" - }, - { - "src": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT578IGsGw1aF1JU10PUbTvNNaDMfID8sdjNR-8ssPt.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Libre Caslon Text" - } - ] - }, - { - "name": "Libre Franklin", - "fontFamily": "Libre Franklin, sans-serif", - "slug": "wp-font-lib-libre-franklin", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsSUB9rIb-JH1g.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsWUB9rIb-JH1g.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhcMWUB9rIb-JH1g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsWUB9rIb-JH1g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhHMWUB9rIb-JH1g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduh8MKUB9rIb-JH1g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhycKUB9rIb-JH1g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsKUB9rIb-JH1g.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhh8KUB9rIb-JH1g.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RdDMTedX1sGE.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8RNDMTedX1sGE.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oYiRNDMTedX1sGE.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RNDMTedX1sGE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZORNDMTedX1sGE.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oaiQ9DMTedX1sGE.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oabQ9DMTedX1sGE.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8Q9DMTedX1sGE.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05obVQ9DMTedX1sGE.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Libre Franklin" - } - ] - }, - { - "name": "Licorice", - "fontFamily": "Licorice, cursive", - "slug": "wp-font-lib-licorice", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/licorice/v3/t5tjIR8TMomTCAyjNk23hqLgzCHu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Licorice" - } - ] - }, - { - "name": "Life Savers", - "fontFamily": "Life Savers, system-ui", - "slug": "wp-font-lib-life-savers", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lifesavers/v18/ZXuie1UftKKabUQMgxAal_lrFgpbuNvB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Life Savers" - }, - { - "src": "http://fonts.gstatic.com/s/lifesavers/v18/ZXu_e1UftKKabUQMgxAal8HXOS5Tk8fIpPRW.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Life Savers" - }, - { - "src": "http://fonts.gstatic.com/s/lifesavers/v18/ZXu_e1UftKKabUQMgxAal8HLOi5Tk8fIpPRW.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Life Savers" - } - ] - }, - { - "name": "Lilita One", - "fontFamily": "Lilita One, system-ui", - "slug": "wp-font-lib-lilita-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lilitaone/v13/i7dPIFZ9Zz-WBtRtedDbUEZ2RFq7AwU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lilita One" - } - ] - }, - { - "name": "Lily Script One", - "fontFamily": "Lily Script One, system-ui", - "slug": "wp-font-lib-lily-script-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lilyscriptone/v15/LhW9MV7ZMfIPdMxeBjBvFN8SXLS4gsSjQNsRMg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lily Script One" - } - ] - }, - { - "name": "Limelight", - "fontFamily": "Limelight, system-ui", - "slug": "wp-font-lib-limelight", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/limelight/v17/XLYkIZL7aopJVbZJHDuYPeNGrnY2TA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Limelight" - } - ] - }, - { - "name": "Linden Hill", - "fontFamily": "Linden Hill, serif", - "slug": "wp-font-lib-linden-hill", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lindenhill/v22/-F61fjxoKSg9Yc3hZgO8ygFI7CwC009k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Linden Hill" - }, - { - "src": "http://fonts.gstatic.com/s/lindenhill/v22/-F63fjxoKSg9Yc3hZgO8yjFK5igg1l9kn-s.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Linden Hill" - } - ] - }, - { - "name": "Literata", - "fontFamily": "Literata, serif", - "slug": "wp-font-lib-literata", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG_F_bcTWCWp8g.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbE-_F_bcTWCWp8g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbBG_F_bcTWCWp8g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbCO_F_bcTWCWp8g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbM-4F_bcTWCWp8g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbPa4F_bcTWCWp8g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG4F_bcTWCWp8g.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbLi4F_bcTWCWp8g.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7XWSUKTt8iVow.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8obXWSUKTt8iVow.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8_7XWSUKTt8iVow.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8zbXWSUKTt8iVow.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8IbLWSUKTt8iVow.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8GLLWSUKTt8iVow.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7LWSUKTt8iVow.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8VrLWSUKTt8iVow.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Literata" - } - ] - }, - { - "name": "Liu Jian Mao Cao", - "fontFamily": "Liu Jian Mao Cao, cursive", - "slug": "wp-font-lib-liu-jian-mao-cao", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/liujianmaocao/v15/~ChIKEExpdSBKaWFuIE1hbyBDYW8gACoECAEYAQ==.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Liu Jian Mao Cao" - } - ] - }, - { - "name": "Livvic", - "fontFamily": "Livvic, sans-serif", - "slug": "wp-font-lib-livvic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCr-x1S2hzjrlffC-M-mHnOSOuk.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCt-x1S2hzjrlfXbdtakn3sTfukQHs.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffp8IeslfCQfK9WQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdv2s13GY_etWWIJ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffw8EeslfCQfK9WQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbduSsF3GY_etWWIJ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCp-x1S2hzjrlfnb-k6unzeSA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCr-x1S2hzjrlfXbeM-mHnOSOuk.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffm8AeslfCQfK9WQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdvKsV3GY_etWWIJ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlfft8ceslfCQfK9WQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdvmtl3GY_etWWIJ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlff08YeslfCQfK9WQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbduCt13GY_etWWIJ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlff68QeslfCQfK9WQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdu6tV3GY_etWWIJ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Livvic" - } - ] - }, - { - "name": "Lobster", - "fontFamily": "Lobster, system-ui", - "slug": "wp-font-lib-lobster", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lobster/v28/neILzCirqoswsqX9_oWsMqEzSJQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lobster" - } - ] - }, - { - "name": "Lobster Two", - "fontFamily": "Lobster Two, system-ui", - "slug": "wp-font-lib-lobster-two", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lobstertwo/v18/BngMUXZGTXPUvIoyV6yN59fK7KSJ4ACD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lobster Two" - }, - { - "src": "http://fonts.gstatic.com/s/lobstertwo/v18/BngOUXZGTXPUvIoyV6yN5-fI5qCr5RCDY_k.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Lobster Two" - }, - { - "src": "http://fonts.gstatic.com/s/lobstertwo/v18/BngRUXZGTXPUvIoyV6yN5-92w4CByxyKeuDp.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lobster Two" - }, - { - "src": "http://fonts.gstatic.com/s/lobstertwo/v18/BngTUXZGTXPUvIoyV6yN5-fI3hyEwRiof_DpXMY.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Lobster Two" - } - ] - }, - { - "name": "Londrina Outline", - "fontFamily": "Londrina Outline, system-ui", - "slug": "wp-font-lib-londrina-outline", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/londrinaoutline/v23/C8c44dM8vmb14dfsZxhetg3pDH-SfuoxrSKMDvI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Londrina Outline" - } - ] - }, - { - "name": "Londrina Shadow", - "fontFamily": "Londrina Shadow, system-ui", - "slug": "wp-font-lib-londrina-shadow", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/londrinashadow/v22/oPWX_kB4kOQoWNJmjxLV5JuoCUlXRlaSxkrMCQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Londrina Shadow" - } - ] - }, - { - "name": "Londrina Sketch", - "fontFamily": "Londrina Sketch, system-ui", - "slug": "wp-font-lib-londrina-sketch", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/londrinasketch/v21/c4m41npxGMTnomOHtRU68eIJn8qfWWn5Pos6CA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Londrina Sketch" - } - ] - }, - { - "name": "Londrina Solid", - "fontFamily": "Londrina Solid, system-ui", - "slug": "wp-font-lib-londrina-solid", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/londrinasolid/v15/flUjRq6sw40kQEJxWNgkLuudGfs9KBYesZHhV64.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Londrina Solid" - }, - { - "src": "http://fonts.gstatic.com/s/londrinasolid/v15/flUiRq6sw40kQEJxWNgkLuudGfv1CjY0n53oTrcL.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Londrina Solid" - }, - { - "src": "http://fonts.gstatic.com/s/londrinasolid/v15/flUhRq6sw40kQEJxWNgkLuudGcNZIhI8tIHh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Londrina Solid" - }, - { - "src": "http://fonts.gstatic.com/s/londrinasolid/v15/flUiRq6sw40kQEJxWNgkLuudGfvdDzY0n53oTrcL.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Londrina Solid" - } - ] - }, - { - "name": "Long Cang", - "fontFamily": "Long Cang, cursive", - "slug": "wp-font-lib-long-cang", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/longcang/v17/LYjAdGP8kkgoTec8zkRgrXArXN7HWQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Long Cang" - } - ] - }, - { - "name": "Lora", - "fontFamily": "Lora, serif", - "slug": "wp-font-lib-lora", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787weuyJGmKxemMeZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lora" - }, - { - "src": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787wsuyJGmKxemMeZ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lora" - }, - { - "src": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787zAvCJGmKxemMeZ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lora" - }, - { - "src": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787z5vCJGmKxemMeZ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lora" - }, - { - "src": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFkqh8ndeZzZ0.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Lora" - }, - { - "src": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-PgFkqh8ndeZzZ0.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Lora" - }, - { - "src": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-BQCkqh8ndeZzZ0.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Lora" - }, - { - "src": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-C0Ckqh8ndeZzZ0.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Lora" - } - ] - }, - { - "name": "Love Light", - "fontFamily": "Love Light, cursive", - "slug": "wp-font-lib-love-light", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lovelight/v3/t5tlIR0TNJyZWimpNAXDjKbCyTHuspo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Love Light" - } - ] - }, - { - "name": "Love Ya Like A Sister", - "fontFamily": "Love Ya Like A Sister, system-ui", - "slug": "wp-font-lib-love-ya-like-a-sister", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/loveyalikeasister/v16/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be78nZcsGGycA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Love Ya Like A Sister" - } - ] - }, - { - "name": "Loved by the King", - "fontFamily": "Loved by the King, cursive", - "slug": "wp-font-lib-loved-by-the-king", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lovedbytheking/v17/Gw6gwdP76VDVJNXerebZxUMeRXUF2PiNlXFu2R64.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Loved by the King" - } - ] - }, - { - "name": "Lovers Quarrel", - "fontFamily": "Lovers Quarrel, cursive", - "slug": "wp-font-lib-lovers-quarrel", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/loversquarrel/v21/Yq6N-LSKXTL-5bCy8ksBzpQ_-zAsY7pO6siz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lovers Quarrel" - } - ] - }, - { - "name": "Luckiest Guy", - "fontFamily": "Luckiest Guy, system-ui", - "slug": "wp-font-lib-luckiest-guy", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/luckiestguy/v18/_gP_1RrxsjcxVyin9l9n_j2RStR3qDpraA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Luckiest Guy" - } - ] - }, - { - "name": "Lusitana", - "fontFamily": "Lusitana, serif", - "slug": "wp-font-lib-lusitana", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lusitana/v13/CSR84z9ShvucWzsMKxhaRuMiSct_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lusitana" - }, - { - "src": "http://fonts.gstatic.com/s/lusitana/v13/CSR74z9ShvucWzsMKyDmaccqYtd2vfwk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lusitana" - } - ] - }, - { - "name": "Lustria", - "fontFamily": "Lustria, serif", - "slug": "wp-font-lib-lustria", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lustria/v13/9oRONYodvDEyjuhOrCg5MtPyAcg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lustria" - } - ] - }, - { - "name": "Luxurious Roman", - "fontFamily": "Luxurious Roman, system-ui", - "slug": "wp-font-lib-luxurious-roman", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/luxuriousroman/v4/buEupou_ZcP1w0yTKxJJokVSmbpqYgckeo9RMw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Luxurious Roman" - } - ] - }, - { - "name": "Luxurious Script", - "fontFamily": "Luxurious Script, cursive", - "slug": "wp-font-lib-luxurious-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/luxuriousscript/v5/ahcCv9e7yydulT32KZ0rBIoD7DzMg0rOby1JtYk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Luxurious Script" - } - ] - }, - { - "name": "M PLUS 1", - "fontFamily": "M PLUS 1, sans-serif", - "slug": "wp-font-lib-m-plus-1", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSe78nZcsGGycA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "M PLUS 1" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51Sa78nZcsGGycA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "M PLUS 1" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Cya78nZcsGGycA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "M PLUS 1" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSa78nZcsGGycA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "M PLUS 1" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Zya78nZcsGGycA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "M PLUS 1" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5iyG78nZcsGGycA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "M PLUS 1" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5siG78nZcsGGycA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "M PLUS 1" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51SG78nZcsGGycA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "M PLUS 1" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5_CG78nZcsGGycA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "M PLUS 1" - } - ] - }, - { - "name": "M PLUS 1 Code", - "fontFamily": "M PLUS 1 Code, sans-serif", - "slug": "wp-font-lib-m-plus-1-code", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0XHpapwmdZhY.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "M PLUS 1 Code" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7gN0HHpapwmdZhY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "M PLUS 1 Code" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7jT0HHpapwmdZhY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "M PLUS 1 Code" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0HHpapwmdZhY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "M PLUS 1 Code" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7i_0HHpapwmdZhY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "M PLUS 1 Code" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hT13HpapwmdZhY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "M PLUS 1 Code" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hq13HpapwmdZhY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "M PLUS 1 Code" - } - ] - }, - { - "name": "M PLUS 1p", - "fontFamily": "M PLUS 1p, sans-serif", - "slug": "wp-font-lib-m-plus-1p", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tleuShHdiFyPFzBRrQnDQAUW3aq-5N.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "M PLUS 1p" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQVBYge0PWovdU4w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "M PLUS 1p" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tjeuShHdiFyPFzBRro-D4Ec2jKqw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "M PLUS 1p" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQDBcge0PWovdU4w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "M PLUS 1p" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQRBEge0PWovdU4w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "M PLUS 1p" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQWBIge0PWovdU4w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "M PLUS 1p" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQfBMge0PWovdU4w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "M PLUS 1p" - } - ] - }, - { - "name": "M PLUS 2", - "fontFamily": "M PLUS 2, sans-serif", - "slug": "wp-font-lib-m-plus-2", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa-VxlqHrzNgAw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "M PLUS 2" - }, - { - "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwua6VxlqHrzNgAw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "M PLUS 2" - }, - { - "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwZ66VxlqHrzNgAw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "M PLUS 2" - }, - { - "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa6VxlqHrzNgAw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "M PLUS 2" - }, - { - "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwC66VxlqHrzNgAw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "M PLUS 2" - }, - { - "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw56mVxlqHrzNgAw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "M PLUS 2" - }, - { - "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw3qmVxlqHrzNgAw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "M PLUS 2" - }, - { - "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwuamVxlqHrzNgAw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "M PLUS 2" - }, - { - "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwkKmVxlqHrzNgAw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "M PLUS 2" - } - ] - }, - { - "name": "M PLUS Code Latin", - "fontFamily": "M PLUS Code Latin, sans-serif", - "slug": "wp-font-lib-m-plus-code-latin", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbB6i5MqF9TRwg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "M PLUS Code Latin" - }, - { - "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1MbA6i5MqF9TRwg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "M PLUS Code Latin" - }, - { - "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1BjA6i5MqF9TRwg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "M PLUS Code Latin" - }, - { - "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbA6i5MqF9TRwg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "M PLUS Code Latin" - }, - { - "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1HTA6i5MqF9TRwg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "M PLUS Code Latin" - }, - { - "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1JjH6i5MqF9TRwg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "M PLUS Code Latin" - }, - { - "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1KHH6i5MqF9TRwg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "M PLUS Code Latin" - } - ] - }, - { - "name": "M PLUS Rounded 1c", - "fontFamily": "M PLUS Rounded 1c, sans-serif", - "slug": "wp-font-lib-m-plus-rounded-1c", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGCAYIAV6gnpUpoWwNkYvrugw9RuM3ixLsg6-av1x0.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "M PLUS Rounded 1c" - }, - { - "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0q5psKxeqmzgRK.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "M PLUS Rounded 1c" - }, - { - "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWGzr8C7vav.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "M PLUS Rounded 1c" - }, - { - "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM1y55sKxeqmzgRK.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "M PLUS Rounded 1c" - }, - { - "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM064ZsKxeqmzgRK.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "M PLUS Rounded 1c" - }, - { - "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0m4psKxeqmzgRK.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "M PLUS Rounded 1c" - }, - { - "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0C45sKxeqmzgRK.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "M PLUS Rounded 1c" - } - ] - }, - { - "name": "Ma Shan Zheng", - "fontFamily": "Ma Shan Zheng, cursive", - "slug": "wp-font-lib-ma-shan-zheng", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mashanzheng/v10/NaPecZTRCLxvwo41b4gvzkXaRMTsDIRSfr0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ma Shan Zheng" - } - ] - }, - { - "name": "Macondo", - "fontFamily": "Macondo, system-ui", - "slug": "wp-font-lib-macondo", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/macondo/v21/RrQQboN9-iB1IXmOS2XO0LBBd4Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Macondo" - } - ] - }, - { - "name": "Macondo Swash Caps", - "fontFamily": "Macondo Swash Caps, system-ui", - "slug": "wp-font-lib-macondo-swash-caps", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/macondoswashcaps/v20/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Oekoa_mm5bA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Macondo Swash Caps" - } - ] - }, - { - "name": "Mada", - "fontFamily": "Mada, sans-serif", - "slug": "wp-font-lib-mada", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFlOkHkw2-m9x2iC.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mada" - }, - { - "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFmQkHkw2-m9x2iC.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mada" - }, - { - "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFnOkHkw2-m9x2iC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mada" - }, - { - "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFn8kHkw2-m9x2iC.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mada" - }, - { - "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFkQl3kw2-m9x2iC.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mada" - }, - { - "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFkpl3kw2-m9x2iC.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mada" - }, - { - "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFlOl3kw2-m9x2iC.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Mada" - }, - { - "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFlnl3kw2-m9x2iC.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Mada" - } - ] - }, - { - "name": "Magra", - "fontFamily": "Magra, sans-serif", - "slug": "wp-font-lib-magra", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/magra/v14/uK_94ruaZus72k5xIDMfO-ed.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Magra" - }, - { - "src": "http://fonts.gstatic.com/s/magra/v14/uK_w4ruaZus72nbNDxcXEPuUX1ow.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Magra" - } - ] - }, - { - "name": "Maiden Orange", - "fontFamily": "Maiden Orange, system-ui", - "slug": "wp-font-lib-maiden-orange", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/maidenorange/v25/kJE1BuIX7AUmhi2V4m08kb1XjOZdCZS8FY8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Maiden Orange" - } - ] - }, - { - "name": "Maitree", - "fontFamily": "Maitree, serif", - "slug": "wp-font-lib-maitree", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklhGNWJGovLdh6OE.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Maitree" - }, - { - "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklnWOWJGovLdh6OE.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Maitree" - }, - { - "src": "http://fonts.gstatic.com/s/maitree/v10/MjQGmil5tffhpBrkrtmmfJmDoL4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Maitree" - }, - { - "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrkli2PWJGovLdh6OE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Maitree" - }, - { - "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklgGIWJGovLdh6OE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Maitree" - }, - { - "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklmWJWJGovLdh6OE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Maitree" - } - ] - }, - { - "name": "Major Mono Display", - "fontFamily": "Major Mono Display, monospace", - "slug": "wp-font-lib-major-mono-display", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/majormonodisplay/v13/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLCn2QIndPww.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Major Mono Display" - } - ] - }, - { - "name": "Mako", - "fontFamily": "Mako, sans-serif", - "slug": "wp-font-lib-mako", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mako/v18/H4coBX6Mmc_Z0ST09g478Lo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mako" - } - ] - }, - { - "name": "Mali", - "fontFamily": "Mali, cursive", - "slug": "wp-font-lib-mali", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QOLlKlRaJdbWgdY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mali" - }, - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8wlVQIfTTkdbJYA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Mali" - }, - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QIbmKlRaJdbWgdY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mali" - }, - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8plZQIfTTkdbJYA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Mali" - }, - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0ba2SRONuN4eCrODlxxOd8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mali" - }, - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0bU2SRONuN4SCjECn50Kd_PmA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Mali" - }, - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QN7nKlRaJdbWgdY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mali" - }, - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8_ldQIfTTkdbJYA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Mali" - }, - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QPLgKlRaJdbWgdY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mali" - }, - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj80lBQIfTTkdbJYA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Mali" - }, - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QJbhKlRaJdbWgdY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mali" - }, - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8tlFQIfTTkdbJYA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Mali" - } - ] - }, - { - "name": "Mallanna", - "fontFamily": "Mallanna, sans-serif", - "slug": "wp-font-lib-mallanna", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mallanna/v13/hv-Vlzx-KEQb84YaDGwzEzRwVvJ-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mallanna" - } - ] - }, - { - "name": "Mandali", - "fontFamily": "Mandali, sans-serif", - "slug": "wp-font-lib-mandali", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mandali/v14/LhWlMVbYOfASNfNUVFk1ZPdcKtA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mandali" - } - ] - }, - { - "name": "Manjari", - "fontFamily": "Manjari, sans-serif", - "slug": "wp-font-lib-manjari", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/manjari/v9/k3kSo8UPMOBO2w1UdbroK2vFIaOV8A.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Manjari" - }, - { - "src": "http://fonts.gstatic.com/s/manjari/v9/k3kQo8UPMOBO2w1UTd7iL0nAMaM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Manjari" - }, - { - "src": "http://fonts.gstatic.com/s/manjari/v9/k3kVo8UPMOBO2w1UdWLNC0HrLaqM6Q4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Manjari" - } - ] - }, - { - "name": "Manrope", - "fontFamily": "Manrope, sans-serif", - "slug": "wp-font-lib-manrope", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59FO_F87jxeN7B.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Manrope" - }, - { - "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk6jFO_F87jxeN7B.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Manrope" - }, - { - "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_F87jxeN7B.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Manrope" - }, - { - "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_F87jxeN7B.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Manrope" - }, - { - "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_F87jxeN7B.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Manrope" - }, - { - "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_F87jxeN7B.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Manrope" - }, - { - "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_F87jxeN7B.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Manrope" - } - ] - }, - { - "name": "Mansalva", - "fontFamily": "Mansalva, cursive", - "slug": "wp-font-lib-mansalva", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mansalva/v12/aWB4m0aacbtDfvq5NJllI47vdyBg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mansalva" - } - ] - }, - { - "name": "Manuale", - "fontFamily": "Manuale, serif", - "slug": "wp-font-lib-manuale", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeG6e7wD1TB_JHHY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Manuale" - }, - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHke7wD1TB_JHHY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Manuale" - }, - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHWe7wD1TB_JHHY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Manuale" - }, - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeE6fLwD1TB_JHHY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Manuale" - }, - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeEDfLwD1TB_JHHY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Manuale" - }, - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeFkfLwD1TB_JHHY.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Manuale" - }, - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOApA3zRdIWHYr8M.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Manuale" - }, - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOFRA3zRdIWHYr8M.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Manuale" - }, - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOGZA3zRdIWHYr8M.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Manuale" - }, - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOIpH3zRdIWHYr8M.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Manuale" - }, - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOLNH3zRdIWHYr8M.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Manuale" - }, - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsONRH3zRdIWHYr8M.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Manuale" - } - ] - }, - { - "name": "Marcellus", - "fontFamily": "Marcellus, serif", - "slug": "wp-font-lib-marcellus", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/marcellus/v13/wEO_EBrOk8hQLDvIAF8FUfAL3EsHiA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Marcellus" - } - ] - }, - { - "name": "Marcellus SC", - "fontFamily": "Marcellus SC, serif", - "slug": "wp-font-lib-marcellus-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/marcellussc/v13/ke8iOgUHP1dg-Rmi6RWjbLEPgdydGKikhA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Marcellus SC" - } - ] - }, - { - "name": "Marck Script", - "fontFamily": "Marck Script, cursive", - "slug": "wp-font-lib-marck-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/marckscript/v17/nwpTtK2oNgBA3Or78gapdwuCzyI-aMPF7Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Marck Script" - } - ] - }, - { - "name": "Margarine", - "fontFamily": "Margarine, system-ui", - "slug": "wp-font-lib-margarine", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/margarine/v22/qkBXXvoE6trLT9Y7YLye5JRLkAXbMQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Margarine" - } - ] - }, - { - "name": "Marhey", - "fontFamily": "Marhey, system-ui", - "slug": "wp-font-lib-marhey", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBZVwO2cXiGevOMw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Marhey" - }, - { - "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBctwO2cXiGevOMw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Marhey" - }, - { - "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBflwO2cXiGevOMw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Marhey" - }, - { - "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBRV3O2cXiGevOMw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Marhey" - }, - { - "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBSx3O2cXiGevOMw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Marhey" - } - ] - }, - { - "name": "Markazi Text", - "fontFamily": "Markazi Text, serif", - "slug": "wp-font-lib-markazi-text", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQT4MlBekmJLo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Markazi Text" - }, - { - "src": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtcaQT4MlBekmJLo.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Markazi Text" - }, - { - "src": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtSqXT4MlBekmJLo.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Markazi Text" - }, - { - "src": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtROXT4MlBekmJLo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Markazi Text" - } - ] - }, - { - "name": "Marko One", - "fontFamily": "Marko One, serif", - "slug": "wp-font-lib-marko-one", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/markoone/v22/9Btq3DFG0cnVM5lw1haaKpUfrHPzUw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Marko One" - } - ] - }, - { - "name": "Marmelad", - "fontFamily": "Marmelad, sans-serif", - "slug": "wp-font-lib-marmelad", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/marmelad/v18/Qw3eZQdSHj_jK2e-8tFLG-YMC0R8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Marmelad" - } - ] - }, - { - "name": "Martel", - "fontFamily": "Martel, serif", - "slug": "wp-font-lib-martel", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVqekahRbX9vnDzw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Martel" - }, - { - "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVzeoahRbX9vnDzw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Martel" - }, - { - "src": "http://fonts.gstatic.com/s/martel/v10/PN_xRfK9oXHga0XtYcI-jT3L_w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Martel" - }, - { - "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVuewahRbX9vnDzw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Martel" - }, - { - "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV3e0ahRbX9vnDzw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Martel" - }, - { - "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVwe4ahRbX9vnDzw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Martel" - }, - { - "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV5e8ahRbX9vnDzw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Martel" - } - ] - }, - { - "name": "Martel Sans", - "fontFamily": "Martel Sans, sans-serif", - "slug": "wp-font-lib-martel-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAX5suHFUknqMxQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Martel Sans" - }, - { - "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBz5cuHFUknqMxQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Martel Sans" - }, - { - "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GsssGi7VdzDgKjM-4d8ijfze-PPlUu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Martel Sans" - }, - { - "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAH48uHFUknqMxQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Martel Sans" - }, - { - "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBj4suHFUknqMxQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Martel Sans" - }, - { - "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hB_4cuHFUknqMxQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Martel Sans" - }, - { - "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBb4MuHFUknqMxQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Martel Sans" - } - ] - }, - { - "name": "Martian Mono", - "fontFamily": "Martian Mono, monospace", - "slug": "wp-font-lib-martian-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qus6WD75kdpF2.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Martian Mono" - }, - { - "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY3qu86WD75kdpF2.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Martian Mono" - }, - { - "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY00u86WD75kdpF2.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Martian Mono" - }, - { - "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qu86WD75kdpF2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Martian Mono" - }, - { - "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1Yu86WD75kdpF2.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Martian Mono" - }, - { - "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY20vM6WD75kdpF2.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Martian Mono" - }, - { - "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY2NvM6WD75kdpF2.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Martian Mono" - }, - { - "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY3qvM6WD75kdpF2.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Martian Mono" - } - ] - }, - { - "name": "Marvel", - "fontFamily": "Marvel, sans-serif", - "slug": "wp-font-lib-marvel", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/marvel/v14/nwpVtKeoNgBV0qaIkV7ED366zg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Marvel" - }, - { - "src": "http://fonts.gstatic.com/s/marvel/v14/nwpXtKeoNgBV0qa4k1TALXuqzhA7.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Marvel" - }, - { - "src": "http://fonts.gstatic.com/s/marvel/v14/nwpWtKeoNgBV0qawLXHgB1WmxwkiYQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Marvel" - }, - { - "src": "http://fonts.gstatic.com/s/marvel/v14/nwpQtKeoNgBV0qa4k2x8Al-i5QwyYdrc.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Marvel" - } - ] - }, - { - "name": "Mate", - "fontFamily": "Mate, serif", - "slug": "wp-font-lib-mate", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mate/v15/m8JdjftRd7WZ2z28WoXSaLU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mate" - }, - { - "src": "http://fonts.gstatic.com/s/mate/v15/m8JTjftRd7WZ6z-2XqfXeLVdbw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Mate" - } - ] - }, - { - "name": "Mate SC", - "fontFamily": "Mate SC, serif", - "slug": "wp-font-lib-mate-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/matesc/v22/-nF8OGQ1-uoVr2wKyiXZ95OkJwA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mate SC" - } - ] - }, - { - "name": "Material Icons", - "fontFamily": "Material Icons, monospace", - "slug": "wp-font-lib-material-icons", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDsNZIhI8tIHh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Icons" - } - ] - }, - { - "name": "Material Icons Outlined", - "fontFamily": "Material Icons Outlined, monospace", - "slug": "wp-font-lib-material-icons-outlined", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/materialiconsoutlined/v109/gok-H7zzDkdnRel8-DQ6KAXJ69wP1tGnf4ZGhUcdl5GuI2Ze.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Icons Outlined" - } - ] - }, - { - "name": "Material Icons Round", - "fontFamily": "Material Icons Round, monospace", - "slug": "wp-font-lib-material-icons-round", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/materialiconsround/v108/LDItaoyNOAY6Uewc665JcIzCKsKc_M9flwmMq_fTTvg-.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Icons Round" - } - ] - }, - { - "name": "Material Icons Sharp", - "fontFamily": "Material Icons Sharp, monospace", - "slug": "wp-font-lib-material-icons-sharp", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/materialiconssharp/v109/oPWQ_lt5nv4pWNJpghLP75WiFR4kLh3kvmvSImEyc0vd.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Icons Sharp" - } - ] - }, - { - "name": "Material Icons Two Tone", - "fontFamily": "Material Icons Two Tone, monospace", - "slug": "wp-font-lib-material-icons-two-tone", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/materialiconstwotone/v112/hESh6WRmNCxEqUmNyh3JDeGxjVVyMg4tHGctNCu3NjDrH_77.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Icons Two Tone" - } - ] - }, - { - "name": "Material Symbols Outlined", - "fontFamily": "Material Symbols Outlined, monospace", - "slug": "wp-font-lib-material-symbols-outlined", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v114/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHeembd5zrTgt.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Material Symbols Outlined" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v114/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDAvHOembd5zrTgt.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Material Symbols Outlined" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v114/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDDxHOembd5zrTgt.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Material Symbols Outlined" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v114/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHOembd5zrTgt.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Symbols Outlined" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v114/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCdHOembd5zrTgt.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Material Symbols Outlined" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v114/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDBxG-embd5zrTgt.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Material Symbols Outlined" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v114/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDBIG-embd5zrTgt.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Material Symbols Outlined" - } - ] - }, - { - "name": "Material Symbols Rounded", - "fontFamily": "Material Symbols Rounded, monospace", - "slug": "wp-font-lib-material-symbols-rounded", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v113/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIekXxKJKJBjAa8.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Material Symbols Rounded" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v113/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rAelXxKJKJBjAa8.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Material Symbols Rounded" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v113/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rNmlXxKJKJBjAa8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Material Symbols Rounded" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v113/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIelXxKJKJBjAa8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Symbols Rounded" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v113/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rLWlXxKJKJBjAa8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Material Symbols Rounded" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v113/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rFmiXxKJKJBjAa8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Material Symbols Rounded" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v113/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rGCiXxKJKJBjAa8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Material Symbols Rounded" - } - ] - }, - { - "name": "Material Symbols Sharp", - "fontFamily": "Material Symbols Sharp, monospace", - "slug": "wp-font-lib-material-symbols-sharp", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v110/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLozCOJ1H7-knk.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Material Symbols Sharp" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v110/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxMLojCOJ1H7-knk.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Material Symbols Sharp" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v110/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxPVojCOJ1H7-knk.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Material Symbols Sharp" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v110/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLojCOJ1H7-knk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Symbols Sharp" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v110/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxO5ojCOJ1H7-knk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Material Symbols Sharp" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v110/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxNVpTCOJ1H7-knk.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Material Symbols Sharp" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v110/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxNspTCOJ1H7-knk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Material Symbols Sharp" - } - ] - }, - { - "name": "Maven Pro", - "fontFamily": "Maven Pro, sans-serif", - "slug": "wp-font-lib-maven-pro", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8SX25nCpozp5GvU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Maven Pro" - }, - { - "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Rf25nCpozp5GvU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Maven Pro" - }, - { - "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8fvx5nCpozp5GvU.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Maven Pro" - }, - { - "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8cLx5nCpozp5GvU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Maven Pro" - }, - { - "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8aXx5nCpozp5GvU.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Maven Pro" - }, - { - "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Yzx5nCpozp5GvU.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Maven Pro" - } - ] - }, - { - "name": "McLaren", - "fontFamily": "McLaren, system-ui", - "slug": "wp-font-lib-mclaren", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mclaren/v14/2EbnL-ZuAXFqZFXISYYf8z2Yt_c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "McLaren" - } - ] - }, - { - "name": "Mea Culpa", - "fontFamily": "Mea Culpa, cursive", - "slug": "wp-font-lib-mea-culpa", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/meaculpa/v3/AMOTz4GcuWbEIuza8jsZms0QW3mqyg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mea Culpa" - } - ] - }, - { - "name": "Meddon", - "fontFamily": "Meddon, cursive", - "slug": "wp-font-lib-meddon", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/meddon/v20/kmK8ZqA2EgDNeHTZhBdB3y_Aow.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Meddon" - } - ] - }, - { - "name": "MedievalSharp", - "fontFamily": "MedievalSharp, system-ui", - "slug": "wp-font-lib-medievalsharp", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/medievalsharp/v24/EvOJzAlL3oU5AQl2mP5KdgptAq96MwvXLDk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "MedievalSharp" - } - ] - }, - { - "name": "Medula One", - "fontFamily": "Medula One, system-ui", - "slug": "wp-font-lib-medula-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/medulaone/v19/YA9Wr0qb5kjJM6l2V0yukiEqs7GtlvY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Medula One" - } - ] - }, - { - "name": "Meera Inimai", - "fontFamily": "Meera Inimai, sans-serif", - "slug": "wp-font-lib-meera-inimai", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/meerainimai/v12/845fNMM5EIqOW5MPuvO3ILep_2jDVevnLQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Meera Inimai" - } - ] - }, - { - "name": "Megrim", - "fontFamily": "Megrim, system-ui", - "slug": "wp-font-lib-megrim", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/megrim/v16/46kulbz5WjvLqJZlbWXgd0RY1g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Megrim" - } - ] - }, - { - "name": "Meie Script", - "fontFamily": "Meie Script, cursive", - "slug": "wp-font-lib-meie-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/meiescript/v21/_LOImzDK7erRjhunIspaMjxn5IXg0WDz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Meie Script" - } - ] - }, - { - "name": "Meow Script", - "fontFamily": "Meow Script, cursive", - "slug": "wp-font-lib-meow-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/meowscript/v5/0FlQVPqanlaJrtr8AnJ0ESch0_0CfDf1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Meow Script" - } - ] - }, - { - "name": "Merienda", - "fontFamily": "Merienda, cursive", - "slug": "wp-font-lib-merienda", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5JHhoSU78QGBV0A.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Merienda" - }, - { - "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5enhoSU78QGBV0A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Merienda" - }, - { - "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5SHhoSU78QGBV0A.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Merienda" - }, - { - "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5pH9oSU78QGBV0A.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Merienda" - }, - { - "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5nX9oSU78QGBV0A.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Merienda" - }, - { - "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5-n9oSU78QGBV0A.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Merienda" - }, - { - "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5039oSU78QGBV0A.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Merienda" - } - ] - }, - { - "name": "Merriweather", - "fontFamily": "Merriweather, serif", - "slug": "wp-font-lib-merriweather", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l521wRpX837pvjxPA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Merriweather" - }, - { - "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7lXcf_hP3hPGWH.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Merriweather" - }, - { - "src": "http://fonts.gstatic.com/s/merriweather/v30/u-440qyriQwlOrhSvowK_l5OeyxNV-bnrw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Merriweather" - }, - { - "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4m0qyriQwlOrhSvowK_l5-eSZJdeP3r-Ho.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Merriweather" - }, - { - "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52xwNpX837pvjxPA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Merriweather" - }, - { - "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR71Wsf_hP3hPGWH.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Merriweather" - }, - { - "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52_wFpX837pvjxPA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Merriweather" - }, - { - "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7NWMf_hP3hPGWH.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Merriweather" - } - ] - }, - { - "name": "Merriweather Sans", - "fontFamily": "Merriweather Sans, sans-serif", - "slug": "wp-font-lib-merriweather-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZ_O4ljuEG7xFHnQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Merriweather Sans" - }, - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZou4ljuEG7xFHnQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Merriweather Sans" - }, - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZkO4ljuEG7xFHnQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Merriweather Sans" - }, - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZfOkljuEG7xFHnQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Merriweather Sans" - }, - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZRekljuEG7xFHnQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Merriweather Sans" - }, - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZIukljuEG7xFHnQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Merriweather Sans" - }, - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq2TzesCzRRXnaur.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Merriweather Sans" - }, - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3NzesCzRRXnaur.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Merriweather Sans" - }, - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3_zesCzRRXnaur.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Merriweather Sans" - }, - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0TyusCzRRXnaur.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Merriweather Sans" - }, - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0qyusCzRRXnaur.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Merriweather Sans" - }, - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq1NyusCzRRXnaur.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Merriweather Sans" - } - ] - }, - { - "name": "Metal", - "fontFamily": "Metal, system-ui", - "slug": "wp-font-lib-metal", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/metal/v28/lW-wwjUJIXTo7i3nnoQAUdN2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Metal" - } - ] - }, - { - "name": "Metal Mania", - "fontFamily": "Metal Mania, system-ui", - "slug": "wp-font-lib-metal-mania", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/metalmania/v22/RWmMoKWb4e8kqMfBUdPFJeXCg6UKDXlq.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Metal Mania" - } - ] - }, - { - "name": "Metamorphous", - "fontFamily": "Metamorphous, system-ui", - "slug": "wp-font-lib-metamorphous", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/metamorphous/v18/Wnz8HA03aAXcC39ZEX5y1330PCCthTsmaQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Metamorphous" - } - ] - }, - { - "name": "Metrophobic", - "fontFamily": "Metrophobic, sans-serif", - "slug": "wp-font-lib-metrophobic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/metrophobic/v23/sJoA3LZUhMSAPV_u0qwiAT-J737FPEEL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Metrophobic" - } - ] - }, - { - "name": "Michroma", - "fontFamily": "Michroma, sans-serif", - "slug": "wp-font-lib-michroma", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/michroma/v16/PN_zRfy9qWD8fEagAMg6rzjb_-Da.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Michroma" - } - ] - }, - { - "name": "Milonga", - "fontFamily": "Milonga, system-ui", - "slug": "wp-font-lib-milonga", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/milonga/v20/SZc53FHnIaK9W5kffz3GkUrS8DI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Milonga" - } - ] - }, - { - "name": "Miltonian", - "fontFamily": "Miltonian, system-ui", - "slug": "wp-font-lib-miltonian", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/miltonian/v26/zOL-4pbPn6Ne9JqTg9mr6e5As-FeiQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Miltonian" - } - ] - }, - { - "name": "Miltonian Tattoo", - "fontFamily": "Miltonian Tattoo, system-ui", - "slug": "wp-font-lib-miltonian-tattoo", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/miltoniantattoo/v28/EvOUzBRL0o0kCxF-lcMCQxlpVsA_FwP8MDBku-s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Miltonian Tattoo" - } - ] - }, - { - "name": "Mina", - "fontFamily": "Mina, sans-serif", - "slug": "wp-font-lib-mina", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mina/v11/-nFzOGc18vARrz9j7i3y65o.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mina" - }, - { - "src": "http://fonts.gstatic.com/s/mina/v11/-nF8OGc18vARl4NMyiXZ95OkJwA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mina" - } - ] - }, - { - "name": "Mingzat", - "fontFamily": "Mingzat, sans-serif", - "slug": "wp-font-lib-mingzat", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mingzat/v6/0QIgMX5C-o-oWWyvBttkm_mv670.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mingzat" - } - ] - }, - { - "name": "Miniver", - "fontFamily": "Miniver, system-ui", - "slug": "wp-font-lib-miniver", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/miniver/v21/eLGcP-PxIg-5H0vC770Cy8r8fWA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Miniver" - } - ] - }, - { - "name": "Miriam Libre", - "fontFamily": "Miriam Libre, sans-serif", - "slug": "wp-font-lib-miriam-libre", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/miriamlibre/v14/DdTh798HsHwubBAqfkcBTL_vYJn_Teun9g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Miriam Libre" - }, - { - "src": "http://fonts.gstatic.com/s/miriamlibre/v14/DdT-798HsHwubBAqfkcBTL_X3LbbRcC7_-Z7Hg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Miriam Libre" - } - ] - }, - { - "name": "Mirza", - "fontFamily": "Mirza, system-ui", - "slug": "wp-font-lib-mirza", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mirza/v15/co3ImWlikiN5EurdKMewsrvI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mirza" - }, - { - "src": "http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtIpAeO4mafBomDi.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mirza" - }, - { - "src": "http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtIFBuO4mafBomDi.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mirza" - }, - { - "src": "http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtJhB-O4mafBomDi.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mirza" - } - ] - }, - { - "name": "Miss Fajardose", - "fontFamily": "Miss Fajardose, cursive", - "slug": "wp-font-lib-miss-fajardose", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/missfajardose/v22/E21-_dn5gvrawDdPFVl-N0Ajb8qvWPaJq4no.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Miss Fajardose" - } - ] - }, - { - "name": "Mitr", - "fontFamily": "Mitr, sans-serif", - "slug": "wp-font-lib-mitr", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8fMZFJDUc1NECPY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mitr" - }, - { - "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8ZcaFJDUc1NECPY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mitr" - }, - { - "src": "http://fonts.gstatic.com/s/mitr/v11/pxiLypw5ucZFyTsyMJj_b1o.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mitr" - }, - { - "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8c8bFJDUc1NECPY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mitr" - }, - { - "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8eMcFJDUc1NECPY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mitr" - }, - { - "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8YcdFJDUc1NECPY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mitr" - } - ] - }, - { - "name": "Mochiy Pop One", - "fontFamily": "Mochiy Pop One, sans-serif", - "slug": "wp-font-lib-mochiy-pop-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mochiypopone/v7/QdVPSTA9Jh-gg-5XZP2UmU4O9kwwD3s6ZKAi.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mochiy Pop One" - } - ] - }, - { - "name": "Mochiy Pop P One", - "fontFamily": "Mochiy Pop P One, sans-serif", - "slug": "wp-font-lib-mochiy-pop-p-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mochiypoppone/v7/Ktk2AKuPeY_td1-h9LayHYWCjAqyN4O3WYZB_sU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mochiy Pop P One" - } - ] - }, - { - "name": "Modak", - "fontFamily": "Modak, system-ui", - "slug": "wp-font-lib-modak", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/modak/v18/EJRYQgs1XtIEsnMH8BVZ76KU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Modak" - } - ] - }, - { - "name": "Modern Antiqua", - "fontFamily": "Modern Antiqua, system-ui", - "slug": "wp-font-lib-modern-antiqua", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/modernantiqua/v22/NGStv5TIAUg6Iq_RLNo_2dp1sI1Ea2u0c3Gi.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Modern Antiqua" - } - ] - }, - { - "name": "Mogra", - "fontFamily": "Mogra, system-ui", - "slug": "wp-font-lib-mogra", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mogra/v19/f0X40eSs8c95TBo4DvLmxtnG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mogra" - } - ] - }, - { - "name": "Mohave", - "fontFamily": "Mohave, sans-serif", - "slug": "wp-font-lib-mohave", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdif_HvCQopLSvBk.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mohave" - }, - { - "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdnn_HvCQopLSvBk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mohave" - }, - { - "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdkv_HvCQopLSvBk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mohave" - }, - { - "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdqf4HvCQopLSvBk.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mohave" - }, - { - "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdp74HvCQopLSvBk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mohave" - }, - { - "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8qLOaprDXrBlSVw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Mohave" - }, - { - "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G89rOaprDXrBlSVw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Mohave" - }, - { - "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8xLOaprDXrBlSVw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Mohave" - }, - { - "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8KLSaprDXrBlSVw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Mohave" - }, - { - "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8EbSaprDXrBlSVw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Mohave" - } - ] - }, - { - "name": "Molengo", - "fontFamily": "Molengo, sans-serif", - "slug": "wp-font-lib-molengo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/molengo/v16/I_uuMpWeuBzZNBtQbbRQkiCvs5Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Molengo" - } - ] - }, - { - "name": "Molle", - "fontFamily": "Molle, cursive", - "slug": "wp-font-lib-molle", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/molle/v21/E21n_dL5hOXFhWEsXzgmVydREus.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Molle" - } - ] - }, - { - "name": "Monda", - "fontFamily": "Monda, sans-serif", - "slug": "wp-font-lib-monda", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/monda/v16/TK3tWkYFABsmjvpmNBsLvPdG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Monda" - }, - { - "src": "http://fonts.gstatic.com/s/monda/v16/TK3gWkYFABsmjsLaGz8Dl-tPKo2t.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Monda" - } - ] - }, - { - "name": "Monofett", - "fontFamily": "Monofett, monospace", - "slug": "wp-font-lib-monofett", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/monofett/v23/mFTyWbofw6zc9NtnW43SuRwr0VJ7.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Monofett" - } - ] - }, - { - "name": "Monomaniac One", - "fontFamily": "Monomaniac One, sans-serif", - "slug": "wp-font-lib-monomaniac-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/monomaniacone/v9/4iC06K17YctZjx50EU-QlwPmcqRnqYkB5kwI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Monomaniac One" - } - ] - }, - { - "name": "Monoton", - "fontFamily": "Monoton, system-ui", - "slug": "wp-font-lib-monoton", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/monoton/v15/5h1aiZUrOngCibe4fkbBQ2S7FU8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Monoton" - } - ] - }, - { - "name": "Monsieur La Doulaise", - "fontFamily": "Monsieur La Doulaise, cursive", - "slug": "wp-font-lib-monsieur-la-doulaise", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/monsieurladoulaise/v15/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5ewkEU4HTy.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Monsieur La Doulaise" - } - ] - }, - { - "name": "Montaga", - "fontFamily": "Montaga, serif", - "slug": "wp-font-lib-montaga", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/montaga/v13/H4cnBX2Ml8rCkEO_0gYQ7LO5mqc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Montaga" - } - ] - }, - { - "name": "Montagu Slab", - "fontFamily": "Montagu Slab, serif", - "slug": "wp-font-lib-montagu-slab", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbE3P9Fs7bOSO7.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Montagu Slab" - }, - { - "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkBbEnP9Fs7bOSO7.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Montagu Slab" - }, - { - "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkCFEnP9Fs7bOSO7.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Montagu Slab" - }, - { - "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbEnP9Fs7bOSO7.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Montagu Slab" - }, - { - "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDpEnP9Fs7bOSO7.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Montagu Slab" - }, - { - "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkAFFXP9Fs7bOSO7.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Montagu Slab" - }, - { - "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkA8FXP9Fs7bOSO7.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Montagu Slab" - } - ] - }, - { - "name": "MonteCarlo", - "fontFamily": "MonteCarlo, cursive", - "slug": "wp-font-lib-montecarlo", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/montecarlo/v8/buEzpo6-f9X01GadLA0G0CoV_NxLeiw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "MonteCarlo" - } - ] - }, - { - "name": "Montez", - "fontFamily": "Montez, cursive", - "slug": "wp-font-lib-montez", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/montez/v18/845ZNMk5GoGIX8lm1LDeSd-R_g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Montez" - } - ] - }, - { - "name": "Montserrat", - "fontFamily": "Montserrat, sans-serif", - "slug": "wp-font-lib-montserrat", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw-Y3tcoqK5.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Ew-Y3tcoqK5.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Ew-Y3tcoqK5.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-Y3tcoqK5.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew-Y3tcoqK5.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w-Y3tcoqK5.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w-Y3tcoqK5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr70w-Y3tcoqK5.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC70w-Y3tcoqK5.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R8aX9-p7K5ILg.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR9aX9-p7K5ILg.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq_p9aX9-p7K5ILg.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R9aX9-p7K5ILg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9aX9-p7K5ILg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq3p6aX9-p7K5ILg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6aX9-p7K5ILg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR6aX9-p7K5ILg.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16aX9-p7K5ILg.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Montserrat" - } - ] - }, - { - "name": "Montserrat Alternates", - "fontFamily": "Montserrat Alternates, sans-serif", - "slug": "wp-font-lib-montserrat-alternates", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU0xiKfVKphL03l4.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTjWacfw6zH4dthXcyms1lPpC8I_b0juU057p-xIJxp1ml4imo.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xJIb1ALZH2mBhkw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8dAbxD-GVxk3Nd.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xQIX1ALZH2mBhkw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p95ArxD-GVxk3Nd.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J7K3RCJ1b0w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU057qfVKphL03l4.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xGIT1ALZH2mBhkw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8hA7xD-GVxk3Nd.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xNIP1ALZH2mBhkw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8NBLxD-GVxk3Nd.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xUIL1ALZH2mBhkw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9pBbxD-GVxk3Nd.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xTIH1ALZH2mBhkw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p91BrxD-GVxk3Nd.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xaID1ALZH2mBhkw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9RB7xD-GVxk3Nd.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates" - } - ] - }, - { - "name": "Montserrat Subrayada", - "fontFamily": "Montserrat Subrayada, sans-serif", - "slug": "wp-font-lib-montserrat-subrayada", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/montserratsubrayada/v17/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQE8LYuceqGT-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Montserrat Subrayada" - }, - { - "src": "http://fonts.gstatic.com/s/montserratsubrayada/v17/U9MM6c-o9H7PgjlTHThBnNHGVUORwteQQHe3TcMWg3j36Ebz.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Montserrat Subrayada" - } - ] - }, - { - "name": "Moo Lah Lah", - "fontFamily": "Moo Lah Lah, system-ui", - "slug": "wp-font-lib-moo-lah-lah", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/moolahlah/v3/dg4h_p_opKZOA0w1AYcm55wtYQYugjW4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Moo Lah Lah" - } - ] - }, - { - "name": "Moon Dance", - "fontFamily": "Moon Dance, cursive", - "slug": "wp-font-lib-moon-dance", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/moondance/v3/WBLgrEbUbFlYW9ekmGawe2XiKMiokE4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Moon Dance" - } - ] - }, - { - "name": "Moul", - "fontFamily": "Moul, system-ui", - "slug": "wp-font-lib-moul", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/moul/v25/nuF2D__FSo_3E-RYiJCy-00.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Moul" - } - ] - }, - { - "name": "Moulpali", - "fontFamily": "Moulpali, system-ui", - "slug": "wp-font-lib-moulpali", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/moulpali/v28/H4ckBXKMl9HagUWymyY6wr-wg763.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Moulpali" - } - ] - }, - { - "name": "Mountains of Christmas", - "fontFamily": "Mountains of Christmas, system-ui", - "slug": "wp-font-lib-mountains-of-christmas", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mountainsofchristmas/v20/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNamMPNpJpc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mountains of Christmas" - }, - { - "src": "http://fonts.gstatic.com/s/mountainsofchristmas/v20/3y9z6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eBGqJFPtCOp6IaEA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mountains of Christmas" - } - ] - }, - { - "name": "Mouse Memoirs", - "fontFamily": "Mouse Memoirs, sans-serif", - "slug": "wp-font-lib-mouse-memoirs", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mousememoirs/v14/t5tmIRoSNJ-PH0WNNgDYxdSb7TnFrpOHYh4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mouse Memoirs" - } - ] - }, - { - "name": "Mr Bedfort", - "fontFamily": "Mr Bedfort, cursive", - "slug": "wp-font-lib-mr-bedfort", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mrbedfort/v22/MQpR-WCtNZSWAdTMwBicliq0XZe_Iy8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mr Bedfort" - } - ] - }, - { - "name": "Mr Dafoe", - "fontFamily": "Mr Dafoe, cursive", - "slug": "wp-font-lib-mr-dafoe", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mrdafoe/v14/lJwE-pIzkS5NXuMMrGiqg7MCxz_C.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mr Dafoe" - } - ] - }, - { - "name": "Mr De Haviland", - "fontFamily": "Mr De Haviland, cursive", - "slug": "wp-font-lib-mr-de-haviland", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mrdehaviland/v14/OpNVnooIhJj96FdB73296ksbOj3C4ULVNTlB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mr De Haviland" - } - ] - }, - { - "name": "Mrs Saint Delafield", - "fontFamily": "Mrs Saint Delafield, cursive", - "slug": "wp-font-lib-mrs-saint-delafield", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mrssaintdelafield/v13/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cK4tLsubB2w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mrs Saint Delafield" - } - ] - }, - { - "name": "Mrs Sheppards", - "fontFamily": "Mrs Sheppards, cursive", - "slug": "wp-font-lib-mrs-sheppards", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mrssheppards/v21/PN_2Rfm9snC0XUGoEZhb91ig3vjxynMix4Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mrs Sheppards" - } - ] - }, - { - "name": "Ms Madi", - "fontFamily": "Ms Madi, cursive", - "slug": "wp-font-lib-ms-madi", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/msmadi/v2/HTxsL2UxNnOji5E1N-DPiI7QAYo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ms Madi" - } - ] - }, - { - "name": "Mukta", - "fontFamily": "Mukta, sans-serif", - "slug": "wp-font-lib-mukta", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEOjFma-2HW7ZB_.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mukta" - }, - { - "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbFqj1ma-2HW7ZB_.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mukta" - }, - { - "src": "http://fonts.gstatic.com/s/mukta/v14/iJWKBXyXfDDVXYnGp32S0H3f.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mukta" - }, - { - "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEyjlma-2HW7ZB_.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mukta" - }, - { - "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEeiVma-2HW7ZB_.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mukta" - }, - { - "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbF6iFma-2HW7ZB_.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mukta" - }, - { - "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbFmi1ma-2HW7ZB_.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Mukta" - } - ] - }, - { - "name": "Mukta Mahee", - "fontFamily": "Mukta Mahee, sans-serif", - "slug": "wp-font-lib-mukta-mahee", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9MFcBoHJndqZCsW.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mukta Mahee" - }, - { - "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NhcxoHJndqZCsW.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mukta Mahee" - }, - { - "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXQ3IOIi0hcP8iVU67hA-vNWz4PDWtj.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mukta Mahee" - }, - { - "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9M5choHJndqZCsW.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mukta Mahee" - }, - { - "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9MVdRoHJndqZCsW.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mukta Mahee" - }, - { - "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NxdBoHJndqZCsW.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mukta Mahee" - }, - { - "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NtdxoHJndqZCsW.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Mukta Mahee" - } - ] - }, - { - "name": "Mukta Malar", - "fontFamily": "Mukta Malar, sans-serif", - "slug": "wp-font-lib-mukta-malar", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMwBtAB62ruoAZW.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mukta Malar" - }, - { - "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINUBdAB62ruoAZW.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mukta Malar" - }, - { - "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoXzAXyz8LOE2FpJMxZqLv4LfQJwHbn.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mukta Malar" - }, - { - "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMMBNAB62ruoAZW.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mukta Malar" - }, - { - "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMgA9AB62ruoAZW.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mukta Malar" - }, - { - "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINEAtAB62ruoAZW.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mukta Malar" - }, - { - "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINYAdAB62ruoAZW.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Mukta Malar" - } - ] - }, - { - "name": "Mukta Vaani", - "fontFamily": "Mukta Vaani, sans-serif", - "slug": "wp-font-lib-mukta-vaani", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXNV8BD-u97MW1a.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mukta Vaani" - }, - { - "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWpVMBD-u97MW1a.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mukta Vaani" - }, - { - "src": "http://fonts.gstatic.com/s/muktavaani/v13/3Jn5SD_-ynaxmxnEfVHPIF0FfORL0fNy.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mukta Vaani" - }, - { - "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXxVcBD-u97MW1a.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mukta Vaani" - }, - { - "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXdUsBD-u97MW1a.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mukta Vaani" - }, - { - "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGW5U8BD-u97MW1a.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mukta Vaani" - }, - { - "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWlUMBD-u97MW1a.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Mukta Vaani" - } - ] - }, - { - "name": "Mulish", - "fontFamily": "Mulish, sans-serif", - "slug": "wp-font-lib-mulish", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNRwaClGrw-PTY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexc1RwaClGrw-PTY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaClGrw-PTY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexaFRwaClGrw-PTY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexU1WwaClGrw-PTY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexXRWwaClGrw-PTY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNWwaClGrw-PTY.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexTpWwaClGrw-PTY.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeOvHp47LTZFwA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSd-OvHp47LTZFwA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSKeOvHp47LTZFwA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSG-OvHp47LTZFwA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsS9-SvHp47LTZFwA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSzuSvHp47LTZFwA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeSvHp47LTZFwA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSgOSvHp47LTZFwA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Mulish" - } - ] - }, - { - "name": "Murecho", - "fontFamily": "Murecho, sans-serif", - "slug": "wp-font-lib-murecho", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Murecho" - }, - { - "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Murecho" - }, - { - "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMo15XWZLCpUOaM6.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Murecho" - }, - { - "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Murecho" - }, - { - "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Murecho" - }, - { - "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMq14nWZLCpUOaM6.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Murecho" - }, - { - "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Murecho" - }, - { - "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Murecho" - }, - { - "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrC4nWZLCpUOaM6.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Murecho" - } - ] - }, - { - "name": "MuseoModerno", - "fontFamily": "MuseoModerno, system-ui", - "slug": "wp-font-lib-museomoderno", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZFuewajeKlCdo.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZEuewajeKlCdo.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMghEuewajeKlCdo.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZEuewajeKlCdo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMmREuewajeKlCdo.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMohDuewajeKlCdo.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMrFDuewajeKlCdo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZDuewajeKlCdo.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMv9DuewajeKlCdo.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa4QicCgGdrS3g.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0a8QicCgGdrS3g.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HD68QicCgGdrS3g.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa8QicCgGdrS3g.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HY68QicCgGdrS3g.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54Hj6gQicCgGdrS3g.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HtqgQicCgGdrS3g.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0agQicCgGdrS3g.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H-KgQicCgGdrS3g.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "MuseoModerno" - } - ] - }, - { - "name": "My Soul", - "fontFamily": "My Soul, cursive", - "slug": "wp-font-lib-my-soul", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mysoul/v2/3XFqErcuy945_u6KF_Ulk2nnXf0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "My Soul" - } - ] - }, - { - "name": "Mynerve", - "fontFamily": "Mynerve, cursive", - "slug": "wp-font-lib-mynerve", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mynerve/v2/P5sCzZKPdNjb4jt7xCRuiZ-uydg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mynerve" - } - ] - }, - { - "name": "Mystery Quest", - "fontFamily": "Mystery Quest, system-ui", - "slug": "wp-font-lib-mystery-quest", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mysteryquest/v20/-nF6OG414u0E6k0wynSGlujRHwElD_9Qz9E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mystery Quest" - } - ] - }, - { - "name": "NTR", - "fontFamily": "NTR, sans-serif", - "slug": "wp-font-lib-ntr", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ntr/v15/RLpzK5Xy0ZjiGGhs5TA4bg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "NTR" - } - ] - }, - { - "name": "Nabla", - "fontFamily": "Nabla, system-ui", - "slug": "wp-font-lib-nabla", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nabla/v10/j8_D6-LI0Lvpe7Makz5UhJt9C3uqg_X_75gyGS4jAxsNIjrRNRBUFFR_198.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nabla" - } - ] - }, - { - "name": "Nanum Brush Script", - "fontFamily": "Nanum Brush Script, cursive", - "slug": "wp-font-lib-nanum-brush-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nanumbrushscript/v22/wXK2E2wfpokopxzthSqPbcR5_gVaxazyjqBr1lO97Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nanum Brush Script" - } - ] - }, - { - "name": "Nanum Gothic", - "fontFamily": "Nanum Gothic, sans-serif", - "slug": "wp-font-lib-nanum-gothic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_3Rfi-oW3hYwmKDpxS7F_z_tLfxno73g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nanum Gothic" - }, - { - "src": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_oRfi-oW3hYwmKDpxS7F_LQv37zlEn14YEUQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Nanum Gothic" - }, - { - "src": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_oRfi-oW3hYwmKDpxS7F_LXv77zlEn14YEUQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Nanum Gothic" - } - ] - }, - { - "name": "Nanum Gothic Coding", - "fontFamily": "Nanum Gothic Coding, monospace", - "slug": "wp-font-lib-nanum-gothic-coding", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nanumgothiccoding/v19/8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6QxVs1X7tc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nanum Gothic Coding" - }, - { - "src": "http://fonts.gstatic.com/s/nanumgothiccoding/v19/8QIYdjzHisX_8vv59_xMxtPFW4IXROws8xgecsV88t5V9r4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Nanum Gothic Coding" - } - ] - }, - { - "name": "Nanum Myeongjo", - "fontFamily": "Nanum Myeongjo, serif", - "slug": "wp-font-lib-nanum-myeongjo", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Btx3DZF0dXLMZlywRbVRNhxy1LreHQ8juyl.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nanum Myeongjo" - }, - { - "src": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Bty3DZF0dXLMZlywRbVRNhxy2pXV1A0pfCs5Kos.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Nanum Myeongjo" - }, - { - "src": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Bty3DZF0dXLMZlywRbVRNhxy2pLVFA0pfCs5Kos.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Nanum Myeongjo" - } - ] - }, - { - "name": "Nanum Pen Script", - "fontFamily": "Nanum Pen Script, cursive", - "slug": "wp-font-lib-nanum-pen-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nanumpenscript/v19/daaDSSYiLGqEal3MvdA_FOL_3FkN2z7-aMFCcTU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nanum Pen Script" - } - ] - }, - { - "name": "Neonderthaw", - "fontFamily": "Neonderthaw, cursive", - "slug": "wp-font-lib-neonderthaw", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/neonderthaw/v3/Iure6Yx5-oWVZI0r-17AeZZJprVA4XQ0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Neonderthaw" - } - ] - }, - { - "name": "Nerko One", - "fontFamily": "Nerko One, cursive", - "slug": "wp-font-lib-nerko-one", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nerkoone/v16/m8JQjfZSc7OXlB3ZMOjzcJ5BZmqa3A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nerko One" - } - ] - }, - { - "name": "Neucha", - "fontFamily": "Neucha, cursive", - "slug": "wp-font-lib-neucha", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/neucha/v17/q5uGsou0JOdh94bvugNsCxVEgA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Neucha" - } - ] - }, - { - "name": "Neuton", - "fontFamily": "Neuton, serif", - "slug": "wp-font-lib-neuton", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKAKkfegD5Drog6Q.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Neuton" - }, - { - "src": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKZKofegD5Drog6Q.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Neuton" - }, - { - "src": "http://fonts.gstatic.com/s/neuton/v19/UMBTrPtMoH62xUZyyII7civlBw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Neuton" - }, - { - "src": "http://fonts.gstatic.com/s/neuton/v19/UMBRrPtMoH62xUZCyog_UC71B6M5.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Neuton" - }, - { - "src": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKdK0fegD5Drog6Q.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Neuton" - }, - { - "src": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKaK4fegD5Drog6Q.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Neuton" - } - ] - }, - { - "name": "New Rocker", - "fontFamily": "New Rocker, system-ui", - "slug": "wp-font-lib-new-rocker", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/newrocker/v16/MwQzbhjp3-HImzcCU_cJkGMViblPtXs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "New Rocker" - } - ] - }, - { - "name": "New Tegomin", - "fontFamily": "New Tegomin, serif", - "slug": "wp-font-lib-new-tegomin", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/newtegomin/v10/SLXMc1fV7Gd9USdBAfPlqfN0Q3ptkDMN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "New Tegomin" - } - ] - }, - { - "name": "News Cycle", - "fontFamily": "News Cycle, sans-serif", - "slug": "wp-font-lib-news-cycle", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/newscycle/v23/CSR64z1Qlv-GDxkbKVQ_TOcATNt_pOU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "News Cycle" - }, - { - "src": "http://fonts.gstatic.com/s/newscycle/v23/CSR54z1Qlv-GDxkbKVQ_dFsvaNNUuOwkC2s.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "News Cycle" - } - ] - }, - { - "name": "Newsreader", - "fontFamily": "Newsreader, serif", - "slug": "wp-font-lib-newsreader", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-I_ADOxEPjCggA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wJo_ADOxEPjCggA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438weI_ADOxEPjCggA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wSo_ADOxEPjCggA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wpojADOxEPjCggA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wn4jADOxEPjCggA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-IjADOxEPjCggA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoT-ZAHDWwgECi.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMx2T-ZAHDWwgECi.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwoT-ZAHDWwgECi.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwaT-ZAHDWwgECi.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMz2SOZAHDWwgECi.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMzPSOZAHDWwgECi.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoSOZAHDWwgECi.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Newsreader" - } - ] - }, - { - "name": "Niconne", - "fontFamily": "Niconne, cursive", - "slug": "wp-font-lib-niconne", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/niconne/v15/w8gaH2QvRug1_rTfrQut2F4OuOo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Niconne" - } - ] - }, - { - "name": "Niramit", - "fontFamily": "Niramit, sans-serif", - "slug": "wp-font-lib-niramit", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVXx7tiiEr5_BdZ8.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Niramit" - }, - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiXimOq73EZZ_f6w.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Niramit" - }, - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVRh4tiiEr5_BdZ8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Niramit" - }, - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiOiqOq73EZZ_f6w.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Niramit" - }, - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_uuMpWdvgLdNxVLbbRQkiCvs5Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Niramit" - }, - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_usMpWdvgLdNxVLXbZalgKqo5bYbA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Niramit" - }, - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVUB5tiiEr5_BdZ8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Niramit" - }, - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiYiuOq73EZZ_f6w.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Niramit" - }, - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVWx-tiiEr5_BdZ8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Niramit" - }, - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiTiyOq73EZZ_f6w.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Niramit" - }, - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVQh_tiiEr5_BdZ8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Niramit" - }, - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiKi2Oq73EZZ_f6w.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Niramit" - } - ] - }, - { - "name": "Nixie One", - "fontFamily": "Nixie One, system-ui", - "slug": "wp-font-lib-nixie-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nixieone/v16/lW-8wjkKLXjg5y2o2uUoUOFzpS-yLw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nixie One" - } - ] - }, - { - "name": "Nobile", - "fontFamily": "Nobile, sans-serif", - "slug": "wp-font-lib-nobile", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nobile/v17/m8JTjflSeaOVl1i2XqfXeLVdbw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nobile" - }, - { - "src": "http://fonts.gstatic.com/s/nobile/v17/m8JRjflSeaOVl1iGXK3TWrBNb3OD.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Nobile" - }, - { - "src": "http://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iOqo7zcJ5BZmqa3A.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Nobile" - }, - { - "src": "http://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJUnc5RFRG-K3Mud.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Nobile" - }, - { - "src": "http://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iO4ojzcJ5BZmqa3A.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Nobile" - }, - { - "src": "http://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJVvdZRFRG-K3Mud.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Nobile" - } - ] - }, - { - "name": "Nokora", - "fontFamily": "Nokora, sans-serif", - "slug": "wp-font-lib-nokora", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nokora/v30/~CgoKBk5va29yYRhkIAAqBAgBGAE=.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Nokora" - }, - { - "src": "http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRisAiAAKgQIARgB.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Nokora" - }, - { - "src": "http://fonts.gstatic.com/s/nokora/v30/~CggKBk5va29yYSAAKgQIARgB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nokora" - }, - { - "src": "http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRi8BSAAKgQIARgB.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Nokora" - }, - { - "src": "http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRiEByAAKgQIARgB.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Nokora" - } - ] - }, - { - "name": "Norican", - "fontFamily": "Norican, cursive", - "slug": "wp-font-lib-norican", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/norican/v14/MwQ2bhXp1eSBqjkPGJJRtGs-lbA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Norican" - } - ] - }, - { - "name": "Nosifer", - "fontFamily": "Nosifer, system-ui", - "slug": "wp-font-lib-nosifer", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nosifer/v20/ZGjXol5JTp0g5bxZaC1RVDNdGDs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nosifer" - } - ] - }, - { - "name": "Notable", - "fontFamily": "Notable, sans-serif", - "slug": "wp-font-lib-notable", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notable/v14/gNMEW3N_SIqx-WX9-HMoFIez5MI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Notable" - } - ] - }, - { - "name": "Nothing You Could Do", - "fontFamily": "Nothing You Could Do, cursive", - "slug": "wp-font-lib-nothing-you-could-do", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nothingyoucoulddo/v15/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OJl1ol2Ymo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nothing You Could Do" - } - ] - }, - { - "name": "Noticia Text", - "fontFamily": "Noticia Text, serif", - "slug": "wp-font-lib-noticia-text", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/noticiatext/v15/VuJ2dNDF2Yv9qppOePKYRP1GYTFZt0rNpQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noticia Text" - }, - { - "src": "http://fonts.gstatic.com/s/noticiatext/v15/VuJodNDF2Yv9qppOePKYRP12YztdlU_dpSjt.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Noticia Text" - }, - { - "src": "http://fonts.gstatic.com/s/noticiatext/v15/VuJpdNDF2Yv9qppOePKYRP1-3R59v2HRrDH0eA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noticia Text" - }, - { - "src": "http://fonts.gstatic.com/s/noticiatext/v15/VuJrdNDF2Yv9qppOePKYRP12YwPhumvVjjTkeMnz.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Noticia Text" - } - ] - }, - { - "name": "Noto Color Emoji", - "fontFamily": "Noto Color Emoji, sans-serif", - "slug": "wp-font-lib-noto-color-emoji", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notocoloremoji/v25/Yq6P-KqIXTD0t4D9z1ESnKM3-HpFab5s79iz64w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Color Emoji" - } - ] - }, - { - "name": "Noto Emoji", - "fontFamily": "Noto Emoji, sans-serif", - "slug": "wp-font-lib-noto-emoji", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob_10jwvS-FGJCMY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Emoji" - }, - { - "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-r0jwvS-FGJCMY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Emoji" - }, - { - "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-Z0jwvS-FGJCMY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Emoji" - }, - { - "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob911TwvS-FGJCMY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Emoji" - }, - { - "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob9M1TwvS-FGJCMY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Emoji" - } - ] - }, - { - "name": "Noto Kufi Arabic", - "fontFamily": "Noto Kufi Arabic, sans-serif", - "slug": "wp-font-lib-noto-kufi-arabic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v3obPnLSmf5yD.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v34bPnLSmf5yD.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh4x34bPnLSmf5yD.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v34bPnLSmf5yD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5d34bPnLSmf5yD.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6x2IbPnLSmf5yD.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6I2IbPnLSmf5yD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v2IbPnLSmf5yD.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7G2IbPnLSmf5yD.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic" - } - ] - }, - { - "name": "Noto Music", - "fontFamily": "Noto Music, sans-serif", - "slug": "wp-font-lib-noto-music", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notomusic/v17/pe0rMIiSN5pO63htf1sxIteQB9Zra1U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Music" - } - ] - }, - { - "name": "Noto Naskh Arabic", - "fontFamily": "Noto Naskh Arabic, serif", - "slug": "wp-font-lib-noto-naskh-arabic", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwvc5krK0z9_Mnuw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Naskh Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwj85krK0z9_Mnuw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Naskh Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwY8lkrK0z9_Mnuw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Naskh Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwWslkrK0z9_Mnuw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Naskh Arabic" - } - ] - }, - { - "name": "Noto Nastaliq Urdu", - "fontFamily": "Noto Nastaliq Urdu, serif", - "slug": "wp-font-lib-noto-nastaliq-urdu", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qt_-DK2f2-_8mEw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Nastaliq Urdu" - }, - { - "src": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qu3-DK2f2-_8mEw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Nastaliq Urdu" - }, - { - "src": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3QgH5DK2f2-_8mEw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Nastaliq Urdu" - }, - { - "src": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qjj5DK2f2-_8mEw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Nastaliq Urdu" - } - ] - }, - { - "name": "Noto Rashi Hebrew", - "fontFamily": "Noto Rashi Hebrew, serif", - "slug": "wp-font-lib-noto-rashi-hebrew", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-DkRyq6Nf2pfA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-HkRyq6Nf2pfA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZWeHkRyq6Nf2pfA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-HkRyq6Nf2pfA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZNeHkRyq6Nf2pfA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ2ebkRyq6Nf2pfA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ4ObkRyq6Nf2pfA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-bkRyq6Nf2pfA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZrubkRyq6Nf2pfA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew" - } - ] - }, - { - "name": "Noto Sans", - "fontFamily": "Noto Sans, sans-serif", - "slug": "wp-font-lib-noto-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0OIpQlx3QUlC5A4PNjhjRFSfiM7HBj.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0MIpQlx3QUlC5A4PNr4AwhQ_yu6WBjJLE.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjKhVlY9aA5Wl6PQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AyNYtyEx2xqPaif.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjThZlY9aA5Wl6PQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AzpYdyEx2xqPaif.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0IIpQlx3QUlC5A4PNb4j5Ba_2c7A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0OIpQlx3QUlC5A4PNr4DRFSfiM7HBj.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjFhdlY9aA5Wl6PQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AyxYNyEx2xqPaif.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjOhBlY9aA5Wl6PQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AydZ9yEx2xqPaif.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjXhFlY9aA5Wl6PQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4Az5ZtyEx2xqPaif.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjQhJlY9aA5Wl6PQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AzlZdyEx2xqPaif.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjZhNlY9aA5Wl6PQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AzBZNyEx2xqPaif.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Noto Sans" - } - ] - }, - { - "name": "Noto Sans Adlam", - "fontFamily": "Noto Sans Adlam, sans-serif", - "slug": "wp-font-lib-noto-sans-adlam", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufnv0TGnBZLwhuvk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam" - }, - { - "src": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufkn0TGnBZLwhuvk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam" - }, - { - "src": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufqXzTGnBZLwhuvk.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam" - }, - { - "src": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufpzzTGnBZLwhuvk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam" - } - ] - }, - { - "name": "Noto Sans Adlam Unjoined", - "fontFamily": "Noto Sans Adlam Unjoined, sans-serif", - "slug": "wp-font-lib-noto-sans-adlam-unjoined", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Ye35PMEe-E3slUg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam Unjoined" - }, - { - "src": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Yd_5PMEe-E3slUg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam Unjoined" - }, - { - "src": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YTP-PMEe-E3slUg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam Unjoined" - }, - { - "src": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YQr-PMEe-E3slUg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam Unjoined" - } - ] - }, - { - "name": "Noto Sans Anatolian Hieroglyphs", - "fontFamily": "Noto Sans Anatolian Hieroglyphs, sans-serif", - "slug": "wp-font-lib-noto-sans-anatolian-hieroglyphs", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansanatolianhieroglyphs/v14/ijw9s4roRME5LLRxjsRb8A0gKPSWq4BbDmHHu6j2pEtUJzZWXybIymc5QYo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Anatolian Hieroglyphs" - } - ] - }, - { - "name": "Noto Sans Arabic", - "fontFamily": "Noto Sans Arabic, sans-serif", - "slug": "wp-font-lib-noto-sans-arabic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyG2vu3CBFQLaig.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGyvu3CBFQLaig.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCflmyvu3CBFQLaig.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyGyvu3CBFQLaig.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCf-myvu3CBFQLaig.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfFmuvu3CBFQLaig.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfL2uvu3CBFQLaig.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGuvu3CBFQLaig.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfYWuvu3CBFQLaig.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic" - } - ] - }, - { - "name": "Noto Sans Armenian", - "fontFamily": "Noto Sans Armenian, sans-serif", - "slug": "wp-font-lib-noto-sans-armenian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxbq0iYy6zF3Eg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxb60iYy6zF3Eg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoqvb60iYy6zF3Eg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxb60iYy6zF3Eg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorDb60iYy6zF3Eg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoovaK0iYy6zF3Eg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLooWaK0iYy6zF3Eg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxaK0iYy6zF3Eg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopYaK0iYy6zF3Eg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian" - } - ] - }, - { - "name": "Noto Sans Avestan", - "fontFamily": "Noto Sans Avestan, sans-serif", - "slug": "wp-font-lib-noto-sans-avestan", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansavestan/v20/bWti7ejKfBziStx7lIzKOLQZKhIJkyu9SASLji8U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Avestan" - } - ] - }, - { - "name": "Noto Sans Balinese", - "fontFamily": "Noto Sans Balinese, sans-serif", - "slug": "wp-font-lib-noto-sans-balinese", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov7fdhE5Vd222PPY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Balinese" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov4XdhE5Vd222PPY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Balinese" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov2nahE5Vd222PPY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Balinese" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov1DahE5Vd222PPY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Balinese" - } - ] - }, - { - "name": "Noto Sans Bamum", - "fontFamily": "Noto Sans Bamum, sans-serif", - "slug": "wp-font-lib-noto-sans-bamum", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEddO-_gLykxEkxA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bamum" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEeVO-_gLykxEkxA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bamum" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEQlJ-_gLykxEkxA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bamum" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPETBJ-_gLykxEkxA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bamum" - } - ] - }, - { - "name": "Noto Sans Bassa Vah", - "fontFamily": "Noto Sans Bassa Vah, sans-serif", - "slug": "wp-font-lib-noto-sans-bassa-vah", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MaAc6p34gH-GD7.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bassa Vah" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MoAc6p34gH-GD7.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bassa Vah" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4PEBs6p34gH-GD7.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bassa Vah" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4P9Bs6p34gH-GD7.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bassa Vah" - } - ] - }, - { - "name": "Noto Sans Batak", - "fontFamily": "Noto Sans Batak, sans-serif", - "slug": "wp-font-lib-noto-sans-batak", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansbatak/v16/gok2H6TwAEdtF9N8-mdTCQvT-Zdgo4_PHuk74A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Batak" - } - ] - }, - { - "name": "Noto Sans Bengali", - "fontFamily": "Noto Sans Bengali, sans-serif", - "slug": "wp-font-lib-noto-sans-bengali", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolKudCk8izI0lc.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglLudCk8izI0lc.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmstdLudCk8izI0lc.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolLudCk8izI0lc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsrtLudCk8izI0lc.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsldMudCk8izI0lc.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6Kmsm5MudCk8izI0lc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglMudCk8izI0lc.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsiBMudCk8izI0lc.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali" - } - ] - }, - { - "name": "Noto Sans Bhaiksuki", - "fontFamily": "Noto Sans Bhaiksuki, sans-serif", - "slug": "wp-font-lib-noto-sans-bhaiksuki", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansbhaiksuki/v15/UcC63EosKniBH4iELXATsSBWdvUHXxhj8rLUdU4wh9U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bhaiksuki" - } - ] - }, - { - "name": "Noto Sans Brahmi", - "fontFamily": "Noto Sans Brahmi, sans-serif", - "slug": "wp-font-lib-noto-sans-brahmi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansbrahmi/v15/vEFK2-VODB8RrNDvZSUmQQIIByV18tK1W77HtMo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Brahmi" - } - ] - }, - { - "name": "Noto Sans Buginese", - "fontFamily": "Noto Sans Buginese, sans-serif", - "slug": "wp-font-lib-noto-sans-buginese", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansbuginese/v18/esDM30ldNv-KYGGJpKGk18phe_7Da6_gtfuEXLmNtw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Buginese" - } - ] - }, - { - "name": "Noto Sans Buhid", - "fontFamily": "Noto Sans Buhid, sans-serif", - "slug": "wp-font-lib-noto-sans-buhid", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansbuhid/v18/Dxxy8jiXMW75w3OmoDXVWJD7YwzAe6tgnaFoGA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Buhid" - } - ] - }, - { - "name": "Noto Sans Canadian Aboriginal", - "fontFamily": "Noto Sans Canadian Aboriginal, sans-serif", - "slug": "wp-font-lib-noto-sans-canadian-aboriginal", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLj_yAsg0q0uhQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2Ln_yAsg0q0uhQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigBrn_yAsg0q0uhQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLn_yAsg0q0uhQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigarn_yAsg0q0uhQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzighr7_yAsg0q0uhQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigv77_yAsg0q0uhQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2L7_yAsg0q0uhQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig8b7_yAsg0q0uhQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal" - } - ] - }, - { - "name": "Noto Sans Carian", - "fontFamily": "Noto Sans Carian, sans-serif", - "slug": "wp-font-lib-noto-sans-carian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanscarian/v15/LDIpaoiONgYwA9Yc6f0gUILeMIOgs7ob9yGLmfI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Carian" - } - ] - }, - { - "name": "Noto Sans Caucasian Albanian", - "fontFamily": "Noto Sans Caucasian Albanian, sans-serif", - "slug": "wp-font-lib-noto-sans-caucasian-albanian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanscaucasianalbanian/v16/nKKA-HM_FYFRJvXzVXaANsU0VzsAc46QGOkWytlTs-TXrYDmoVmRSZo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Caucasian Albanian" - } - ] - }, - { - "name": "Noto Sans Chakma", - "fontFamily": "Noto Sans Chakma, sans-serif", - "slug": "wp-font-lib-noto-sans-chakma", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanschakma/v17/Y4GQYbJ8VTEp4t3MKJSMjg5OIzhi4JjTQhYBeYo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Chakma" - } - ] - }, - { - "name": "Noto Sans Cham", - "fontFamily": "Noto Sans Cham, sans-serif", - "slug": "wp-font-lib-noto-sans-cham", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcER0cv7GykboaLg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRwcv7GykboaLg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcTxwcv7GykboaLg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcERwcv7GykboaLg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcIxwcv7GykboaLg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfczxscv7GykboaLg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfc9hscv7GykboaLg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRscv7GykboaLg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcuBscv7GykboaLg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham" - } - ] - }, - { - "name": "Noto Sans Cherokee", - "fontFamily": "Noto Sans Cherokee, sans-serif", - "slug": "wp-font-lib-noto-sans-cherokee", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5ODkm5rAffjl0.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5PDkm5rAffjl0.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWnBPDkm5rAffjl0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5PDkm5rAffjl0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWhxPDkm5rAffjl0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWvBIDkm5rAffjl0.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWslIDkm5rAffjl0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5IDkm5rAffjl0.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWodIDkm5rAffjl0.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee" - } - ] - }, - { - "name": "Noto Sans Chorasmian", - "fontFamily": "Noto Sans Chorasmian, sans-serif", - "slug": "wp-font-lib-noto-sans-chorasmian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanschorasmian/v1/MQpL-X6uKMC7ROPLwRnI9ULxK_7NVkf8S5vyoH7w4g9b.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Chorasmian" - } - ] - }, - { - "name": "Noto Sans Coptic", - "fontFamily": "Noto Sans Coptic, sans-serif", - "slug": "wp-font-lib-noto-sans-coptic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanscoptic/v17/iJWfBWmUZi_OHPqn4wq6kgqumOEd78u_VG0xR4Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Coptic" - } - ] - }, - { - "name": "Noto Sans Cuneiform", - "fontFamily": "Noto Sans Cuneiform, sans-serif", - "slug": "wp-font-lib-noto-sans-cuneiform", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanscuneiform/v15/bMrrmTWK7YY-MF22aHGGd7H8PhJtvBDWgb9JlRQueeQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cuneiform" - } - ] - }, - { - "name": "Noto Sans Cypriot", - "fontFamily": "Noto Sans Cypriot, sans-serif", - "slug": "wp-font-lib-noto-sans-cypriot", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanscypriot/v15/8AtzGta9PYqQDjyp79a6f8Cj-3a3cxIsK5MPpahF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cypriot" - } - ] - }, - { - "name": "Noto Sans Deseret", - "fontFamily": "Noto Sans Deseret, sans-serif", - "slug": "wp-font-lib-noto-sans-deseret", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansdeseret/v15/MwQsbgPp1eKH6QsAVuFb9AZM6MMr2Vq9ZnJSZtQG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Deseret" - } - ] - }, - { - "name": "Noto Sans Devanagari", - "fontFamily": "Noto Sans Devanagari, sans-serif", - "slug": "wp-font-lib-noto-sans-devanagari", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQky-AzoFoW4Ow.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQly-AzoFoW4Ow.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlSoly-AzoFoW4Ow.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQly-AzoFoW4Ow.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlUYly-AzoFoW4Ow.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Alaoiy-AzoFoW4Ow.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlZMiy-AzoFoW4Ow.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQiy-AzoFoW4Ow.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Ald0iy-AzoFoW4Ow.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari" - } - ] - }, - { - "name": "Noto Sans Display", - "fontFamily": "Noto Sans Display, sans-serif", - "slug": "wp-font-lib-noto-sans-display", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cLVTGQ2iHrvWM.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cKVTGQ2iHrvWM.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_ykKVTGQ2iHrvWM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cKVTGQ2iHrvWM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_0UKVTGQ2iHrvWM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_6kNVTGQ2iHrvWM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_5ANVTGQ2iHrvWM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cNVTGQ2iHrvWM.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_94NVTGQ2iHrvWM.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXOa3gPurWM9uQ.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXKa3gPurWM9uQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9J43Ka3gPurWM9uQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXKa3gPurWM9uQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9Jj3Ka3gPurWM9uQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JY3Wa3gPurWM9uQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JWnWa3gPurWM9uQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXWa3gPurWM9uQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JFHWa3gPurWM9uQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display" - } - ] - }, - { - "name": "Noto Sans Duployan", - "fontFamily": "Noto Sans Duployan, sans-serif", - "slug": "wp-font-lib-noto-sans-duployan", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansduployan/v16/gokzH7nwAEdtF9N8-mdTDx_X9JM5wsvrFsIn6WYDvA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Duployan" - } - ] - }, - { - "name": "Noto Sans Egyptian Hieroglyphs", - "fontFamily": "Noto Sans Egyptian Hieroglyphs, sans-serif", - "slug": "wp-font-lib-noto-sans-egyptian-hieroglyphs", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansegyptianhieroglyphs/v26/vEF42-tODB8RrNDvZSUmRhcQHzx1s7y_F9-j3qSzEcbEYindSVK8xRg7iw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Egyptian Hieroglyphs" - } - ] - }, - { - "name": "Noto Sans Elbasan", - "fontFamily": "Noto Sans Elbasan, sans-serif", - "slug": "wp-font-lib-noto-sans-elbasan", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanselbasan/v16/-F6rfiZqLzI2JPCgQBnw400qp1trvHdlre4dFcFh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Elbasan" - } - ] - }, - { - "name": "Noto Sans Elymaic", - "fontFamily": "Noto Sans Elymaic, sans-serif", - "slug": "wp-font-lib-noto-sans-elymaic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanselymaic/v15/UqyKK9YTJW5liNMhTMqe9vUFP65ZD4AjWOT0zi2V.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Elymaic" - } - ] - }, - { - "name": "Noto Sans Ethiopic", - "fontFamily": "Noto Sans Ethiopic, sans-serif", - "slug": "wp-font-lib-noto-sans-ethiopic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OKqDjwmfeaY9u.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OK6DjwmfeaY9u.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T34QK6DjwmfeaY9u.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OK6DjwmfeaY9u.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T358K6DjwmfeaY9u.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36QLKDjwmfeaY9u.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36pLKDjwmfeaY9u.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OLKDjwmfeaY9u.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37nLKDjwmfeaY9u.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic" - } - ] - }, - { - "name": "Noto Sans Georgian", - "fontFamily": "Noto Sans Georgian, sans-serif", - "slug": "wp-font-lib-noto-sans-georgian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzVj-f5WK0OQV.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptnzFj-f5WK0OQV.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpu5zFj-f5WK0OQV.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzFj-f5WK0OQV.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvVzFj-f5WK0OQV.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdps5y1j-f5WK0OQV.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpsAy1j-f5WK0OQV.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptny1j-f5WK0OQV.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptOy1j-f5WK0OQV.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian" - } - ] - }, - { - "name": "Noto Sans Glagolitic", - "fontFamily": "Noto Sans Glagolitic, sans-serif", - "slug": "wp-font-lib-noto-sans-glagolitic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansglagolitic/v15/1q2ZY4-BBFBst88SU_tOj4J-4yuNF_HI4ERK4Amu7nM1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Glagolitic" - } - ] - }, - { - "name": "Noto Sans Gothic", - "fontFamily": "Noto Sans Gothic, sans-serif", - "slug": "wp-font-lib-noto-sans-gothic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansgothic/v15/TuGKUUVzXI5FBtUq5a8bj6wRbzxTFMX40kFQRx0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gothic" - } - ] - }, - { - "name": "Noto Sans Grantha", - "fontFamily": "Noto Sans Grantha, sans-serif", - "slug": "wp-font-lib-noto-sans-grantha", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansgrantha/v17/3y976akwcCjmsU8NDyrKo3IQfQ4o-r8cFeulHc6N.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Grantha" - } - ] - }, - { - "name": "Noto Sans Gujarati", - "fontFamily": "Noto Sans Gujarati, sans-serif", - "slug": "wp-font-lib-noto-sans-gujarati", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFgPM_OdiEH0s.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpFwPM_OdiEH0s.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_z3FwPM_OdiEH0s.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFwPM_OdiEH0s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ybFwPM_OdiEH0s.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_x3EAPM_OdiEH0s.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_xOEAPM_OdiEH0s.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpEAPM_OdiEH0s.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wAEAPM_OdiEH0s.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati" - } - ] - }, - { - "name": "Noto Sans Gunjala Gondi", - "fontFamily": "Noto Sans Gunjala Gondi, sans-serif", - "slug": "wp-font-lib-noto-sans-gunjala-gondi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansgunjalagondi/v15/bWto7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5hcVXYMTK4q1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gunjala Gondi" - } - ] - }, - { - "name": "Noto Sans Gurmukhi", - "fontFamily": "Noto Sans Gurmukhi, sans-serif", - "slug": "wp-font-lib-noto-sans-gurmukhi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1Oe3bxZ_trdp7h.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OenbxZ_trdp7h.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG0QenbxZ_trdp7h.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1OenbxZ_trdp7h.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG18enbxZ_trdp7h.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2QfXbxZ_trdp7h.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2pfXbxZ_trdp7h.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OfXbxZ_trdp7h.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3nfXbxZ_trdp7h.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi" - } - ] - }, - { - "name": "Noto Sans HK", - "fontFamily": "Noto Sans HK, sans-serif", - "slug": "wp-font-lib-noto-sans-hk", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKO-GM_FYFRJvXzVXaAPe9ZUHp1MOv2ObB7.otf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans HK" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZmFhTHMX6MKliqQ.otf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans HK" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKQ-GM_FYFRJvXzVXaAPe9hMnB3Eu7mOQ.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans HK" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZwFlTHMX6MKliqQ.otf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans HK" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZiF9THMX6MKliqQ.otf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans HK" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZsF1THMX6MKliqQ.otf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans HK" - } - ] - }, - { - "name": "Noto Sans Hanifi Rohingya", - "fontFamily": "Noto Sans Hanifi Rohingya, sans-serif", - "slug": "wp-font-lib-noto-sans-hanifi-rohingya", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYY4j6vvcudK8rN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hanifi Rohingya" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYq4j6vvcudK8rN.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hanifi Rohingya" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIbG5T6vvcudK8rN.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hanifi Rohingya" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIb_5T6vvcudK8rN.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hanifi Rohingya" - } - ] - }, - { - "name": "Noto Sans Hanunoo", - "fontFamily": "Noto Sans Hanunoo, sans-serif", - "slug": "wp-font-lib-noto-sans-hanunoo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanshanunoo/v17/f0Xs0fCv8dxkDWlZSoXOj6CphMloFsEsEpgL_ix2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hanunoo" - } - ] - }, - { - "name": "Noto Sans Hatran", - "fontFamily": "Noto Sans Hatran, sans-serif", - "slug": "wp-font-lib-noto-sans-hatran", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanshatran/v15/A2BBn4Ne0RgnVF3Lnko-0sOBIfL_mM83r1nwzDs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hatran" - } - ] - }, - { - "name": "Noto Sans Hebrew", - "fontFamily": "Noto Sans Hebrew, sans-serif", - "slug": "wp-font-lib-noto-sans-hebrew", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4utoiJltutR2g.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX94qtoiJltutR2g.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXKYqtoiJltutR2g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4qtoiJltutR2g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXRYqtoiJltutR2g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXqY2toiJltutR2g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXkI2toiJltutR2g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX942toiJltutR2g.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX3o2toiJltutR2g.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew" - } - ] - }, - { - "name": "Noto Sans Imperial Aramaic", - "fontFamily": "Noto Sans Imperial Aramaic, sans-serif", - "slug": "wp-font-lib-noto-sans-imperial-aramaic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansimperialaramaic/v15/a8IMNpjwKmHXpgXbMIsbTc_kvks91LlLetBr5itQrtdml3YfPNno.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Imperial Aramaic" - } - ] - }, - { - "name": "Noto Sans Indic Siyaq Numbers", - "fontFamily": "Noto Sans Indic Siyaq Numbers, sans-serif", - "slug": "wp-font-lib-noto-sans-indic-siyaq-numbers", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansindicsiyaqnumbers/v15/6xK5dTJFKcWIu4bpRBjRZRpsIYHabOeZ8UZLubTzpXNHKx2WPOpVd5Iu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Indic Siyaq Numbers" - } - ] - }, - { - "name": "Noto Sans Inscriptional Pahlavi", - "fontFamily": "Noto Sans Inscriptional Pahlavi, sans-serif", - "slug": "wp-font-lib-noto-sans-inscriptional-pahlavi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansinscriptionalpahlavi/v15/ll8UK3GaVDuxR-TEqFPIbsR79Xxz9WEKbwsjpz7VklYlC7FCVtqVOAYK0QA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Inscriptional Pahlavi" - } - ] - }, - { - "name": "Noto Sans Inscriptional Parthian", - "fontFamily": "Noto Sans Inscriptional Parthian, sans-serif", - "slug": "wp-font-lib-noto-sans-inscriptional-parthian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansinscriptionalparthian/v16/k3k7o-IMPvpLmixcA63oYi-yStDkgXuXncL7dzfW3P4TAJ2yklBJ2jNkLlLr.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Inscriptional Parthian" - } - ] - }, - { - "name": "Noto Sans JP", - "fontFamily": "Noto Sans JP, sans-serif", - "slug": "wp-font-lib-noto-sans-jp", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEi75vY0rw-oME.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFJEj75vY0rw-oME.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFE8j75vY0rw-oME.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEj75vY0rw-oME.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFCMj75vY0rw-oME.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFM8k75vY0rw-oME.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFPYk75vY0rw-oME.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFJEk75vY0rw-oME.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFLgk75vY0rw-oME.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP" - } - ] - }, - { - "name": "Noto Sans Javanese", - "fontFamily": "Noto Sans Javanese, sans-serif", - "slug": "wp-font-lib-noto-sans-javanese", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxJnkFFliZYWj4O8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Javanese" - }, - { - "src": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxKvkFFliZYWj4O8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Javanese" - }, - { - "src": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxEfjFFliZYWj4O8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Javanese" - }, - { - "src": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxH7jFFliZYWj4O8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Javanese" - } - ] - }, - { - "name": "Noto Sans KR", - "fontFamily": "Noto Sans KR, sans-serif", - "slug": "wp-font-lib-noto-sans-kr", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby6FmXiEBPT4ITbgNA5CgmOsn7uwpYcuH8y.otf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans KR" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOelzI7rgQsWYrzw.otf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans KR" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskr/v27/PbykFmXiEBPT4ITbgNA5Cgm20HTs4JMMuA.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans KR" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOIl3I7rgQsWYrzw.otf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans KR" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOalvI7rgQsWYrzw.otf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans KR" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOUlnI7rgQsWYrzw.otf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans KR" - } - ] - }, - { - "name": "Noto Sans Kaithi", - "fontFamily": "Noto Sans Kaithi, sans-serif", - "slug": "wp-font-lib-noto-sans-kaithi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanskaithi/v16/buEtppS9f8_vkXadMBJJu0tWjLwjQi0KdoZIKlo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kaithi" - } - ] - }, - { - "name": "Noto Sans Kannada", - "fontFamily": "Noto Sans Kannada, sans-serif", - "slug": "wp-font-lib-noto-sans-kannada", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvMzSIMLsPKrkY.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvNzSIMLsPKrkY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrGXNzSIMLsPKrkY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvNzSIMLsPKrkY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrAnNzSIMLsPKrkY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrOXKzSIMLsPKrkY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrNzKzSIMLsPKrkY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvKzSIMLsPKrkY.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrJLKzSIMLsPKrkY.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada" - } - ] - }, - { - "name": "Noto Sans Kayah Li", - "fontFamily": "Noto Sans Kayah Li, sans-serif", - "slug": "wp-font-lib-noto-sans-kayah-li", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WCc3CZH4EXLuKVM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kayah Li" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WBU3CZH4EXLuKVM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kayah Li" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WPkwCZH4EXLuKVM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kayah Li" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WMAwCZH4EXLuKVM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kayah Li" - } - ] - }, - { - "name": "Noto Sans Kharoshthi", - "fontFamily": "Noto Sans Kharoshthi, sans-serif", - "slug": "wp-font-lib-noto-sans-kharoshthi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanskharoshthi/v16/Fh4qPiLjKS30-P4-pGMMXCCfvkc5Vd7KE5z4rFyx5mR1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kharoshthi" - } - ] - }, - { - "name": "Noto Sans Khmer", - "fontFamily": "Noto Sans Khmer, sans-serif", - "slug": "wp-font-lib-noto-sans-khmer", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAZz4kAbrddiA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNAJz4kAbrddiA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYvTAJz4kAbrddiA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAJz4kAbrddiA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYu_AJz4kAbrddiA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtTB5z4kAbrddiA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtqB5z4kAbrddiA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNB5z4kAbrddiA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYskB5z4kAbrddiA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer" - } - ] - }, - { - "name": "Noto Sans Khojki", - "fontFamily": "Noto Sans Khojki, sans-serif", - "slug": "wp-font-lib-noto-sans-khojki", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanskhojki/v16/-nFnOHM29Oofr2wohFbTuPPKVWpmK_d709jy92k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khojki" - } - ] - }, - { - "name": "Noto Sans Khudawadi", - "fontFamily": "Noto Sans Khudawadi, sans-serif", - "slug": "wp-font-lib-noto-sans-khudawadi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanskhudawadi/v16/fdNi9t6ZsWBZ2k5ltHN73zZ5hc8HANlHIjRnVVXz9MY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khudawadi" - } - ] - }, - { - "name": "Noto Sans Lao", - "fontFamily": "Noto Sans Lao, sans-serif", - "slug": "wp-font-lib-noto-sans-lao", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccfdf5MK3riB2w.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cbdf5MK3riB2w.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4L8bdf5MK3riB2w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccbdf5MK3riB2w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4Q8bdf5MK3riB2w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4r8Hdf5MK3riB2w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4lsHdf5MK3riB2w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cHdf5MK3riB2w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt42MHdf5MK3riB2w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao" - } - ] - }, - { - "name": "Noto Sans Lao Looped", - "fontFamily": "Noto Sans Lao Looped, sans-serif", - "slug": "wp-font-lib-noto-sans-lao-looped", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomPr2M-Zw5V_T71k.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomHr3M-Zw5V_T71k.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomKT3M-Zw5V_T71k.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomPr3M-Zw5V_T71k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomMj3M-Zw5V_T71k.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomCTwM-Zw5V_T71k.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomB3wM-Zw5V_T71k.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomHrwM-Zw5V_T71k.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomFPwM-Zw5V_T71k.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped" - } - ] - }, - { - "name": "Noto Sans Lepcha", - "fontFamily": "Noto Sans Lepcha, sans-serif", - "slug": "wp-font-lib-noto-sans-lepcha", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanslepcha/v16/0QI7MWlB_JWgA166SKhu05TekNS32AJstqBXgd4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lepcha" - } - ] - }, - { - "name": "Noto Sans Limbu", - "fontFamily": "Noto Sans Limbu, sans-serif", - "slug": "wp-font-lib-noto-sans-limbu", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanslimbu/v22/3JnlSDv90Gmq2mrzckOBBRRoNJVj0MF3OHRDnA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Limbu" - } - ] - }, - { - "name": "Noto Sans Linear A", - "fontFamily": "Noto Sans Linear A, sans-serif", - "slug": "wp-font-lib-noto-sans-linear-a", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanslineara/v16/oPWS_l16kP4jCuhpgEGmwJOiA18FZj22zmHQAGQicw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Linear A" - } - ] - }, - { - "name": "Noto Sans Linear B", - "fontFamily": "Noto Sans Linear B, sans-serif", - "slug": "wp-font-lib-noto-sans-linear-b", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanslinearb/v15/HhyJU4wt9vSgfHoORYOiXOckKNB737IV3BkFTq4EPw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Linear B" - } - ] - }, - { - "name": "Noto Sans Lisu", - "fontFamily": "Noto Sans Lisu, sans-serif", - "slug": "wp-font-lib-noto-sans-lisu", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP2Vwt29IlxkVdig.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lisu" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP61wt29IlxkVdig.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lisu" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPB1st29IlxkVdig.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lisu" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPPlst29IlxkVdig.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lisu" - } - ] - }, - { - "name": "Noto Sans Lycian", - "fontFamily": "Noto Sans Lycian, sans-serif", - "slug": "wp-font-lib-noto-sans-lycian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanslycian/v15/QldVNSNMqAsHtsJ7UmqxBQA9r8wA5_naCJwn00E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lycian" - } - ] - }, - { - "name": "Noto Sans Lydian", - "fontFamily": "Noto Sans Lydian, sans-serif", - "slug": "wp-font-lib-noto-sans-lydian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanslydian/v15/c4m71mVzGN7s8FmIukZJ1v4ZlcPReUPXMoIjEQI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lydian" - } - ] - }, - { - "name": "Noto Sans Mahajani", - "fontFamily": "Noto Sans Mahajani, sans-serif", - "slug": "wp-font-lib-noto-sans-mahajani", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmahajani/v15/-F6sfiVqLzI2JPCgQBnw60Agp0JrvD5Fh8ARHNh4zg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mahajani" - } - ] - }, - { - "name": "Noto Sans Malayalam", - "fontFamily": "Noto Sans Malayalam, sans-serif", - "slug": "wp-font-lib-noto-sans-malayalam", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuH9BFzEr6HxEA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuD9BFzEr6HxEA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_GOD9BFzEr6HxEA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuD9BFzEr6HxEA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_dOD9BFzEr6HxEA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_mOf9BFzEr6HxEA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_oef9BFzEr6HxEA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuf9BFzEr6HxEA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_7-f9BFzEr6HxEA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam" - } - ] - }, - { - "name": "Noto Sans Mandaic", - "fontFamily": "Noto Sans Mandaic, sans-serif", - "slug": "wp-font-lib-noto-sans-mandaic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmandaic/v15/cIfnMbdWt1w_HgCcilqhKQBo_OsMI5_A_gMk0izH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mandaic" - } - ] - }, - { - "name": "Noto Sans Manichaean", - "fontFamily": "Noto Sans Manichaean, sans-serif", - "slug": "wp-font-lib-noto-sans-manichaean", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmanichaean/v15/taiVGntiC4--qtsfi4Jp9-_GkPZZCcrfekqCNTtFCtdX.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Manichaean" - } - ] - }, - { - "name": "Noto Sans Marchen", - "fontFamily": "Noto Sans Marchen, sans-serif", - "slug": "wp-font-lib-noto-sans-marchen", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmarchen/v17/aFTO7OZ_Y282EP-WyG6QTOX_C8WZMHhPk652ZaHk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Marchen" - } - ] - }, - { - "name": "Noto Sans Masaram Gondi", - "fontFamily": "Noto Sans Masaram Gondi, sans-serif", - "slug": "wp-font-lib-noto-sans-masaram-gondi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmasaramgondi/v17/6xK_dThFKcWIu4bpRBjRYRV7KZCbUq6n_1kPnuGe7RI9WSWX.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Masaram Gondi" - } - ] - }, - { - "name": "Noto Sans Math", - "fontFamily": "Noto Sans Math, sans-serif", - "slug": "wp-font-lib-noto-sans-math", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmath/v15/7Aump_cpkSecTWaHRlH2hyV5UHkG-V048PW0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Math" - } - ] - }, - { - "name": "Noto Sans Mayan Numerals", - "fontFamily": "Noto Sans Mayan Numerals, sans-serif", - "slug": "wp-font-lib-noto-sans-mayan-numerals", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmayannumerals/v15/PlIuFk25O6RzLfvNNVSivR09_KqYMwvvDKYjfIiE68oo6eepYQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mayan Numerals" - } - ] - }, - { - "name": "Noto Sans Medefaidrin", - "fontFamily": "Noto Sans Medefaidrin, sans-serif", - "slug": "wp-font-lib-noto-sans-medefaidrin", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmErWlT318e5A3rw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Medefaidrin" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmHjWlT318e5A3rw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Medefaidrin" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmJTRlT318e5A3rw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Medefaidrin" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmK3RlT318e5A3rw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Medefaidrin" - } - ] - }, - { - "name": "Noto Sans Meetei Mayek", - "fontFamily": "Noto Sans Meetei Mayek, sans-serif", - "slug": "wp-font-lib-noto-sans-meetei-mayek", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ__TW5PgeFYVa.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ_vTW5PgeFYVa.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1SX_vTW5PgeFYVa.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ_vTW5PgeFYVa.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1T7_vTW5PgeFYVa.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1QX-fTW5PgeFYVa.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Qu-fTW5PgeFYVa.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ-fTW5PgeFYVa.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Rg-fTW5PgeFYVa.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek" - } - ] - }, - { - "name": "Noto Sans Mende Kikakui", - "fontFamily": "Noto Sans Mende Kikakui, sans-serif", - "slug": "wp-font-lib-noto-sans-mende-kikakui", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmendekikakui/v28/11hRGoLHz17aKjQCWj-JHcLvu2Q5zZrnkbNCLUx_aDJLAHer.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mende Kikakui" - } - ] - }, - { - "name": "Noto Sans Meroitic", - "fontFamily": "Noto Sans Meroitic, sans-serif", - "slug": "wp-font-lib-noto-sans-meroitic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmeroitic/v16/IFS5HfRJndhE3P4b5jnZ3ITPvC6i00UDgDhTiKY9KQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meroitic" - } - ] - }, - { - "name": "Noto Sans Miao", - "fontFamily": "Noto Sans Miao, sans-serif", - "slug": "wp-font-lib-noto-sans-miao", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmiao/v17/Dxxz8jmXMW75w3OmoDXVV4zyZUjgUYVslLhx.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Miao" - } - ] - }, - { - "name": "Noto Sans Modi", - "fontFamily": "Noto Sans Modi, sans-serif", - "slug": "wp-font-lib-noto-sans-modi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmodi/v20/pe03MIySN5pO62Z5YkFyT7jeav5qWVAgVol-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Modi" - } - ] - }, - { - "name": "Noto Sans Mongolian", - "fontFamily": "Noto Sans Mongolian, sans-serif", - "slug": "wp-font-lib-noto-sans-mongolian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmongolian/v17/VdGCAYADGIwE0EopZx8xQfHlgEAMsrToxLsg6-av1x0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mongolian" - } - ] - }, - { - "name": "Noto Sans Mono", - "fontFamily": "Noto Sans Mono, monospace", - "slug": "wp-font-lib-noto-sans-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNI49rXVEQQL8Y.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNJ49rXVEQQL8Y.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_A1J49rXVEQQL8Y.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNJ49rXVEQQL8Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_GFJ49rXVEQQL8Y.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_I1O49rXVEQQL8Y.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_LRO49rXVEQQL8Y.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNO49rXVEQQL8Y.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_PpO49rXVEQQL8Y.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono" - } - ] - }, - { - "name": "Noto Sans Mro", - "fontFamily": "Noto Sans Mro, sans-serif", - "slug": "wp-font-lib-noto-sans-mro", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmro/v18/qWcsB6--pZv9TqnUQMhe9b39WDzRtjkho4M.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mro" - } - ] - }, - { - "name": "Noto Sans Multani", - "fontFamily": "Noto Sans Multani, sans-serif", - "slug": "wp-font-lib-noto-sans-multani", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmultani/v20/9Bty3ClF38_RfOpe1gCaZ8p30BOFO1A0pfCs5Kos.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Multani" - } - ] - }, - { - "name": "Noto Sans Myanmar", - "fontFamily": "Noto Sans Myanmar, sans-serif", - "slug": "wp-font-lib-noto-sans-myanmar", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZs_y1ZtY3ymOryg38hOCSdOnFq0HGS1uEapkAC3AY.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HE-98EwiEwLxR-r.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFa9MEwiEwLxR-r.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZq_y1ZtY3ymOryg38hOCSdOnFq0En23OU4o1AC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEC9cEwiEwLxR-r.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEu8sEwiEwLxR-r.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFK88EwiEwLxR-r.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFW8MEwiEwLxR-r.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFy8cEwiEwLxR-r.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar" - } - ] - }, - { - "name": "Noto Sans NKo", - "fontFamily": "Noto Sans NKo, sans-serif", - "slug": "wp-font-lib-noto-sans-nko", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansnko/v2/esDX31ZdNv-KYGGJpKGk2_RpMpCMHMLBrdA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans NKo" - } - ] - }, - { - "name": "Noto Sans Nabataean", - "fontFamily": "Noto Sans Nabataean, sans-serif", - "slug": "wp-font-lib-noto-sans-nabataean", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansnabataean/v15/IFS4HfVJndhE3P4b5jnZ34DfsjO330dNoBJ9hK8kMK4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Nabataean" - } - ] - }, - { - "name": "Noto Sans Nag Mundari", - "fontFamily": "Noto Sans Nag Mundari, sans-serif", - "slug": "wp-font-lib-noto-sans-nag-mundari", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHRxirbUGA0whP19M.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Nag Mundari" - }, - { - "src": "http://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHRyqrbUGA0whP19M.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Nag Mundari" - }, - { - "src": "http://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHR8asbUGA0whP19M.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Nag Mundari" - }, - { - "src": "http://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHR_-sbUGA0whP19M.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Nag Mundari" - } - ] - }, - { - "name": "Noto Sans Nandinagari", - "fontFamily": "Noto Sans Nandinagari, sans-serif", - "slug": "wp-font-lib-noto-sans-nandinagari", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansnandinagari/v3/or38Q7733eiDljA1IufXSNFT-1KI5y10H4jVa5RXzC1KOw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Nandinagari" - } - ] - }, - { - "name": "Noto Sans New Tai Lue", - "fontFamily": "Noto Sans New Tai Lue, sans-serif", - "slug": "wp-font-lib-noto-sans-new-tai-lue", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdeXAYUbghFPKzeY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans New Tai Lue" - }, - { - "src": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pddfAYUbghFPKzeY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans New Tai Lue" - }, - { - "src": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdTvHYUbghFPKzeY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans New Tai Lue" - }, - { - "src": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdQLHYUbghFPKzeY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans New Tai Lue" - } - ] - }, - { - "name": "Noto Sans Newa", - "fontFamily": "Noto Sans Newa, sans-serif", - "slug": "wp-font-lib-noto-sans-newa", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansnewa/v16/7r3fqXp6utEsO9pI4f8ok8sWg8n_qN4R5lNU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Newa" - } - ] - }, - { - "name": "Noto Sans Nushu", - "fontFamily": "Noto Sans Nushu, sans-serif", - "slug": "wp-font-lib-noto-sans-nushu", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansnushu/v19/rnCw-xRQ3B7652emAbAe_Ai1IYaFWFAMArZKqQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Nushu" - } - ] - }, - { - "name": "Noto Sans Ogham", - "fontFamily": "Noto Sans Ogham, sans-serif", - "slug": "wp-font-lib-noto-sans-ogham", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansogham/v15/kmKlZqk1GBDGN0mY6k5lmEmww4hrt5laQxcoCA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ogham" - } - ] - }, - { - "name": "Noto Sans Ol Chiki", - "fontFamily": "Noto Sans Ol Chiki, sans-serif", - "slug": "wp-font-lib-noto-sans-ol-chiki", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALWk267I6gVrz5gQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ol Chiki" - }, - { - "src": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALVs267I6gVrz5gQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ol Chiki" - }, - { - "src": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALbcx67I6gVrz5gQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ol Chiki" - }, - { - "src": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALY4x67I6gVrz5gQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ol Chiki" - } - ] - }, - { - "name": "Noto Sans Old Hungarian", - "fontFamily": "Noto Sans Old Hungarian, sans-serif", - "slug": "wp-font-lib-noto-sans-old-hungarian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansoldhungarian/v15/E213_cD6hP3GwCJPEUssHEM0KqLaHJXg2PiIgRfjbg5nCYXt.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old Hungarian" - } - ] - }, - { - "name": "Noto Sans Old Italic", - "fontFamily": "Noto Sans Old Italic, sans-serif", - "slug": "wp-font-lib-noto-sans-old-italic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansolditalic/v15/TuGOUUFzXI5FBtUq5a8bh68BJxxEVam7tWlRdRhtCC4d.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old Italic" - } - ] - }, - { - "name": "Noto Sans Old North Arabian", - "fontFamily": "Noto Sans Old North Arabian, sans-serif", - "slug": "wp-font-lib-noto-sans-old-north-arabian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansoldnortharabian/v15/esDF30BdNv-KYGGJpKGk2tNiMt7Jar6olZDyNdr81zBQmUo_xw4ABw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old North Arabian" - } - ] - }, - { - "name": "Noto Sans Old Permic", - "fontFamily": "Noto Sans Old Permic, sans-serif", - "slug": "wp-font-lib-noto-sans-old-permic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansoldpermic/v16/snf1s1q1-dF8pli1TesqcbUY4Mr-ElrwKLdXgv_dKYB5.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old Permic" - } - ] - }, - { - "name": "Noto Sans Old Persian", - "fontFamily": "Noto Sans Old Persian, sans-serif", - "slug": "wp-font-lib-noto-sans-old-persian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansoldpersian/v15/wEOjEAbNnc5caQTFG18FHrZr9Bp6-8CmIJ_tqOlQfx9CjA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old Persian" - } - ] - }, - { - "name": "Noto Sans Old Sogdian", - "fontFamily": "Noto Sans Old Sogdian, sans-serif", - "slug": "wp-font-lib-noto-sans-old-sogdian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansoldsogdian/v15/3JnjSCH90Gmq2mrzckOBBhFhdrMst48aURt7neIqM-9uyg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old Sogdian" - } - ] - }, - { - "name": "Noto Sans Old South Arabian", - "fontFamily": "Noto Sans Old South Arabian, sans-serif", - "slug": "wp-font-lib-noto-sans-old-south-arabian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansoldsoutharabian/v15/3qT5oiOhnSyU8TNFIdhZTice3hB_HWKsEnF--0XCHiKx1OtDT9HwTA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old South Arabian" - } - ] - }, - { - "name": "Noto Sans Old Turkic", - "fontFamily": "Noto Sans Old Turkic, sans-serif", - "slug": "wp-font-lib-noto-sans-old-turkic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansoldturkic/v15/yMJNMJVya43H0SUF_WmcGEQVqoEMKDKbsE2RjEw-Vyws.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old Turkic" - } - ] - }, - { - "name": "Noto Sans Oriya", - "fontFamily": "Noto Sans Oriya, sans-serif", - "slug": "wp-font-lib-noto-sans-oriya", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0fq_c6LhHBRe-.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya" - }, - { - "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0f6_c6LhHBRe-.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya" - }, - { - "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Iviqf6_c6LhHBRe-.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya" - }, - { - "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0f6_c6LhHBRe-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya" - }, - { - "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvjGf6_c6LhHBRe-.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya" - }, - { - "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgqeK_c6LhHBRe-.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya" - }, - { - "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgTeK_c6LhHBRe-.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya" - }, - { - "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0eK_c6LhHBRe-.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya" - }, - { - "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvhdeK_c6LhHBRe-.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya" - } - ] - }, - { - "name": "Noto Sans Osage", - "fontFamily": "Noto Sans Osage, sans-serif", - "slug": "wp-font-lib-noto-sans-osage", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansosage/v18/oPWX_kB6kP4jCuhpgEGmw4mtAVtXRlaSxkrMCQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Osage" - } - ] - }, - { - "name": "Noto Sans Osmanya", - "fontFamily": "Noto Sans Osmanya, sans-serif", - "slug": "wp-font-lib-noto-sans-osmanya", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansosmanya/v18/8vIS7xs32H97qzQKnzfeWzUyUpOJmz6kR47NCV5Z.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Osmanya" - } - ] - }, - { - "name": "Noto Sans Pahawh Hmong", - "fontFamily": "Noto Sans Pahawh Hmong, sans-serif", - "slug": "wp-font-lib-noto-sans-pahawh-hmong", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanspahawhhmong/v18/bWtp7e_KfBziStx7lIzKKaMUOBEA3UPQDW7krzc_c48aMpM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Pahawh Hmong" - } - ] - }, - { - "name": "Noto Sans Palmyrene", - "fontFamily": "Noto Sans Palmyrene, sans-serif", - "slug": "wp-font-lib-noto-sans-palmyrene", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanspalmyrene/v15/ZgNPjOdKPa7CHqq0h37c_ASCWvH93SFCPnK5ZpdNtcA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Palmyrene" - } - ] - }, - { - "name": "Noto Sans Pau Cin Hau", - "fontFamily": "Noto Sans Pau Cin Hau, sans-serif", - "slug": "wp-font-lib-noto-sans-pau-cin-hau", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanspaucinhau/v20/x3d-cl3IZKmUqiMg_9wBLLtzl22EayN7ehIdjEWqKMxsKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Pau Cin Hau" - } - ] - }, - { - "name": "Noto Sans Phags Pa", - "fontFamily": "Noto Sans Phags Pa, sans-serif", - "slug": "wp-font-lib-noto-sans-phags-pa", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansphagspa/v15/pxiZyoo6v8ZYyWh5WuPeJzMkd4SrGChkqkSsrvNXiA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Phags Pa" - } - ] - }, - { - "name": "Noto Sans Phoenician", - "fontFamily": "Noto Sans Phoenician, sans-serif", - "slug": "wp-font-lib-noto-sans-phoenician", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansphoenician/v15/jizFRF9Ksm4Bt9PvcTaEkIHiTVtxmFtS5X7Jot-p5561.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Phoenician" - } - ] - }, - { - "name": "Noto Sans Psalter Pahlavi", - "fontFamily": "Noto Sans Psalter Pahlavi, sans-serif", - "slug": "wp-font-lib-noto-sans-psalter-pahlavi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanspsalterpahlavi/v15/rP2Vp3K65FkAtHfwd-eISGznYihzggmsicPfud3w1G3KsUQBct4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Psalter Pahlavi" - } - ] - }, - { - "name": "Noto Sans Rejang", - "fontFamily": "Noto Sans Rejang, sans-serif", - "slug": "wp-font-lib-noto-sans-rejang", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansrejang/v18/Ktk2AKuMeZjqPnXgyqrib7DIogqwN4O3WYZB_sU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Rejang" - } - ] - }, - { - "name": "Noto Sans Runic", - "fontFamily": "Noto Sans Runic, sans-serif", - "slug": "wp-font-lib-noto-sans-runic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansrunic/v15/H4c_BXWPl9DZ0Xe_nHUaus7W68WWaxpvHtgIYg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Runic" - } - ] - }, - { - "name": "Noto Sans SC", - "fontFamily": "Noto Sans SC, sans-serif", - "slug": "wp-font-lib-noto-sans-sc", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kJo84MPvpLmixcA63oeALZTYKL2wv287Sb.otf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZhaCt9yX6-q2CGg.otf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kXo84MPvpLmixcA63oeALhL4iJ-Q7m8w.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZ3aGt9yX6-q2CGg.otf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZlaet9yX6-q2CGg.otf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZraWt9yX6-q2CGg.otf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans SC" - } - ] - }, - { - "name": "Noto Sans Samaritan", - "fontFamily": "Noto Sans Samaritan, sans-serif", - "slug": "wp-font-lib-noto-sans-samaritan", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssamaritan/v15/buEqppe9f8_vkXadMBJJo0tSmaYjFkxOUo5jNlOVMzQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Samaritan" - } - ] - }, - { - "name": "Noto Sans Saurashtra", - "fontFamily": "Noto Sans Saurashtra, sans-serif", - "slug": "wp-font-lib-noto-sans-saurashtra", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssaurashtra/v19/ea8GacQ0Wfz_XKWXe6OtoA8w8zvmYwTef9ndjhPTSIx9.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Saurashtra" - } - ] - }, - { - "name": "Noto Sans Sharada", - "fontFamily": "Noto Sans Sharada, sans-serif", - "slug": "wp-font-lib-noto-sans-sharada", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssharada/v16/gok0H7rwAEdtF9N8-mdTGALG6p0kwoXLPOwr4H8a.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sharada" - } - ] - }, - { - "name": "Noto Sans Shavian", - "fontFamily": "Noto Sans Shavian, sans-serif", - "slug": "wp-font-lib-noto-sans-shavian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansshavian/v15/CHy5V_HZE0jxJBQlqAeCKjJvQBNF4EFQSplv2Cwg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Shavian" - } - ] - }, - { - "name": "Noto Sans Siddham", - "fontFamily": "Noto Sans Siddham, sans-serif", - "slug": "wp-font-lib-noto-sans-siddham", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssiddham/v17/OZpZg-FwqiNLe9PELUikxTWDoCCeGqndk3Ic92ZH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Siddham" - } - ] - }, - { - "name": "Noto Sans SignWriting", - "fontFamily": "Noto Sans SignWriting, sans-serif", - "slug": "wp-font-lib-noto-sans-signwriting", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssignwriting/v1/Noas6VX_wIWFbTTCrYmvy9A2UnkL-2SZAWiUEVCARYQemg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans SignWriting" - } - ] - }, - { - "name": "Noto Sans Sinhala", - "fontFamily": "Noto Sans Sinhala, sans-serif", - "slug": "wp-font-lib-noto-sans-sinhala", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2b5lgLpJwbQRM.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2a5lgLpJwbQRM.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwlOa5lgLpJwbQRM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2a5lgLpJwbQRM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwj-a5lgLpJwbQRM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwtOd5lgLpJwbQRM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwuqd5lgLpJwbQRM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2d5lgLpJwbQRM.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwqSd5lgLpJwbQRM.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala" - } - ] - }, - { - "name": "Noto Sans Sogdian", - "fontFamily": "Noto Sans Sogdian, sans-serif", - "slug": "wp-font-lib-noto-sans-sogdian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssogdian/v15/taiQGn5iC4--qtsfi4Jp6eHPnfxQBo--Pm6KHidM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sogdian" - } - ] - }, - { - "name": "Noto Sans Sora Sompeng", - "fontFamily": "Noto Sans Sora Sompeng, sans-serif", - "slug": "wp-font-lib-noto-sans-sora-sompeng", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHR818DpZXJQd4Mu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sora Sompeng" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHRO18DpZXJQd4Mu.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sora Sompeng" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSi0MDpZXJQd4Mu.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sora Sompeng" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSb0MDpZXJQd4Mu.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sora Sompeng" - } - ] - }, - { - "name": "Noto Sans Soyombo", - "fontFamily": "Noto Sans Soyombo, sans-serif", - "slug": "wp-font-lib-noto-sans-soyombo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssoyombo/v15/RWmSoL-Y6-8q5LTtXs6MF6q7xsxgY0FrIFOcK25W.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Soyombo" - } - ] - }, - { - "name": "Noto Sans Sundanese", - "fontFamily": "Noto Sans Sundanese, sans-serif", - "slug": "wp-font-lib-noto-sans-sundanese", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxpNNHCizv7fQES.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sundanese" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxbNNHCizv7fQES.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sundanese" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6cty3M9HCizv7fQES.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sundanese" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctyOM9HCizv7fQES.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sundanese" - } - ] - }, - { - "name": "Noto Sans Syloti Nagri", - "fontFamily": "Noto Sans Syloti Nagri, sans-serif", - "slug": "wp-font-lib-noto-sans-syloti-nagri", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssylotinagri/v20/uU9eCAQZ75uhfF9UoWDRiY3q7Sf_VFV3m4dGFVfxN87gsj0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syloti Nagri" - } - ] - }, - { - "name": "Noto Sans Symbols", - "fontFamily": "Noto Sans Symbols, sans-serif", - "slug": "wp-font-lib-noto-sans-symbols", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ4gavVFRkzrbQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_Q8gavVFRkzrbQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gIw8gavVFRkzrbQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ8gavVFRkzrbQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gTw8gavVFRkzrbQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gowggavVFRkzrbQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gmgggavVFRkzrbQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_QggavVFRkzrbQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g1AggavVFRkzrbQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols" - } - ] - }, - { - "name": "Noto Sans Symbols 2", - "fontFamily": "Noto Sans Symbols 2, sans-serif", - "slug": "wp-font-lib-noto-sans-symbols-2", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssymbols2/v19/I_uyMoGduATTei9eI8daxVHDyfisHr71ypPqfX71-AI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols 2" - } - ] - }, - { - "name": "Noto Sans Syriac", - "fontFamily": "Noto Sans Syriac, sans-serif", - "slug": "wp-font-lib-noto-sans-syriac", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-VD9caJyZfUL_FC.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-XD9MaJyZfUL_FC.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Ud9MaJyZfUL_FC.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-VD9MaJyZfUL_FC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Vx9MaJyZfUL_FC.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Wd88aJyZfUL_FC.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Wk88aJyZfUL_FC.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-XD88aJyZfUL_FC.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Xq88aJyZfUL_FC.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac" - } - ] - }, - { - "name": "Noto Sans TC", - "fontFamily": "Noto Sans TC, sans-serif", - "slug": "wp-font-lib-noto-sans-tc", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFlOG829Oofr2wohFbTp9i9WyEJIfNZ1sjy.otf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans TC" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9kwMvDd1V39Hr7g.otf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans TC" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nF7OG829Oofr2wohFbTp9iFOSsLA_ZJ1g.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans TC" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9ywIvDd1V39Hr7g.otf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans TC" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9gwQvDd1V39Hr7g.otf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans TC" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9uwYvDd1V39Hr7g.otf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans TC" - } - ] - }, - { - "name": "Noto Sans Tagalog", - "fontFamily": "Noto Sans Tagalog, sans-serif", - "slug": "wp-font-lib-noto-sans-tagalog", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstagalog/v18/J7aFnoNzCnFcV9ZI-sUYuvote1R0wwEAA8jHexnL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tagalog" - } - ] - }, - { - "name": "Noto Sans Tagbanwa", - "fontFamily": "Noto Sans Tagbanwa, sans-serif", - "slug": "wp-font-lib-noto-sans-tagbanwa", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstagbanwa/v18/Y4GWYbB8VTEp4t3MKJSMmQdIKjRtt_nZRjQEaYpGoQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tagbanwa" - } - ] - }, - { - "name": "Noto Sans Tai Le", - "fontFamily": "Noto Sans Tai Le, sans-serif", - "slug": "wp-font-lib-noto-sans-tai-le", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstaile/v17/vEFK2-VODB8RrNDvZSUmVxEATwR58tK1W77HtMo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tai Le" - } - ] - }, - { - "name": "Noto Sans Tai Tham", - "fontFamily": "Noto Sans Tai Tham, sans-serif", - "slug": "wp-font-lib-noto-sans-tai-tham", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBCUbPgquyaRGKMw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tai Tham" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBBcbPgquyaRGKMw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tai Tham" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBPscPgquyaRGKMw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tai Tham" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBMIcPgquyaRGKMw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tai Tham" - } - ] - }, - { - "name": "Noto Sans Tai Viet", - "fontFamily": "Noto Sans Tai Viet, sans-serif", - "slug": "wp-font-lib-noto-sans-tai-viet", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstaiviet/v16/8QIUdj3HhN_lv4jf9vsE-9GMOLsaSPZr644fWsRO9w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tai Viet" - } - ] - }, - { - "name": "Noto Sans Takri", - "fontFamily": "Noto Sans Takri, sans-serif", - "slug": "wp-font-lib-noto-sans-takri", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstakri/v21/TuGJUVpzXI5FBtUq5a8bnKIOdTwQNO_W3khJXg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Takri" - } - ] - }, - { - "name": "Noto Sans Tamil", - "fontFamily": "Noto Sans Tamil, sans-serif", - "slug": "wp-font-lib-noto-sans-tamil", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGor0RqKDt_EvT.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGo70RqKDt_EvT.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7uYo70RqKDt_EvT.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGo70RqKDt_EvT.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7v0o70RqKDt_EvT.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7sYpL0RqKDt_EvT.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7shpL0RqKDt_EvT.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGpL0RqKDt_EvT.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tvpL0RqKDt_EvT.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil" - } - ] - }, - { - "name": "Noto Sans Tamil Supplement", - "fontFamily": "Noto Sans Tamil Supplement, sans-serif", - "slug": "wp-font-lib-noto-sans-tamil-supplement", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstamilsupplement/v19/DdTz78kEtnooLS5rXF1DaruiCd_bFp_Ph4sGcn7ax_vsAeMkeq1x.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil Supplement" - } - ] - }, - { - "name": "Noto Sans Tangsa", - "fontFamily": "Noto Sans Tangsa, sans-serif", - "slug": "wp-font-lib-noto-sans-tangsa", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp1YkyoRYdplyJDA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tangsa" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp1qkyoRYdplyJDA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tangsa" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp2GlCoRYdplyJDA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tangsa" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp2_lCoRYdplyJDA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tangsa" - } - ] - }, - { - "name": "Noto Sans Telugu", - "fontFamily": "Noto Sans Telugu, sans-serif", - "slug": "wp-font-lib-noto-sans-telugu", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezfqQUbf-3v37w.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zbqQUbf-3v37w.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntJTbqQUbf-3v37w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezbqQUbf-3v37w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntSTbqQUbf-3v37w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntpTHqQUbf-3v37w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntnDHqQUbf-3v37w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zHqQUbf-3v37w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt0jHqQUbf-3v37w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu" - } - ] - }, - { - "name": "Noto Sans Thaana", - "fontFamily": "Noto Sans Thaana, sans-serif", - "slug": "wp-font-lib-noto-sans-thaana", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbxLhnu4-tbNu.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VrbhLhnu4-tbNu.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4W1bhLhnu4-tbNu.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbhLhnu4-tbNu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XZbhLhnu4-tbNu.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4U1aRLhnu4-tbNu.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4UMaRLhnu4-tbNu.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VraRLhnu4-tbNu.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VCaRLhnu4-tbNu.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana" - } - ] - }, - { - "name": "Noto Sans Thai", - "fontFamily": "Noto Sans Thai, sans-serif", - "slug": "wp-font-lib-noto-sans-thai", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RspzF-QRvzzXg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRtpzF-QRvzzXg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU8ptpzF-QRvzzXg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RtpzF-QRvzzXg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU6ZtpzF-QRvzzXg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU0pqpzF-QRvzzXg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU3NqpzF-QRvzzXg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRqpzF-QRvzzXg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUz1qpzF-QRvzzXg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai" - } - ] - }, - { - "name": "Noto Sans Thai Looped", - "fontFamily": "Noto Sans Thai Looped, sans-serif", - "slug": "wp-font-lib-noto-sans-thai-looped", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50fF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3YX6AYeCT_Wfd1.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y84E4UgrzUO5sKA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yl4I4UgrzUO5sKA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50RF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3gO6ocWiHvWQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yz4M4UgrzUO5sKA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y44Q4UgrzUO5sKA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yh4U4UgrzUO5sKA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Ym4Y4UgrzUO5sKA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yv4c4UgrzUO5sKA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped" - } - ] - }, - { - "name": "Noto Sans Tifinagh", - "fontFamily": "Noto Sans Tifinagh, sans-serif", - "slug": "wp-font-lib-noto-sans-tifinagh", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstifinagh/v17/I_uzMoCduATTei9eI8dawkHIwvmhCvbn6rnEcXfs4Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tifinagh" - } - ] - }, - { - "name": "Noto Sans Tirhuta", - "fontFamily": "Noto Sans Tirhuta, sans-serif", - "slug": "wp-font-lib-noto-sans-tirhuta", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstirhuta/v15/t5t6IQYRNJ6TWjahPR6X-M-apUyby7uGUBsTrn5P.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tirhuta" - } - ] - }, - { - "name": "Noto Sans Ugaritic", - "fontFamily": "Noto Sans Ugaritic, sans-serif", - "slug": "wp-font-lib-noto-sans-ugaritic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansugaritic/v16/3qTwoiqhnSyU8TNFIdhZVCwbjCpkAXXkMhoIkiazfg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ugaritic" - } - ] - }, - { - "name": "Noto Sans Vai", - "fontFamily": "Noto Sans Vai, sans-serif", - "slug": "wp-font-lib-noto-sans-vai", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansvai/v17/NaPecZTSBuhTirw6IaFn_UrURMTsDIRSfr0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Vai" - } - ] - }, - { - "name": "Noto Sans Wancho", - "fontFamily": "Noto Sans Wancho, sans-serif", - "slug": "wp-font-lib-noto-sans-wancho", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanswancho/v17/zrf-0GXXyfn6Fs0lH9P4cUubP0GBqAPopiRfKp8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Wancho" - } - ] - }, - { - "name": "Noto Sans Warang Citi", - "fontFamily": "Noto Sans Warang Citi, sans-serif", - "slug": "wp-font-lib-noto-sans-warang-citi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanswarangciti/v17/EYqtmb9SzL1YtsZSScyKDXIeOv3w-zgsNvKRpeVCCXzdgA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Warang Citi" - } - ] - }, - { - "name": "Noto Sans Yi", - "fontFamily": "Noto Sans Yi, sans-serif", - "slug": "wp-font-lib-noto-sans-yi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansyi/v19/sJoD3LFXjsSdcnzn071rO3apxVDJNVgSNg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Yi" - } - ] - }, - { - "name": "Noto Sans Zanabazar Square", - "fontFamily": "Noto Sans Zanabazar Square, sans-serif", - "slug": "wp-font-lib-noto-sans-zanabazar-square", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanszanabazarsquare/v16/Cn-jJsuGWQxOjaGwMQ6fOicyxLBEMRfDtkzl4uagQtJxOCEgN0Gc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Zanabazar Square" - } - ] - }, - { - "name": "Noto Serif", - "fontFamily": "Noto Serif, serif", - "slug": "wp-font-lib-noto-serif", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZqFGjwM0Lhq_Szw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZKFCjwM0Lhq_Szw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZ9lCjwM0Lhq_Szw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZqFCjwM0Lhq_Szw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZmlCjwM0Lhq_Szw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZdlejwM0Lhq_Szw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZT1ejwM0Lhq_Szw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZKFejwM0Lhq_Szw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZAVejwM0Lhq_Szw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBNLgscPpKrCzyUi.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Noto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBPLg8cPpKrCzyUi.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Noto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBMVg8cPpKrCzyUi.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Noto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBNLg8cPpKrCzyUi.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Noto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBN5g8cPpKrCzyUi.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Noto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBOVhMcPpKrCzyUi.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Noto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBOshMcPpKrCzyUi.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Noto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBPLhMcPpKrCzyUi.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Noto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBPihMcPpKrCzyUi.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Noto Serif" - } - ] - }, - { - "name": "Noto Serif Ahom", - "fontFamily": "Noto Serif Ahom, serif", - "slug": "wp-font-lib-noto-serif-ahom", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifahom/v19/FeVIS0hfp6cprmEUffAW_fUL_AN-wuYrPFiwaw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ahom" - } - ] - }, - { - "name": "Noto Serif Armenian", - "fontFamily": "Noto Serif Armenian, serif", - "slug": "wp-font-lib-noto-serif-armenian", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8ObxvXagGdkbg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8KbxvXagGdkbg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZ1cKbxvXagGdkbg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8KbxvXagGdkbg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZucKbxvXagGdkbg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZVcWbxvXagGdkbg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZbMWbxvXagGdkbg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8WbxvXagGdkbg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZIsWbxvXagGdkbg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian" - } - ] - }, - { - "name": "Noto Serif Balinese", - "fontFamily": "Noto Serif Balinese, serif", - "slug": "wp-font-lib-noto-serif-balinese", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifbalinese/v18/QdVKSS0-JginysQSRvuCmUMB_wVeQAxXRbgJdhapcUU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Balinese" - } - ] - }, - { - "name": "Noto Serif Bengali", - "fontFamily": "Noto Serif Bengali, serif", - "slug": "wp-font-lib-noto-serif-bengali", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAH3qn4LjQH8yD.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAHnqn4LjQH8yD.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfdeHnqn4LjQH8yD.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAHnqn4LjQH8yD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcyHnqn4LjQH8yD.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffeGXqn4LjQH8yD.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffnGXqn4LjQH8yD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAGXqn4LjQH8yD.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfepGXqn4LjQH8yD.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali" - } - ] - }, - { - "name": "Noto Serif Devanagari", - "fontFamily": "Noto Serif Devanagari, serif", - "slug": "wp-font-lib-noto-serif-devanagari", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-og-HMUe1u_dv.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-ow-HMUe1u_dv.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTBgow-HMUe1u_dv.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-ow-HMUe1u_dv.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTAMow-HMUe1u_dv.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDgpA-HMUe1u_dv.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDZpA-HMUe1u_dv.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-pA-HMUe1u_dv.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTCXpA-HMUe1u_dv.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari" - } - ] - }, - { - "name": "Noto Serif Display", - "fontFamily": "Noto Serif Display, serif", - "slug": "wp-font-lib-noto-serif-display", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd49gKaDU9hvzC.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd4tgKaDU9hvzC.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVoD4tgKaDU9hvzC.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd4tgKaDU9hvzC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpv4tgKaDU9hvzC.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVqD5dgKaDU9hvzC.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVq65dgKaDU9hvzC.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd5dgKaDU9hvzC.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVr05dgKaDU9hvzC.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBIYjEfg-zCmf4.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBJYjEfg-zCmf4.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoW5JYjEfg-zCmf4.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBJYjEfg-zCmf4.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoQJJYjEfg-zCmf4.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-Voe5OYjEfg-zCmf4.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoddOYjEfg-zCmf4.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBOYjEfg-zCmf4.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoZlOYjEfg-zCmf4.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display" - } - ] - }, - { - "name": "Noto Serif Dogra", - "fontFamily": "Noto Serif Dogra, serif", - "slug": "wp-font-lib-noto-serif-dogra", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifdogra/v16/MQpP-XquKMC7ROPP3QOOlm7xPu3fGy63IbPzkns.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Dogra" - } - ] - }, - { - "name": "Noto Serif Ethiopic", - "fontFamily": "Noto Serif Ethiopic, serif", - "slug": "wp-font-lib-noto-serif-ethiopic", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSQjkaO9UVLyiw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSUjkaO9UVLyiw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCkyUjkaO9UVLyiw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSUjkaO9UVLyiw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxC_yUjkaO9UVLyiw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCEyIjkaO9UVLyiw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCKiIjkaO9UVLyiw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSIjkaO9UVLyiw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCZCIjkaO9UVLyiw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic" - } - ] - }, - { - "name": "Noto Serif Georgian", - "fontFamily": "Noto Serif Georgian, serif", - "slug": "wp-font-lib-noto-serif-georgian", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvsfdzTw-FgZxQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzvofdzTw-FgZxQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSEPofdzTw-FgZxQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvofdzTw-FgZxQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSfPofdzTw-FgZxQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSkP0fdzTw-FgZxQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSqf0fdzTw-FgZxQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzv0fdzTw-FgZxQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aS5_0fdzTw-FgZxQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian" - } - ] - }, - { - "name": "Noto Serif Grantha", - "fontFamily": "Noto Serif Grantha, serif", - "slug": "wp-font-lib-noto-serif-grantha", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifgrantha/v19/qkBIXuEH5NzDDvc3fLDYxPk9-Wq3WLiqFENLR7fHGw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Grantha" - } - ] - }, - { - "name": "Noto Serif Gujarati", - "fontFamily": "Noto Serif Gujarati, serif", - "slug": "wp-font-lib-noto-serif-gujarati", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycYzuM1Kf-OJu.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuaycIzuM1Kf-OJu.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuZscIzuM1Kf-OJu.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycIzuM1Kf-OJu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYAcIzuM1Kf-OJu.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Hubsd4zuM1Kf-OJu.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HubVd4zuM1Kf-OJu.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huayd4zuM1Kf-OJu.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huabd4zuM1Kf-OJu.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati" - } - ] - }, - { - "name": "Noto Serif Gurmukhi", - "fontFamily": "Noto Serif Gurmukhi, serif", - "slug": "wp-font-lib-noto-serif-gurmukhi", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eBTNmqVU7y6l.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-eRTNmqVU7y6l.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr7geRTNmqVU7y6l.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eRTNmqVU7y6l.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6MeRTNmqVU7y6l.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5gfhTNmqVU7y6l.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5ZfhTNmqVU7y6l.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-fhTNmqVU7y6l.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4XfhTNmqVU7y6l.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi" - } - ] - }, - { - "name": "Noto Serif HK", - "fontFamily": "Noto Serif HK, serif", - "slug": "wp-font-lib-noto-serif-hk", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-K2RmV9Su1M6i.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMcgK2RmV9Su1M6i.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMd-K2RmV9Su1M6i.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMdMK2RmV9Su1M6i.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMegLGRmV9Su1M6i.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMeZLGRmV9Su1M6i.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-LGRmV9Su1M6i.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMfXLGRmV9Su1M6i.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK" - } - ] - }, - { - "name": "Noto Serif Hebrew", - "fontFamily": "Noto Serif Hebrew, serif", - "slug": "wp-font-lib-noto-serif-hebrew", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwTAG8_vlQxz24.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwSAG8_vlQxz24.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVFISAG8_vlQxz24.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwSAG8_vlQxz24.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVD4SAG8_vlQxz24.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVNIVAG8_vlQxz24.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVOsVAG8_vlQxz24.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwVAG8_vlQxz24.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVKUVAG8_vlQxz24.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew" - } - ] - }, - { - "name": "Noto Serif JP", - "fontFamily": "Noto Serif JP, serif", - "slug": "wp-font-lib-noto-serif-jp", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZBaPRkgfU8fEwb0.otf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif JP" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZHKMRkgfU8fEwb0.otf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif JP" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn7mYHs72GKoTvER4Gn3b5eMXNikYkY0T84.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif JP" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZCqNRkgfU8fEwb0.otf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif JP" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZAaKRkgfU8fEwb0.otf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif JP" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZGKLRkgfU8fEwb0.otf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif JP" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZFqJRkgfU8fEwb0.otf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif JP" - } - ] - }, - { - "name": "Noto Serif KR", - "fontFamily": "Noto Serif KR, serif", - "slug": "wp-font-lib-noto-serif-kr", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTihC8O1ZNH1ahck.otf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif KR" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTkxB8O1ZNH1ahck.otf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif KR" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3Jn7SDn90Gmq2mr3blnHaTZXduZp1ONyKHQ.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif KR" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXThRA8O1ZNH1ahck.otf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif KR" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTjhH8O1ZNH1ahck.otf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif KR" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTlxG8O1ZNH1ahck.otf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif KR" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTmRE8O1ZNH1ahck.otf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif KR" - } - ] - }, - { - "name": "Noto Serif Kannada", - "fontFamily": "Noto Serif Kannada, serif", - "slug": "wp-font-lib-noto-serif-kannada", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYCceRJ71svgcI.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYDceRJ71svgcI.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgZgDceRJ71svgcI.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYDceRJ71svgcI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgfQDceRJ71svgcI.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgRgEceRJ71svgcI.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgSEEceRJ71svgcI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYEceRJ71svgcI.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgW8EceRJ71svgcI.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada" - } - ] - }, - { - "name": "Noto Serif Khmer", - "fontFamily": "Noto Serif Khmer, serif", - "slug": "wp-font-lib-noto-serif-khmer", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B4wXEZK9Xo4xg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaB8wXEZK9Xo4xg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNth8wXEZK9Xo4xg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B8wXEZK9Xo4xg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN2h8wXEZK9Xo4xg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNNhgwXEZK9Xo4xg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNDxgwXEZK9Xo4xg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaBgwXEZK9Xo4xg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNQRgwXEZK9Xo4xg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer" - } - ] - }, - { - "name": "Noto Serif Khojki", - "fontFamily": "Noto Serif Khojki, serif", - "slug": "wp-font-lib-noto-serif-khojki", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMY0ghvyZ0Qtc5HAQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khojki" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMY4AhvyZ0Qtc5HAQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khojki" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMYDA9vyZ0Qtc5HAQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khojki" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMYNQ9vyZ0Qtc5HAQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khojki" - } - ] - }, - { - "name": "Noto Serif Lao", - "fontFamily": "Noto Serif Lao, serif", - "slug": "wp-font-lib-noto-serif-lao", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMLrvOjlmyhHHQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMKrvOjlmyhHHQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8Vb0KrvOjlmyhHHQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMKrvOjlmyhHHQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VdEKrvOjlmyhHHQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VT0NrvOjlmyhHHQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VQQNrvOjlmyhHHQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMNrvOjlmyhHHQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VUoNrvOjlmyhHHQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao" - } - ] - }, - { - "name": "Noto Serif Malayalam", - "fontFamily": "Noto Serif Malayalam, serif", - "slug": "wp-font-lib-noto-serif-malayalam", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-1fnVwHpQVySg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-xfnVwHpQVySg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL16exfnVwHpQVySg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-xfnVwHpQVySg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1hexfnVwHpQVySg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1aetfnVwHpQVySg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1UOtfnVwHpQVySg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-tfnVwHpQVySg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1HutfnVwHpQVySg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam" - } - ] - }, - { - "name": "Noto Serif Myanmar", - "fontFamily": "Noto Serif Myanmar, serif", - "slug": "wp-font-lib-noto-serif-myanmar", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJudM7F2Yv76aBKKs-bHMQfAHUw3jnNwBDsU9X6RPzQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNbDHMefv2TeXJng.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNCDLMefv2TeXJng.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJsdM7F2Yv76aBKKs-bHMQfAHUw3jn1pBrocdDqRA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNUDPMefv2TeXJng.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNfDTMefv2TeXJng.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNGDXMefv2TeXJng.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNBDbMefv2TeXJng.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNIDfMefv2TeXJng.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar" - } - ] - }, - { - "name": "Noto Serif NP Hmong", - "fontFamily": "Noto Serif NP Hmong, serif", - "slug": "wp-font-lib-noto-serif-np-hmong", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbjPhFLp3u0rVO-d.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif NP Hmong" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbj9hFLp3u0rVO-d.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif NP Hmong" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbgRg1Lp3u0rVO-d.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif NP Hmong" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbgog1Lp3u0rVO-d.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif NP Hmong" - } - ] - }, - { - "name": "Noto Serif Oriya", - "fontFamily": "Noto Serif Oriya, serif", - "slug": "wp-font-lib-noto-serif-oriya", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxrc_Hy-v039MF1j.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Oriya" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxru_Hy-v039MF1j.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Oriya" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxoC-3y-v039MF1j.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Oriya" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxo7-3y-v039MF1j.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Oriya" - } - ] - }, - { - "name": "Noto Serif SC", - "fontFamily": "Noto Serif SC, serif", - "slug": "wp-font-lib-noto-serif-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mm63SzZBEtERe7U.otf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif SC" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mgq0SzZBEtERe7U.otf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif SC" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4chBXePl9DZ0Xe7gG9cyOj7oqCcbzhqDtg.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif SC" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mlK1SzZBEtERe7U.otf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif SC" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mn6ySzZBEtERe7U.otf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif SC" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mhqzSzZBEtERe7U.otf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif SC" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7miKxSzZBEtERe7U.otf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif SC" - } - ] - }, - { - "name": "Noto Serif Sinhala", - "fontFamily": "Noto Serif Sinhala, serif", - "slug": "wp-font-lib-noto-serif-sinhala", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxRlMsxaLRn3W-.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExR1MsxaLRn3W-.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pHvR1MsxaLRn3W-.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxR1MsxaLRn3W-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGDR1MsxaLRn3W-.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFvQFMsxaLRn3W-.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFWQFMsxaLRn3W-.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExQFMsxaLRn3W-.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pEYQFMsxaLRn3W-.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala" - } - ] - }, - { - "name": "Noto Serif TC", - "fontFamily": "Noto Serif TC, serif", - "slug": "wp-font-lib-noto-serif-tc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvr8vbX9GTsoOAX4.otf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif TC" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvtssbX9GTsoOAX4.otf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif TC" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLYgIZb5bJNDGYxLBibeHZ0BhnEESXFtUsM.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif TC" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvoMtbX9GTsoOAX4.otf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif TC" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvq8qbX9GTsoOAX4.otf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif TC" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvssrbX9GTsoOAX4.otf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif TC" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvvMpbX9GTsoOAX4.otf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif TC" - } - ] - }, - { - "name": "Noto Serif Tamil", - "fontFamily": "Noto Serif Tamil, serif", - "slug": "wp-font-lib-noto-serif-tamil", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN6R8Pz3v8Etew.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNN-R8Pz3v8Etew.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecat6t-R8Pz3v8Etew.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN-R8Pz3v8Etew.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatht-R8Pz3v8Etew.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatatiR8Pz3v8Etew.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatU9iR8Pz3v8Etew.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNNiR8Pz3v8Etew.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatHdiR8Pz3v8Etew.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5svbzncQ9e3wx.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5s_bzncQ9e3wx.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJwns_bzncQ9e3wx.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5s_bzncQ9e3wx.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJxLs_bzncQ9e3wx.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyntPbzncQ9e3wx.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyetPbzncQ9e3wx.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5tPbzncQ9e3wx.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJzQtPbzncQ9e3wx.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil" - } - ] - }, - { - "name": "Noto Serif Tangut", - "fontFamily": "Noto Serif Tangut, serif", - "slug": "wp-font-lib-noto-serif-tangut", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoseriftangut/v16/xn76YGc72GKoTvER4Gn3b4m9Ern7Em41fcvN2KT4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tangut" - } - ] - }, - { - "name": "Noto Serif Telugu", - "fontFamily": "Noto Serif Telugu, serif", - "slug": "wp-font-lib-noto-serif-telugu", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TGwuY2fjgrZYA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTCwuY2fjgrZYA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DqzCwuY2fjgrZYA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TCwuY2fjgrZYA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DxzCwuY2fjgrZYA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DKzewuY2fjgrZYA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DEjewuY2fjgrZYA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTewuY2fjgrZYA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DXDewuY2fjgrZYA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu" - } - ] - }, - { - "name": "Noto Serif Thai", - "fontFamily": "Noto Serif Thai, serif", - "slug": "wp-font-lib-noto-serif-thai", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiFuRRCmsdu0Qx.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiF-RRCmsdu0Qx.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0p8F-RRCmsdu0Qx.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiF-RRCmsdu0Qx.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oQF-RRCmsdu0Qx.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0r8EORRCmsdu0Qx.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0rFEORRCmsdu0Qx.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiEORRCmsdu0Qx.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qLEORRCmsdu0Qx.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai" - } - ] - }, - { - "name": "Noto Serif Tibetan", - "fontFamily": "Noto Serif Tibetan, serif", - "slug": "wp-font-lib-noto-serif-tibetan", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYdPS7rdSy_32c.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYcPS7rdSy_32c.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIugcPS7rdSy_32c.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYcPS7rdSy_32c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIoQcPS7rdSy_32c.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmImgbPS7rdSy_32c.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIlEbPS7rdSy_32c.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYbPS7rdSy_32c.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIh8bPS7rdSy_32c.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan" - } - ] - }, - { - "name": "Noto Serif Toto", - "fontFamily": "Noto Serif Toto, serif", - "slug": "wp-font-lib-noto-serif-toto", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhCy3Il-aj55vdNug.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Toto" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhCx_Il-aj55vdNug.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Toto" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhC_PPl-aj55vdNug.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Toto" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhC8rPl-aj55vdNug.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Toto" - } - ] - }, - { - "name": "Noto Serif Yezidi", - "fontFamily": "Noto Serif Yezidi, serif", - "slug": "wp-font-lib-noto-serif-yezidi", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD2yEkrlGJgmVCqg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Yezidi" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD6SEkrlGJgmVCqg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Yezidi" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDBSYkrlGJgmVCqg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Yezidi" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDPCYkrlGJgmVCqg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Yezidi" - } - ] - }, - { - "name": "Noto Traditional Nushu", - "fontFamily": "Noto Traditional Nushu, sans-serif", - "slug": "wp-font-lib-noto-traditional-nushu", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXvy1tnPa7QoqirI.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Traditional Nushu" - }, - { - "src": "http://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXus1tnPa7QoqirI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Traditional Nushu" - }, - { - "src": "http://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXue1tnPa7QoqirI.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Traditional Nushu" - }, - { - "src": "http://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXty0dnPa7QoqirI.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Traditional Nushu" - }, - { - "src": "http://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXtL0dnPa7QoqirI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Traditional Nushu" - } - ] - }, - { - "name": "Nova Cut", - "fontFamily": "Nova Cut, system-ui", - "slug": "wp-font-lib-nova-cut", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/novacut/v24/KFOkCnSYu8mL-39LkWxPKTM1K9nz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Cut" - } - ] - }, - { - "name": "Nova Flat", - "fontFamily": "Nova Flat, system-ui", - "slug": "wp-font-lib-nova-flat", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/novaflat/v24/QdVUSTc-JgqpytEbVebEuStkm20oJA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Flat" - } - ] - }, - { - "name": "Nova Mono", - "fontFamily": "Nova Mono, monospace", - "slug": "wp-font-lib-nova-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/novamono/v18/Cn-0JtiGWQ5Ajb--MRKfYGxYrdM9Sg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Mono" - } - ] - }, - { - "name": "Nova Oval", - "fontFamily": "Nova Oval, system-ui", - "slug": "wp-font-lib-nova-oval", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/novaoval/v24/jAnEgHdmANHvPenMaswCMY-h3cWkWg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Oval" - } - ] - }, - { - "name": "Nova Round", - "fontFamily": "Nova Round, system-ui", - "slug": "wp-font-lib-nova-round", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/novaround/v21/flU9Rqquw5UhEnlwTJYTYYfeeetYEBc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Round" - } - ] - }, - { - "name": "Nova Script", - "fontFamily": "Nova Script, system-ui", - "slug": "wp-font-lib-nova-script", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/novascript/v25/7Au7p_IpkSWSTWaFWkumvmQNEl0O0kEx.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Script" - } - ] - }, - { - "name": "Nova Slim", - "fontFamily": "Nova Slim, system-ui", - "slug": "wp-font-lib-nova-slim", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/novaslim/v24/Z9XUDmZNQAuem8jyZcn-yMOInrib9Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Slim" - } - ] - }, - { - "name": "Nova Square", - "fontFamily": "Nova Square, system-ui", - "slug": "wp-font-lib-nova-square", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/novasquare/v20/RrQUbo9-9DV7b06QHgSWsZhARYMgGtWA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Square" - } - ] - }, - { - "name": "Numans", - "fontFamily": "Numans, sans-serif", - "slug": "wp-font-lib-numans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/numans/v15/SlGRmQmGupYAfH8IYRggiHVqaQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Numans" - } - ] - }, - { - "name": "Nunito", - "fontFamily": "Nunito, sans-serif", - "slug": "wp-font-lib-nunito", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshRTM9jo7eTWk.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDOUhRTM9jo7eTWk.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshRTM9jo7eTWk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhRTM9jo7eTWk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmRTM9jo7eTWk.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmRTM9jo7eTWk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmRTM9jo7eTWk.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImRTM9jo7eTWk.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXA3iqzbXWnoeg.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNi83A3iqzbXWnoeg.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNirXA3iqzbXWnoeg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNin3A3iqzbXWnoeg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNic3c3iqzbXWnoeg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiSnc3iqzbXWnoeg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXc3iqzbXWnoeg.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiBHc3iqzbXWnoeg.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Nunito" - } - ] - }, - { - "name": "Nunito Sans", - "fontFamily": "Nunito Sans, sans-serif", - "slug": "wp-font-lib-nunito-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GVilntF8kA_Ykqw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GiClntF8kA_Ykqw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G1ilntF8kA_Ykqw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G5ClntF8kA_Ykqw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GCC5ntF8kA_Ykqw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GMS5ntF8kA_Ykqw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GVi5ntF8kA_Ykqw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4Gfy5ntF8kA_Ykqw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmoP91UgIfM0qxVd.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmrR91UgIfM0qxVd.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmqP91UgIfM0qxVd.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmq991UgIfM0qxVd.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmpR8FUgIfM0qxVd.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmpo8FUgIfM0qxVd.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmoP8FUgIfM0qxVd.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmom8FUgIfM0qxVd.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Nunito Sans" - } - ] - }, - { - "name": "Nuosu SIL", - "fontFamily": "Nuosu SIL, serif", - "slug": "wp-font-lib-nuosu-sil", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nuosusil/v6/8vIK7wM3wmRn_kc4uAjeFGxbO_zo-w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nuosu SIL" - } - ] - }, - { - "name": "Odibee Sans", - "fontFamily": "Odibee Sans, system-ui", - "slug": "wp-font-lib-odibee-sans", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/odibeesans/v14/neIPzCSooYAho6WvjeToRYkyepH9qGsf.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Odibee Sans" - } - ] - }, - { - "name": "Odor Mean Chey", - "fontFamily": "Odor Mean Chey, serif", - "slug": "wp-font-lib-odor-mean-chey", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/odormeanchey/v27/raxkHiKDttkTe1aOGcJMR1A_4mrY2zqUKafv.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Odor Mean Chey" - } - ] - }, - { - "name": "Offside", - "fontFamily": "Offside, system-ui", - "slug": "wp-font-lib-offside", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/offside/v22/HI_KiYMWKa9QrAykQ5HiRp-dhpQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Offside" - } - ] - }, - { - "name": "Oi", - "fontFamily": "Oi, system-ui", - "slug": "wp-font-lib-oi", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/oi/v16/w8gXH2EuRqtaut6yjBOG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oi" - } - ] - }, - { - "name": "Old Standard TT", - "fontFamily": "Old Standard TT, serif", - "slug": "wp-font-lib-old-standard-tt", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQubh3o1vLImiwAVvYawgcf2eVurVC5RHdCZg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Old Standard TT" - }, - { - "src": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQsbh3o1vLImiwAVvYawgcf2eVer1q9ZnJSZtQG.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Old Standard TT" - }, - { - "src": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQrbh3o1vLImiwAVvYawgcf2eVWEX-dTFxeb80flQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Old Standard TT" - } - ] - }, - { - "name": "Oldenburg", - "fontFamily": "Oldenburg, system-ui", - "slug": "wp-font-lib-oldenburg", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/oldenburg/v20/fC1jPY5JYWzbywv7c4V6UU6oXyndrw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oldenburg" - } - ] - }, - { - "name": "Ole", - "fontFamily": "Ole, cursive", - "slug": "wp-font-lib-ole", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ole/v3/dFazZf6Z-rd89fw69qJ_ew.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ole" - } - ] - }, - { - "name": "Oleo Script", - "fontFamily": "Oleo Script, system-ui", - "slug": "wp-font-lib-oleo-script", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/oleoscript/v14/rax5HieDvtMOe0iICsUccBhasU7Q8Cad.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oleo Script" - }, - { - "src": "http://fonts.gstatic.com/s/oleoscript/v14/raxkHieDvtMOe0iICsUccCDmnmrY2zqUKafv.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Oleo Script" - } - ] - }, - { - "name": "Oleo Script Swash Caps", - "fontFamily": "Oleo Script Swash Caps, system-ui", - "slug": "wp-font-lib-oleo-script-swash-caps", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMXquSY0Hg90.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oleo Script Swash Caps" - }, - { - "src": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noag6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HCcaBbYUsn9T5dt0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Oleo Script Swash Caps" - } - ] - }, - { - "name": "Oooh Baby", - "fontFamily": "Oooh Baby, cursive", - "slug": "wp-font-lib-oooh-baby", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ooohbaby/v4/2sDcZGJWgJTT2Jf76xQDb2-4C7wFZQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oooh Baby" - } - ] - }, - { - "name": "Open Sans", - "fontFamily": "Open Sans, sans-serif", - "slug": "wp-font-lib-open-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4nY1M2xLER.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Open Sans" - }, - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4nY1M2xLER.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Open Sans" - }, - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4nY1M2xLER.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Open Sans" - }, - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4nY1M2xLER.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Open Sans" - }, - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4nY1M2xLER.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Open Sans" - }, - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1y4nY1M2xLER.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Open Sans" - }, - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkaVcUwaERZjA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Open Sans" - }, - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkaVcUwaERZjA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Open Sans" - }, - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk_RkaVcUwaERZjA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Open Sans" - }, - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjaVcUwaERZjA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Open Sans" - }, - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjaVcUwaERZjA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Open Sans" - }, - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjaVcUwaERZjA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Open Sans" - } - ] - }, - { - "name": "Oranienbaum", - "fontFamily": "Oranienbaum, serif", - "slug": "wp-font-lib-oranienbaum", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/oranienbaum/v15/OZpHg_txtzZKMuXLIVrx-3zn7kz3dpHc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oranienbaum" - } - ] - }, - { - "name": "Orbitron", - "fontFamily": "Orbitron, sans-serif", - "slug": "wp-font-lib-orbitron", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6xpmIyXjU1pg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Orbitron" - }, - { - "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyKS6xpmIyXjU1pg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Orbitron" - }, - { - "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyxSmxpmIyXjU1pg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Orbitron" - }, - { - "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1ny_CmxpmIyXjU1pg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Orbitron" - }, - { - "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nymymxpmIyXjU1pg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Orbitron" - }, - { - "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nysimxpmIyXjU1pg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Orbitron" - } - ] - }, - { - "name": "Oregano", - "fontFamily": "Oregano, system-ui", - "slug": "wp-font-lib-oregano", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/oregano/v13/If2IXTPxciS3H4S2kZffPznO3yM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oregano" - }, - { - "src": "http://fonts.gstatic.com/s/oregano/v13/If2KXTPxciS3H4S2oZXVOxvLzyP_qw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Oregano" - } - ] - }, - { - "name": "Orelega One", - "fontFamily": "Orelega One, system-ui", - "slug": "wp-font-lib-orelega-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/orelegaone/v10/3qTpojOggD2XtAdFb-QXZGt61EcYaQ7F.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Orelega One" - } - ] - }, - { - "name": "Orienta", - "fontFamily": "Orienta, sans-serif", - "slug": "wp-font-lib-orienta", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/orienta/v15/PlI9FlK4Jrl5Y9zNeyeo9HRFhcU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Orienta" - } - ] - }, - { - "name": "Original Surfer", - "fontFamily": "Original Surfer, system-ui", - "slug": "wp-font-lib-original-surfer", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/originalsurfer/v18/RWmQoKGZ9vIirYntXJ3_MbekzNMiDEtvAlaMKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Original Surfer" - } - ] - }, - { - "name": "Oswald", - "fontFamily": "Oswald, sans-serif", - "slug": "wp-font-lib-oswald", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgUFoZAaRliE.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Oswald" - }, - { - "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUFoZAaRliE.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Oswald" - }, - { - "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUFoZAaRliE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oswald" - }, - { - "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUFoZAaRliE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Oswald" - }, - { - "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUFoZAaRliE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Oswald" - }, - { - "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUFoZAaRliE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Oswald" - } - ] - }, - { - "name": "Outfit", - "fontFamily": "Outfit, sans-serif", - "slug": "wp-font-lib-outfit", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC0C4G-EiAou6Y.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Outfit" - }, - { - "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bC1C4G-EiAou6Y.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Outfit" - }, - { - "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61C4G-EiAou6Y.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Outfit" - }, - { - "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4G-EiAou6Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Outfit" - }, - { - "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4G-EiAou6Y.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Outfit" - }, - { - "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4G-EiAou6Y.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Outfit" - }, - { - "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4G-EiAou6Y.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Outfit" - }, - { - "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bCyC4G-EiAou6Y.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Outfit" - }, - { - "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4ZmyC4G-EiAou6Y.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Outfit" - } - ] - }, - { - "name": "Over the Rainbow", - "fontFamily": "Over the Rainbow, cursive", - "slug": "wp-font-lib-over-the-rainbow", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/overtherainbow/v16/11haGoXG1k_HKhMLUWz7Mc7vvW5upvOm9NA2XG0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Over the Rainbow" - } - ] - }, - { - "name": "Overlock", - "fontFamily": "Overlock, system-ui", - "slug": "wp-font-lib-overlock", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XVDmdMWRiN1_T9Z4Te4u2El6GC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Overlock" - }, - { - "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XTDmdMWRiN1_T9Z7Tc6OmmkrGC7Cs.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Overlock" - }, - { - "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XSDmdMWRiN1_T9Z7xizcmMvL2L9TLT.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Overlock" - }, - { - "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XQDmdMWRiN1_T9Z7Tc0FWJtrmp8CLTlNs.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Overlock" - }, - { - "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XSDmdMWRiN1_T9Z7xaz8mMvL2L9TLT.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Overlock" - }, - { - "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XQDmdMWRiN1_T9Z7Tc0G2Ltrmp8CLTlNs.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Overlock" - } - ] - }, - { - "name": "Overlock SC", - "fontFamily": "Overlock SC, system-ui", - "slug": "wp-font-lib-overlock-sc", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/overlocksc/v21/1cX3aUHKGZrstGAY8nwVzHGAq8Sk1PoH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Overlock SC" - } - ] - }, - { - "name": "Overpass", - "fontFamily": "Overpass, sans-serif", - "slug": "wp-font-lib-overpass", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PLrOZCLtce-og.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPPrOZCLtce-og.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6ovPrOZCLtce-og.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PPrOZCLtce-og.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6zvPrOZCLtce-og.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6IvTrOZCLtce-og.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6G_TrOZCLtce-og.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPTrOZCLtce-og.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6VfTrOZCLtce-og.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADe5qPl8Kuosgz.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDepqPl8Kuosgz.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLBdepqPl8Kuosgz.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADepqPl8Kuosgz.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLAxepqPl8Kuosgz.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDdfZqPl8Kuosgz.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDkfZqPl8Kuosgz.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDfZqPl8Kuosgz.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCqfZqPl8Kuosgz.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Overpass" - } - ] - }, - { - "name": "Overpass Mono", - "fontFamily": "Overpass Mono, monospace", - "slug": "wp-font-lib-overpass-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EWKokzzXur-SmIr.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Overpass Mono" - }, - { - "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXUokzzXur-SmIr.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Overpass Mono" - }, - { - "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXmokzzXur-SmIr.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Overpass Mono" - }, - { - "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUKpUzzXur-SmIr.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Overpass Mono" - }, - { - "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUzpUzzXur-SmIr.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Overpass Mono" - } - ] - }, - { - "name": "Ovo", - "fontFamily": "Ovo, serif", - "slug": "wp-font-lib-ovo", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ovo/v17/yYLl0h7Wyfzjy4Q5_3WVxA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ovo" - } - ] - }, - { - "name": "Oxanium", - "fontFamily": "Oxanium, system-ui", - "slug": "wp-font-lib-oxanium", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JfniMBXQ7d67x.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Oxanium" - }, - { - "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G80XfniMBXQ7d67x.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Oxanium" - }, - { - "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G81JfniMBXQ7d67x.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oxanium" - }, - { - "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G817fniMBXQ7d67x.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Oxanium" - }, - { - "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82XeXiMBXQ7d67x.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Oxanium" - }, - { - "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82ueXiMBXQ7d67x.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Oxanium" - }, - { - "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JeXiMBXQ7d67x.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Oxanium" - } - ] - }, - { - "name": "Oxygen", - "fontFamily": "Oxygen, sans-serif", - "slug": "wp-font-lib-oxygen", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCJW8Db2-4C7wFZQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Oxygen" - }, - { - "src": "http://fonts.gstatic.com/s/oxygen/v15/2sDfZG1Wl4Lcnbu6iUcnZ0SkAg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oxygen" - }, - { - "src": "http://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCNWgDb2-4C7wFZQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Oxygen" - } - ] - }, - { - "name": "Oxygen Mono", - "fontFamily": "Oxygen Mono, monospace", - "slug": "wp-font-lib-oxygen-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/oxygenmono/v14/h0GsssGg9FxgDgCjLeAd7ijfze-PPlUu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oxygen Mono" - } - ] - }, - { - "name": "PT Mono", - "fontFamily": "PT Mono, monospace", - "slug": "wp-font-lib-pt-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ptmono/v13/9oRONYoBnWILk-9ArCg5MtPyAcg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "PT Mono" - } - ] - }, - { - "name": "PT Sans", - "fontFamily": "PT Sans, sans-serif", - "slug": "wp-font-lib-pt-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79P0WOxOGMMDQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "PT Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ptsans/v17/jizYRExUiTo99u79D0eEwMOJIDQA-g.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "PT Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh4OmnLD0Z4zM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "PT Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ptsans/v17/jizdRExUiTo99u79D0e8fOytKB8c8zMrig.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "PT Sans" - } - ] - }, - { - "name": "PT Sans Caption", - "fontFamily": "PT Sans Caption, sans-serif", - "slug": "wp-font-lib-pt-sans-caption", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ptsanscaption/v19/0FlMVP6Hrxmt7-fsUFhlFXNIlpcqfQXwQy6yxg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "PT Sans Caption" - }, - { - "src": "http://fonts.gstatic.com/s/ptsanscaption/v19/0FlJVP6Hrxmt7-fsUFhlFXNIlpcSwSrUSwWuz38Tgg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "PT Sans Caption" - } - ] - }, - { - "name": "PT Sans Narrow", - "fontFamily": "PT Sans Narrow, sans-serif", - "slug": "wp-font-lib-pt-sans-narrow", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ptsansnarrow/v18/BngRUXNadjH0qYEzV7ab-oWlsYCByxyKeuDp.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "PT Sans Narrow" - }, - { - "src": "http://fonts.gstatic.com/s/ptsansnarrow/v18/BngSUXNadjH0qYEzV7ab-oWlsbg95DiCUfzgRd-3.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "PT Sans Narrow" - } - ] - }, - { - "name": "PT Serif", - "fontFamily": "PT Serif, serif", - "slug": "wp-font-lib-pt-serif", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ptserif/v18/EJRVQgYoZZY2vCFuvDFRxL6ddjb-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "PT Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ptserif/v18/EJRTQgYoZZY2vCFuvAFTzrq_cyb-vco.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "PT Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ptserif/v18/EJRSQgYoZZY2vCFuvAnt65qVXSr3pNNB.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "PT Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ptserif/v18/EJRQQgYoZZY2vCFuvAFT9gaQVy7VocNB6Iw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "PT Serif" - } - ] - }, - { - "name": "PT Serif Caption", - "fontFamily": "PT Serif Caption, serif", - "slug": "wp-font-lib-pt-serif-caption", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ptserifcaption/v17/ieVl2ZhbGCW-JoW6S34pSDpqYKU059WxDCs5cvI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "PT Serif Caption" - }, - { - "src": "http://fonts.gstatic.com/s/ptserifcaption/v17/ieVj2ZhbGCW-JoW6S34pSDpqYKU019e7CAk8YvJEeg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "PT Serif Caption" - } - ] - }, - { - "name": "Pacifico", - "fontFamily": "Pacifico, cursive", - "slug": "wp-font-lib-pacifico", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pacifico/v22/FwZY7-Qmy14u9lezJ96A4sijpFu_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pacifico" - } - ] - }, - { - "name": "Padauk", - "fontFamily": "Padauk, sans-serif", - "slug": "wp-font-lib-padauk", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/padauk/v16/RrQRboJg-id7OnbBa0_g3LlYbg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Padauk" - }, - { - "src": "http://fonts.gstatic.com/s/padauk/v16/RrQSboJg-id7Onb512DE1JJEZ4YwGg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Padauk" - } - ] - }, - { - "name": "Padyakke Expanded One", - "fontFamily": "Padyakke Expanded One, system-ui", - "slug": "wp-font-lib-padyakke-expanded-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/padyakkeexpandedone/v2/K2FvfY9El_tbR0JfHb6WWvrBaU6XAUvC4IAYOKRkpDjeoQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Padyakke Expanded One" - } - ] - }, - { - "name": "Palanquin", - "fontFamily": "Palanquin, sans-serif", - "slug": "wp-font-lib-palanquin", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUhlJ90n1fBFg7ceXwUEltI7rWmZzTH.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Palanquin" - }, - { - "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUvnpoxJuqbi3ezg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Palanquin" - }, - { - "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwU2nloxJuqbi3ezg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Palanquin" - }, - { - "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Palanquin" - }, - { - "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUgnhoxJuqbi3ezg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Palanquin" - }, - { - "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUrn9oxJuqbi3ezg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Palanquin" - }, - { - "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUyn5oxJuqbi3ezg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Palanquin" - } - ] - }, - { - "name": "Palanquin Dark", - "fontFamily": "Palanquin Dark, sans-serif", - "slug": "wp-font-lib-palanquin-dark", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/palanquindark/v12/xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Palanquin Dark" - }, - { - "src": "http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41fcvN2KT4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Palanquin Dark" - }, - { - "src": "http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41fcvN2KT4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Palanquin Dark" - }, - { - "src": "http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8YyY241fcvN2KT4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Palanquin Dark" - } - ] - }, - { - "name": "Palette Mosaic", - "fontFamily": "Palette Mosaic, system-ui", - "slug": "wp-font-lib-palette-mosaic", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/palettemosaic/v10/AMOIz4aBvWuBFe3TohdW6YZ9MFiy4dxL4jSr.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Palette Mosaic" - } - ] - }, - { - "name": "Pangolin", - "fontFamily": "Pangolin, cursive", - "slug": "wp-font-lib-pangolin", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pangolin/v11/cY9GfjGcW0FPpi-tWPfK5d3aiLBG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pangolin" - } - ] - }, - { - "name": "Paprika", - "fontFamily": "Paprika, system-ui", - "slug": "wp-font-lib-paprika", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/paprika/v21/8QIJdijZitv49rDfuIgOq7jkAOw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Paprika" - } - ] - }, - { - "name": "Parisienne", - "fontFamily": "Parisienne, cursive", - "slug": "wp-font-lib-parisienne", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/parisienne/v13/E21i_d3kivvAkxhLEVZpcy96DuKuavM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Parisienne" - } - ] - }, - { - "name": "Passero One", - "fontFamily": "Passero One, system-ui", - "slug": "wp-font-lib-passero-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/passeroone/v24/JTUTjIko8DOq5FeaeEAjgE5B5Arr-s50.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Passero One" - } - ] - }, - { - "name": "Passion One", - "fontFamily": "Passion One, system-ui", - "slug": "wp-font-lib-passion-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/passionone/v16/PbynFmL8HhTPqbjUzux3JHuW_Frg6YoV.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Passion One" - }, - { - "src": "http://fonts.gstatic.com/s/passionone/v16/Pby6FmL8HhTPqbjUzux3JEMq037owpYcuH8y.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Passion One" - }, - { - "src": "http://fonts.gstatic.com/s/passionone/v16/Pby6FmL8HhTPqbjUzux3JEMS0X7owpYcuH8y.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Passion One" - } - ] - }, - { - "name": "Passions Conflict", - "fontFamily": "Passions Conflict, cursive", - "slug": "wp-font-lib-passions-conflict", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/passionsconflict/v5/kmKnZrcrFhfafnWX9x0GuEC-zowow5NeYRI4CN2V.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Passions Conflict" - } - ] - }, - { - "name": "Pathway Extreme", - "fontFamily": "Pathway Extreme, sans-serif", - "slug": "wp-font-lib-pathway-extreme", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2Nx1Kyw3igP5eg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakWN11Kyw3igP5eg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakht11Kyw3igP5eg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2N11Kyw3igP5eg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak6t11Kyw3igP5eg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakBtp1Kyw3igP5eg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakP9p1Kyw3igP5eg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakWNp1Kyw3igP5eg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakcdp1Kyw3igP5eg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6daSYzqAbpepnF.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ4daCYzqAbpepnF.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ7DaCYzqAbpepnF.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6daCYzqAbpepnF.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6vaCYzqAbpepnF.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ5DbyYzqAbpepnF.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ56byYzqAbpepnF.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ4dbyYzqAbpepnF.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ40byYzqAbpepnF.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme" - } - ] - }, - { - "name": "Pathway Gothic One", - "fontFamily": "Pathway Gothic One, sans-serif", - "slug": "wp-font-lib-pathway-gothic-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pathwaygothicone/v15/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dTFxeb80flQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pathway Gothic One" - } - ] - }, - { - "name": "Patrick Hand", - "fontFamily": "Patrick Hand, cursive", - "slug": "wp-font-lib-patrick-hand", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/patrickhand/v20/LDI1apSQOAYtSuYWp8ZhfYeMWcjKm7sp8g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Patrick Hand" - } - ] - }, - { - "name": "Patrick Hand SC", - "fontFamily": "Patrick Hand SC, cursive", - "slug": "wp-font-lib-patrick-hand-sc", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/patrickhandsc/v13/0nkwC9f7MfsBiWcLtY65AWDK873ViSi6JQc7Vg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Patrick Hand SC" - } - ] - }, - { - "name": "Pattaya", - "fontFamily": "Pattaya, sans-serif", - "slug": "wp-font-lib-pattaya", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pattaya/v13/ea8ZadcqV_zkHY-XNdCn92ZEmVs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pattaya" - } - ] - }, - { - "name": "Patua One", - "fontFamily": "Patua One, system-ui", - "slug": "wp-font-lib-patua-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/patuaone/v16/ZXuke1cDvLCKLDcimxBI5PNvNA9LuA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Patua One" - } - ] - }, - { - "name": "Pavanam", - "fontFamily": "Pavanam, sans-serif", - "slug": "wp-font-lib-pavanam", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pavanam/v11/BXRrvF_aiezLh0xPDOtQ9Wf0QcE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pavanam" - } - ] - }, - { - "name": "Paytone One", - "fontFamily": "Paytone One, sans-serif", - "slug": "wp-font-lib-paytone-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/paytoneone/v21/0nksC9P7MfYHj2oFtYm2CiTqivr9iBq_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Paytone One" - } - ] - }, - { - "name": "Peddana", - "fontFamily": "Peddana, serif", - "slug": "wp-font-lib-peddana", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/peddana/v20/aFTU7PBhaX89UcKWhh2aBYyMcKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Peddana" - } - ] - }, - { - "name": "Peralta", - "fontFamily": "Peralta, system-ui", - "slug": "wp-font-lib-peralta", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/peralta/v17/hYkJPu0-RP_9d3kRGxAhrv956B8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Peralta" - } - ] - }, - { - "name": "Permanent Marker", - "fontFamily": "Permanent Marker, cursive", - "slug": "wp-font-lib-permanent-marker", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/permanentmarker/v16/Fh4uPib9Iyv2ucM6pGQMWimMp004HaqIfrT5nlk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Permanent Marker" - } - ] - }, - { - "name": "Petemoss", - "fontFamily": "Petemoss, cursive", - "slug": "wp-font-lib-petemoss", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/petemoss/v5/A2BZn5tA2xgtGWHZgxkesKb9UouQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Petemoss" - } - ] - }, - { - "name": "Petit Formal Script", - "fontFamily": "Petit Formal Script, cursive", - "slug": "wp-font-lib-petit-formal-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/petitformalscript/v14/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHnqP4gZSiE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Petit Formal Script" - } - ] - }, - { - "name": "Petrona", - "fontFamily": "Petrona, serif", - "slug": "wp-font-lib-petrona", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsARBH452Mvds.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NsQRBH452Mvds.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk7TsQRBH452Mvds.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsQRBH452Mvds.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6_sQRBH452Mvds.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5TtgRBH452Mvds.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5qtgRBH452Mvds.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NtgRBH452Mvds.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4ktgRBH452Mvds.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwDFYpUN-dsIWs.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwCFYpUN-dsIWs.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8rICFYpUN-dsIWs.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwCFYpUN-dsIWs.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8t4CFYpUN-dsIWs.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8jIFFYpUN-dsIWs.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8gsFFYpUN-dsIWs.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwFFYpUN-dsIWs.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8kUFFYpUN-dsIWs.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Petrona" - } - ] - }, - { - "name": "Philosopher", - "fontFamily": "Philosopher, sans-serif", - "slug": "wp-font-lib-philosopher", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/philosopher/v19/vEFV2_5QCwIS4_Dhez5jcVBpRUwU08qe.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Philosopher" - }, - { - "src": "http://fonts.gstatic.com/s/philosopher/v19/vEFX2_5QCwIS4_Dhez5jcWBrT0g21tqeR7c.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Philosopher" - }, - { - "src": "http://fonts.gstatic.com/s/philosopher/v19/vEFI2_5QCwIS4_Dhez5jcWjVamgc-NaXXq7H.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Philosopher" - }, - { - "src": "http://fonts.gstatic.com/s/philosopher/v19/vEFK2_5QCwIS4_Dhez5jcWBrd_QZ8tK1W77HtMo.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Philosopher" - } - ] - }, - { - "name": "Phudu", - "fontFamily": "Phudu, system-ui", - "slug": "wp-font-lib-phudu", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkK62zUSwWuz38Tgg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Phudu" - }, - { - "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKtWzUSwWuz38Tgg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Phudu" - }, - { - "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKh2zUSwWuz38Tgg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Phudu" - }, - { - "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKa2vUSwWuz38Tgg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Phudu" - }, - { - "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKUmvUSwWuz38Tgg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Phudu" - }, - { - "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKNWvUSwWuz38Tgg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Phudu" - }, - { - "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKHGvUSwWuz38Tgg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Phudu" - } - ] - }, - { - "name": "Piazzolla", - "fontFamily": "Piazzolla, serif", - "slug": "wp-font-lib-piazzolla", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYx3Ly1AHfAAy5.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYxnLy1AHfAAy5.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7KGxnLy1AHfAAy5.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYxnLy1AHfAAy5.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LqxnLy1AHfAAy5.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7IGwXLy1AHfAAy5.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7I_wXLy1AHfAAy5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYwXLy1AHfAAy5.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JxwXLy1AHfAAy5.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqw3gX9BRy5m5M.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRqx3gX9BRy5m5M.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhcSx3gX9BRy5m5M.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhaix3gX9BRy5m5M.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhUS23gX9BRy5m5M.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhX223gX9BRy5m5M.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRq23gX9BRy5m5M.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhTO23gX9BRy5m5M.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Piazzolla" - } - ] - }, - { - "name": "Piedra", - "fontFamily": "Piedra, system-ui", - "slug": "wp-font-lib-piedra", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/piedra/v22/ke8kOg8aN0Bn7hTunEyHN_M3gA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Piedra" - } - ] - }, - { - "name": "Pinyon Script", - "fontFamily": "Pinyon Script, cursive", - "slug": "wp-font-lib-pinyon-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pinyonscript/v18/6xKpdSJbL9-e9LuoeQiDRQR8aOLQO4bhiDY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pinyon Script" - } - ] - }, - { - "name": "Pirata One", - "fontFamily": "Pirata One, system-ui", - "slug": "wp-font-lib-pirata-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pirataone/v22/I_urMpiDvgLdLh0fAtoftiiEr5_BdZ8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pirata One" - } - ] - }, - { - "name": "Plaster", - "fontFamily": "Plaster, system-ui", - "slug": "wp-font-lib-plaster", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/plaster/v24/DdTm79QatW80eRh4Ei5JOtLOeLI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Plaster" - } - ] - }, - { - "name": "Play", - "fontFamily": "Play, sans-serif", - "slug": "wp-font-lib-play", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/play/v17/6aez4K2oVqwIjtI8Hp8Tx3A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Play" - }, - { - "src": "http://fonts.gstatic.com/s/play/v17/6ae84K2oVqwItm4TOpc423nTJTM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Play" - } - ] - }, - { - "name": "Playball", - "fontFamily": "Playball, system-ui", - "slug": "wp-font-lib-playball", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/playball/v17/TK3gWksYAxQ7jbsKcj8Dl-tPKo2t.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Playball" - } - ] - }, - { - "name": "Playfair", - "fontFamily": "Playfair, serif", - "slug": "wp-font-lib-playfair", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/playfair/v1/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-bUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPlKetgdoSMw5ifm.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Playfair" - }, - { - "src": "http://fonts.gstatic.com/s/playfair/v1/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-bUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPkUetgdoSMw5ifm.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Playfair" - }, - { - "src": "http://fonts.gstatic.com/s/playfair/v1/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-bUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPkmetgdoSMw5ifm.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Playfair" - }, - { - "src": "http://fonts.gstatic.com/s/playfair/v1/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-bUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPnKfdgdoSMw5ifm.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Playfair" - }, - { - "src": "http://fonts.gstatic.com/s/playfair/v1/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-bUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPnzfdgdoSMw5ifm.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Playfair" - }, - { - "src": "http://fonts.gstatic.com/s/playfair/v1/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-bUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPmUfdgdoSMw5ifm.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Playfair" - }, - { - "src": "http://fonts.gstatic.com/s/playfair/v1/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-bUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPm9fdgdoSMw5ifm.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Playfair" - }, - { - "src": "http://fonts.gstatic.com/s/playfair/v1/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZjFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOW5eqycS4zfmNrE.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Playfair" - }, - { - "src": "http://fonts.gstatic.com/s/playfair/v1/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZjFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOTBeqycS4zfmNrE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Playfair" - }, - { - "src": "http://fonts.gstatic.com/s/playfair/v1/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZjFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOQJeqycS4zfmNrE.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Playfair" - }, - { - "src": "http://fonts.gstatic.com/s/playfair/v1/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZjFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOe5ZqycS4zfmNrE.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Playfair" - }, - { - "src": "http://fonts.gstatic.com/s/playfair/v1/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZjFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOddZqycS4zfmNrE.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Playfair" - }, - { - "src": "http://fonts.gstatic.com/s/playfair/v1/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZjFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcObBZqycS4zfmNrE.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Playfair" - }, - { - "src": "http://fonts.gstatic.com/s/playfair/v1/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZjFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOZlZqycS4zfmNrE.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Playfair" - } - ] - }, - { - "name": "Playfair Display", - "fontFamily": "Playfair Display, serif", - "slug": "wp-font-lib-playfair-display", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvUDQZNLo_U2r.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Playfair Display" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKd3vUDQZNLo_U2r.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Playfair Display" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKebukDQZNLo_U2r.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Playfair Display" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiukDQZNLo_U2r.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Playfair Display" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfFukDQZNLo_U2r.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Playfair Display" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfsukDQZNLo_U2r.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Playfair Display" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_qiTbtbK-F2rA0s.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Playfair Display" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_pqTbtbK-F2rA0s.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Playfair Display" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_naUbtbK-F2rA0s.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Playfair Display" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_k-UbtbK-F2rA0s.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Playfair Display" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_iiUbtbK-F2rA0s.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Playfair Display" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_gGUbtbK-F2rA0s.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Playfair Display" - } - ] - }, - { - "name": "Playfair Display SC", - "fontFamily": "Playfair Display SC, serif", - "slug": "wp-font-lib-playfair-display-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pb4GEcM2M4s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Playfair Display SC" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke87OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbwMFeEzI4sNKg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Playfair Display SC" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nQIpNcsdL4IUMyE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Playfair Display SC" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0qc4XK6ARIyH5IA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Playfair Display SC" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nTorNcsdL4IUMyE.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Playfair Display SC" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0kcwXK6ARIyH5IA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Playfair Display SC" - } - ] - }, - { - "name": "Plus Jakarta Sans", - "fontFamily": "Plus Jakarta Sans, sans-serif", - "slug": "wp-font-lib-plus-jakarta-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KU7NShXUEKi4Rw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_907NShXUEKi4Rw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NShXUEKi4Rw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NShXUEKi4Rw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNShXUEKi4Rw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNShXUEKi4Rw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNShXUEKi4Rw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lCR_QMq2oR82k.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ17CR_QMq2oR82k.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0lCR_QMq2oR82k.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0XCR_QMq2oR82k.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ37Dh_QMq2oR82k.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ3CDh_QMq2oR82k.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lDh_QMq2oR82k.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Plus Jakarta Sans" - } - ] - }, - { - "name": "Podkova", - "fontFamily": "Podkova, serif", - "slug": "wp-font-lib-podkova", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWtFzcU4EoporSHH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Podkova" - }, - { - "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWt3zcU4EoporSHH.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Podkova" - }, - { - "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWubysU4EoporSHH.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Podkova" - }, - { - "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWuiysU4EoporSHH.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Podkova" - }, - { - "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWvFysU4EoporSHH.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Podkova" - } - ] - }, - { - "name": "Poiret One", - "fontFamily": "Poiret One, system-ui", - "slug": "wp-font-lib-poiret-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/poiretone/v14/UqyVK80NJXN4zfRgbdfbk5lWVscxdKE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Poiret One" - } - ] - }, - { - "name": "Poller One", - "fontFamily": "Poller One, system-ui", - "slug": "wp-font-lib-poller-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pollerone/v19/ahccv82n0TN3gia5E4Bud-lbgUS5u0s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Poller One" - } - ] - }, - { - "name": "Poltawski Nowy", - "fontFamily": "Poltawski Nowy, serif", - "slug": "wp-font-lib-poltawski-nowy", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KqCWnDS6V5CzCoQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Poltawski Nowy" - }, - { - "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KmiWnDS6V5CzCoQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Poltawski Nowy" - }, - { - "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KdiKnDS6V5CzCoQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Poltawski Nowy" - }, - { - "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KTyKnDS6V5CzCoQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Poltawski Nowy" - }, - { - "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGZPTiSRxinSoROp.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Poltawski Nowy" - }, - { - "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGZ9TiSRxinSoROp.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Poltawski Nowy" - }, - { - "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGaRSSSRxinSoROp.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Poltawski Nowy" - }, - { - "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGaoSSSRxinSoROp.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Poltawski Nowy" - } - ] - }, - { - "name": "Poly", - "fontFamily": "Poly, serif", - "slug": "wp-font-lib-poly", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/poly/v16/MQpb-W6wKNitRLCAq2Lpris.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Poly" - }, - { - "src": "http://fonts.gstatic.com/s/poly/v16/MQpV-W6wKNitdLKKr0DsviuGWA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Poly" - } - ] - }, - { - "name": "Pompiere", - "fontFamily": "Pompiere, system-ui", - "slug": "wp-font-lib-pompiere", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pompiere/v15/VEMyRoxis5Dwuyeov6Wt5jDtreOL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pompiere" - } - ] - }, - { - "name": "Pontano Sans", - "fontFamily": "Pontano Sans, sans-serif", - "slug": "wp-font-lib-pontano-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOSzMncaMp9gzWsE.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Pontano Sans" - }, - { - "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOXLMncaMp9gzWsE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pontano Sans" - }, - { - "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOUDMncaMp9gzWsE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Pontano Sans" - }, - { - "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOazLncaMp9gzWsE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Pontano Sans" - }, - { - "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOZXLncaMp9gzWsE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Pontano Sans" - } - ] - }, - { - "name": "Poor Story", - "fontFamily": "Poor Story, system-ui", - "slug": "wp-font-lib-poor-story", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/poorstory/v20/jizfREFUsnUct9P6cDfd4OmnLD0Z4zM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Poor Story" - } - ] - }, - { - "name": "Poppins", - "fontFamily": "Poppins, sans-serif", - "slug": "wp-font-lib-poppins", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Poppins" - } - ] - }, - { - "name": "Port Lligat Sans", - "fontFamily": "Port Lligat Sans, sans-serif", - "slug": "wp-font-lib-port-lligat-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/portlligatsans/v18/kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7N0Tx4xEcQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Port Lligat Sans" - } - ] - }, - { - "name": "Port Lligat Slab", - "fontFamily": "Port Lligat Slab, serif", - "slug": "wp-font-lib-port-lligat-slab", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/portlligatslab/v21/LDIpaoiQNgArA8kR7ulhZ8P_NYOss7ob9yGLmfI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Port Lligat Slab" - } - ] - }, - { - "name": "Potta One", - "fontFamily": "Potta One, system-ui", - "slug": "wp-font-lib-potta-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pottaone/v16/FeVSS05Bp6cy7xI-YfxQ3Z5nm29Gww.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Potta One" - } - ] - }, - { - "name": "Pragati Narrow", - "fontFamily": "Pragati Narrow, sans-serif", - "slug": "wp-font-lib-pragati-narrow", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pragatinarrow/v13/vm8vdRf0T0bS1ffgsPB7WZ-mD17_ytN3M48a.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pragati Narrow" - }, - { - "src": "http://fonts.gstatic.com/s/pragatinarrow/v13/vm8sdRf0T0bS1ffgsPB7WZ-mD2ZD5fd_GJMTlo_4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Pragati Narrow" - } - ] - }, - { - "name": "Praise", - "fontFamily": "Praise, cursive", - "slug": "wp-font-lib-praise", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/praise/v5/qkBUXvUZ-cnFXcFyDvO67L9XmQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Praise" - } - ] - }, - { - "name": "Prata", - "fontFamily": "Prata, serif", - "slug": "wp-font-lib-prata", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/prata/v18/6xKhdSpbNNCT-vWIAG_5LWwJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Prata" - } - ] - }, - { - "name": "Preahvihear", - "fontFamily": "Preahvihear, sans-serif", - "slug": "wp-font-lib-preahvihear", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/preahvihear/v27/6NUS8F-dNQeEYhzj7uluxswE49FJf8Wv.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Preahvihear" - } - ] - }, - { - "name": "Press Start 2P", - "fontFamily": "Press Start 2P, system-ui", - "slug": "wp-font-lib-press-start-2p", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pressstart2p/v15/e3t4euO8T-267oIAQAu6jDQyK0nSgPJE4580.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Press Start 2P" - } - ] - }, - { - "name": "Pridi", - "fontFamily": "Pridi, serif", - "slug": "wp-font-lib-pridi", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1SiE0jRUG0AqUc.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Pridi" - }, - { - "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc02i00jRUG0AqUc.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Pridi" - }, - { - "src": "http://fonts.gstatic.com/s/pridi/v11/2sDQZG5JnZLfkfWao2krbl29.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pridi" - }, - { - "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1uik0jRUG0AqUc.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Pridi" - }, - { - "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1CjU0jRUG0AqUc.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Pridi" - }, - { - "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc0mjE0jRUG0AqUc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Pridi" - } - ] - }, - { - "name": "Princess Sofia", - "fontFamily": "Princess Sofia, cursive", - "slug": "wp-font-lib-princess-sofia", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/princesssofia/v22/qWczB6yguIb8DZ_GXZst16n7GRz7mDUoupoI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Princess Sofia" - } - ] - }, - { - "name": "Prociono", - "fontFamily": "Prociono, serif", - "slug": "wp-font-lib-prociono", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/prociono/v22/r05YGLlR-KxAf9GGO8upyDYtStiJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Prociono" - } - ] - }, - { - "name": "Prompt", - "fontFamily": "Prompt, sans-serif", - "slug": "wp-font-lib-prompt", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2CA9oYREcjeo0k.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_7XJnvUD7dzB2KZeJ8TkMBf50kbiM.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cr_s4bmkvc5Q9dw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLQb2MrUZEtdzow.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cy_g4bmkvc5Q9dw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK0bGMrUZEtdzow.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W__XJnvUD7dzB26Z9AcZkIzeg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2KZdoYREcjeo0k.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Ck_k4bmkvc5Q9dw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLsbWMrUZEtdzow.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cv_44bmkvc5Q9dw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLAamMrUZEtdzow.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C2_84bmkvc5Q9dw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKka2MrUZEtdzow.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cx_w4bmkvc5Q9dw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK4aGMrUZEtdzow.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C4_04bmkvc5Q9dw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKcaWMrUZEtdzow.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Prompt" - } - ] - }, - { - "name": "Prosto One", - "fontFamily": "Prosto One, system-ui", - "slug": "wp-font-lib-prosto-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/prostoone/v17/OpNJno4VhNfK-RgpwWWxpipfWhXD00c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Prosto One" - } - ] - }, - { - "name": "Proza Libre", - "fontFamily": "Proza Libre, sans-serif", - "slug": "wp-font-lib-proza-libre", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjGdGHgj0k1DIQRyUEyyHovftvXWYyz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Proza Libre" - }, - { - "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjEdGHgj0k1DIQRyUEyyEotdN_1XJyz7zc.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Proza Libre" - }, - { - "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyELbV__fcpC69i6N.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Proza Libre" - }, - { - "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTCvceJSY8z6Np1k.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Proza Libre" - }, - { - "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEL3UP_fcpC69i6N.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Proza Libre" - }, - { - "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTAfbeJSY8z6Np1k.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Proza Libre" - }, - { - "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKTUf_fcpC69i6N.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Proza Libre" - }, - { - "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTGPaeJSY8z6Np1k.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Proza Libre" - }, - { - "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKPUv_fcpC69i6N.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Proza Libre" - }, - { - "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTH_ZeJSY8z6Np1k.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Proza Libre" - } - ] - }, - { - "name": "Public Sans", - "fontFamily": "Public Sans, sans-serif", - "slug": "wp-font-lib-public-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpi5ww0pX189fg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulpm5ww0pX189fg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuSJm5ww0pX189fg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpm5ww0pX189fg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuJJm5ww0pX189fg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuyJ65ww0pX189fg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65ww0pX189fg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulp65ww0pX189fg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuv565ww0pX189fg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgQctfVotfj7j.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRgActfVotfj7j.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673toPgActfVotfj7j.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgActfVotfj7j.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpjgActfVotfj7j.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tqPhwctfVotfj7j.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tq2hwctfVotfj7j.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRhwctfVotfj7j.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tr4hwctfVotfj7j.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Public Sans" - } - ] - }, - { - "name": "Puppies Play", - "fontFamily": "Puppies Play, cursive", - "slug": "wp-font-lib-puppies-play", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/puppiesplay/v6/wlp2gwHZEV99rG6M3NR9uB9vaAJSA_JN3Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Puppies Play" - } - ] - }, - { - "name": "Puritan", - "fontFamily": "Puritan, sans-serif", - "slug": "wp-font-lib-puritan", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/puritan/v24/845YNMgkAJ2VTtIo9JrwRdaI50M.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Puritan" - }, - { - "src": "http://fonts.gstatic.com/s/puritan/v24/845aNMgkAJ2VTtIoxJj6QfSN90PfXA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Puritan" - }, - { - "src": "http://fonts.gstatic.com/s/puritan/v24/845dNMgkAJ2VTtIozCbfYd6j-0rGRes.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Puritan" - }, - { - "src": "http://fonts.gstatic.com/s/puritan/v24/845fNMgkAJ2VTtIoxJjC_dup_2jDVevnLQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Puritan" - } - ] - }, - { - "name": "Purple Purse", - "fontFamily": "Purple Purse, system-ui", - "slug": "wp-font-lib-purple-purse", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/purplepurse/v21/qWctB66gv53iAp-Vfs4My6qyeBb_ujA4ug.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Purple Purse" - } - ] - }, - { - "name": "Qahiri", - "fontFamily": "Qahiri, sans-serif", - "slug": "wp-font-lib-qahiri", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/qahiri/v9/tsssAp1RZy0C_hGuU3Chrnmupw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Qahiri" - } - ] - }, - { - "name": "Quando", - "fontFamily": "Quando, serif", - "slug": "wp-font-lib-quando", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/quando/v14/xMQVuFNaVa6YuW0pC6WzKX_QmA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Quando" - } - ] - }, - { - "name": "Quantico", - "fontFamily": "Quantico, sans-serif", - "slug": "wp-font-lib-quantico", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/quantico/v15/rax-HiSdp9cPL3KIF4xsLjxSmlLZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Quantico" - }, - { - "src": "http://fonts.gstatic.com/s/quantico/v15/rax4HiSdp9cPL3KIF7xuJDhwn0LZ6T8.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Quantico" - }, - { - "src": "http://fonts.gstatic.com/s/quantico/v15/rax5HiSdp9cPL3KIF7TQARhasU7Q8Cad.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Quantico" - }, - { - "src": "http://fonts.gstatic.com/s/quantico/v15/rax7HiSdp9cPL3KIF7xuHIRfu0ry9TadML4.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Quantico" - } - ] - }, - { - "name": "Quattrocento", - "fontFamily": "Quattrocento, serif", - "slug": "wp-font-lib-quattrocento", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/quattrocento/v18/OZpEg_xvsDZQL_LKIF7q4jPHxGL7f4jFuA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Quattrocento" - }, - { - "src": "http://fonts.gstatic.com/s/quattrocento/v18/OZpbg_xvsDZQL_LKIF7q4jP_eE3fd6PZsXcM9w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Quattrocento" - } - ] - }, - { - "name": "Quattrocento Sans", - "fontFamily": "Quattrocento Sans, sans-serif", - "slug": "wp-font-lib-quattrocento-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9c4lja2NVIDdIAAoMR5MfuElaRB3zOvU7eHGHJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Quattrocento Sans" - }, - { - "src": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0r8GXHJkLI.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Quattrocento Sans" - }, - { - "src": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrWN33AiasJ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Quattrocento Sans" - }, - { - "src": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXnijLsJV7E.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Quattrocento Sans" - } - ] - }, - { - "name": "Questrial", - "fontFamily": "Questrial, sans-serif", - "slug": "wp-font-lib-questrial", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/questrial/v18/QdVUSTchPBm7nuUeVf7EuStkm20oJA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Questrial" - } - ] - }, - { - "name": "Quicksand", - "fontFamily": "Quicksand, sans-serif", - "slug": "wp-font-lib-quicksand", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkKEo18G0wx40QDw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Quicksand" - }, - { - "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o18G0wx40QDw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Quicksand" - }, - { - "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkM0o18G0wx40QDw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Quicksand" - }, - { - "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkCEv18G0wx40QDw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Quicksand" - }, - { - "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkBgv18G0wx40QDw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Quicksand" - } - ] - }, - { - "name": "Quintessential", - "fontFamily": "Quintessential, cursive", - "slug": "wp-font-lib-quintessential", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/quintessential/v20/fdNn9sOGq31Yjnh3qWU14DdtjY5wS7kmAyxM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Quintessential" - } - ] - }, - { - "name": "Qwigley", - "fontFamily": "Qwigley, cursive", - "slug": "wp-font-lib-qwigley", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/qwigley/v16/1cXzaU3UGJb5tGoCuVxsi1mBmcE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Qwigley" - } - ] - }, - { - "name": "Qwitcher Grypen", - "fontFamily": "Qwitcher Grypen, cursive", - "slug": "wp-font-lib-qwitcher-grypen", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/qwitchergrypen/v3/pxicypclp9tDilN9RrC5BSI1dZmrSGNAom-wpw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Qwitcher Grypen" - }, - { - "src": "http://fonts.gstatic.com/s/qwitchergrypen/v3/pxiZypclp9tDilN9RrC5BSI1dZmT9ExkqkSsrvNXiA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Qwitcher Grypen" - } - ] - }, - { - "name": "Racing Sans One", - "fontFamily": "Racing Sans One, system-ui", - "slug": "wp-font-lib-racing-sans-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/racingsansone/v13/sykr-yRtm7EvTrXNxkv5jfKKyDCwL3rmWpIBtA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Racing Sans One" - } - ] - }, - { - "name": "Radio Canada", - "fontFamily": "Radio Canada, sans-serif", - "slug": "wp-font-lib-radio-canada", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nESkQPIJOdSSfOT.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Radio Canada" - }, - { - "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nFMkQPIJOdSSfOT.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Radio Canada" - }, - { - "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nF-kQPIJOdSSfOT.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Radio Canada" - }, - { - "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGSlgPIJOdSSfOT.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Radio Canada" - }, - { - "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGrlgPIJOdSSfOT.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Radio Canada" - }, - { - "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0rWLLuNwTOOTa9k.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Radio Canada" - }, - { - "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0uuLLuNwTOOTa9k.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Radio Canada" - }, - { - "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0tmLLuNwTOOTa9k.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Radio Canada" - }, - { - "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0jWMLuNwTOOTa9k.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Radio Canada" - }, - { - "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0gyMLuNwTOOTa9k.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Radio Canada" - } - ] - }, - { - "name": "Radley", - "fontFamily": "Radley, serif", - "slug": "wp-font-lib-radley", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/radley/v20/LYjDdGzinEIjCN19oAlEpVs3VQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Radley" - }, - { - "src": "http://fonts.gstatic.com/s/radley/v20/LYjBdGzinEIjCN1NogNAh14nVcfe.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Radley" - } - ] - }, - { - "name": "Rajdhani", - "fontFamily": "Rajdhani, sans-serif", - "slug": "wp-font-lib-rajdhani", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pasEcOsc-bGkqIw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Rajdhani" - }, - { - "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDIxapCSOBg7S-QT7q4AOeekWPrP.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rajdhani" - }, - { - "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pb0EMOsc-bGkqIw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Rajdhani" - }, - { - "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pbYF8Osc-bGkqIw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Rajdhani" - }, - { - "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pa8FsOsc-bGkqIw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rajdhani" - } - ] - }, - { - "name": "Rakkas", - "fontFamily": "Rakkas, system-ui", - "slug": "wp-font-lib-rakkas", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rakkas/v17/Qw3cZQlNHiblL3j_lttPOeMcCw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rakkas" - } - ] - }, - { - "name": "Raleway", - "fontFamily": "Raleway, sans-serif", - "slug": "wp-font-lib-raleway", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvao4CPNLA3JC9c.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtaooCPNLA3JC9c.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVuEooCPNLA3JC9c.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaooCPNLA3JC9c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCPNLA3JC9c.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVsEpYCPNLA3JC9c.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pYCPNLA3JC9c.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtapYCPNLA3JC9c.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtzpYCPNLA3JC9c.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjNPrQVIT9c2c8.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejMPrQVIT9c2c8.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejLPrQVIT9c2c8.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4cHLPrQVIT9c2c8.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Raleway" - } - ] - }, - { - "name": "Raleway Dots", - "fontFamily": "Raleway Dots, system-ui", - "slug": "wp-font-lib-raleway-dots", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ralewaydots/v14/6NUR8FifJg6AfQvzpshgwJ8kyf9Fdty2ew.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Raleway Dots" - } - ] - }, - { - "name": "Ramabhadra", - "fontFamily": "Ramabhadra, sans-serif", - "slug": "wp-font-lib-ramabhadra", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ramabhadra/v15/EYq2maBOwqRW9P1SQ83LehNGX5uWw3o.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ramabhadra" - } - ] - }, - { - "name": "Ramaraja", - "fontFamily": "Ramaraja, serif", - "slug": "wp-font-lib-ramaraja", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ramaraja/v15/SlGTmQearpYAYG1CABIkqnB6aSQU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ramaraja" - } - ] - }, - { - "name": "Rambla", - "fontFamily": "Rambla, sans-serif", - "slug": "wp-font-lib-rambla", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rambla/v13/snfrs0ip98hx6mr0I7IONthkwQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rambla" - }, - { - "src": "http://fonts.gstatic.com/s/rambla/v13/snfps0ip98hx6mrEIbgKFN10wYKa.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Rambla" - }, - { - "src": "http://fonts.gstatic.com/s/rambla/v13/snfos0ip98hx6mrMn50qPvN4yJuDYQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rambla" - }, - { - "src": "http://fonts.gstatic.com/s/rambla/v13/snfus0ip98hx6mrEIYC2O_l86p6TYS-Y.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Rambla" - } - ] - }, - { - "name": "Rammetto One", - "fontFamily": "Rammetto One, system-ui", - "slug": "wp-font-lib-rammetto-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rammettoone/v15/LhWiMV3HOfMbMetJG3lQDpp9Mvuciu-_SQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rammetto One" - } - ] - }, - { - "name": "Rampart One", - "fontFamily": "Rampart One, system-ui", - "slug": "wp-font-lib-rampart-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rampartone/v7/K2F1fZFGl_JSR1tAWNG9R6qgLS76ZHOM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rampart One" - } - ] - }, - { - "name": "Ranchers", - "fontFamily": "Ranchers, system-ui", - "slug": "wp-font-lib-ranchers", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ranchers/v14/zrfm0H3Lx-P2Xvs2AoDYDC79XTHv.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ranchers" - } - ] - }, - { - "name": "Rancho", - "fontFamily": "Rancho, cursive", - "slug": "wp-font-lib-rancho", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rancho/v17/46kulbzmXjLaqZRlbWXgd0RY1g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rancho" - } - ] - }, - { - "name": "Ranga", - "fontFamily": "Ranga, system-ui", - "slug": "wp-font-lib-ranga", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ranga/v18/C8ct4cYisGb28p6CLDwZwmGE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ranga" - }, - { - "src": "http://fonts.gstatic.com/s/ranga/v18/C8cg4cYisGb28qY-AxgR6X2NZAn2.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Ranga" - } - ] - }, - { - "name": "Rasa", - "fontFamily": "Rasa, serif", - "slug": "wp-font-lib-rasa", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN4YJW41fcvN2KT4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Rasa" - }, - { - "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN5GJW41fcvN2KT4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rasa" - }, - { - "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN50JW41fcvN2KT4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Rasa" - }, - { - "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN6YIm41fcvN2KT4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Rasa" - }, - { - "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN6hIm41fcvN2KT4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rasa" - }, - { - "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZth2d8_v3bT4Ycc.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Rasa" - }, - { - "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZoZ2d8_v3bT4Ycc.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Rasa" - }, - { - "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZrR2d8_v3bT4Ycc.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Rasa" - }, - { - "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZlhxd8_v3bT4Ycc.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Rasa" - }, - { - "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZmFxd8_v3bT4Ycc.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Rasa" - } - ] - }, - { - "name": "Rationale", - "fontFamily": "Rationale, sans-serif", - "slug": "wp-font-lib-rationale", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rationale/v24/9XUnlJ92n0_JFxHIfHcsdlFMzLC2Zw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rationale" - } - ] - }, - { - "name": "Ravi Prakash", - "fontFamily": "Ravi Prakash, system-ui", - "slug": "wp-font-lib-ravi-prakash", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/raviprakash/v19/gokpH6fsDkVrF9Bv9X8SOAKHmNZEq6TTFw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ravi Prakash" - } - ] - }, - { - "name": "Readex Pro", - "fontFamily": "Readex Pro, sans-serif", - "slug": "wp-font-lib-readex-pro", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCYUSmgmsglvjkag.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Readex Pro" - }, - { - "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCv0Smgmsglvjkag.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Readex Pro" - }, - { - "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTC4USmgmsglvjkag.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Readex Pro" - }, - { - "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTC00Smgmsglvjkag.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Readex Pro" - }, - { - "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCP0Omgmsglvjkag.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Readex Pro" - }, - { - "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCBkOmgmsglvjkag.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Readex Pro" - } - ] - }, - { - "name": "Recursive", - "fontFamily": "Recursive, sans-serif", - "slug": "wp-font-lib-recursive", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadDck018vwxjDJCL.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Recursive" - }, - { - "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCCk018vwxjDJCL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Recursive" - }, - { - "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCwk018vwxjDJCL.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Recursive" - }, - { - "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBclE18vwxjDJCL.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Recursive" - }, - { - "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBllE18vwxjDJCL.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Recursive" - }, - { - "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadAClE18vwxjDJCL.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Recursive" - }, - { - "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadArlE18vwxjDJCL.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Recursive" - } - ] - }, - { - "name": "Red Hat Display", - "fontFamily": "Red Hat Display, sans-serif", - "slug": "wp-font-lib-red-hat-display", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbjKWckg5-Xecg3w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbmyWckg5-Xecg3w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbl6Wckg5-Xecg3w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbrKRckg5-Xecg3w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbouRckg5-Xecg3w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbuyRckg5-Xecg3w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbsWRckg5-Xecg3w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVxAsz_VWZk3zJGg.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVmgsz_VWZk3zJGg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVqAsz_VWZk3zJGg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVRAwz_VWZk3zJGg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVfQwz_VWZk3zJGg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVGgwz_VWZk3zJGg.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVMwwz_VWZk3zJGg.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Red Hat Display" - } - ] - }, - { - "name": "Red Hat Mono", - "fontFamily": "Red Hat Mono, monospace", - "slug": "wp-font-lib-red-hat-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQQPI-7HNuW4QuKI.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Red Hat Mono" - }, - { - "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQV3I-7HNuW4QuKI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Red Hat Mono" - }, - { - "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQW_I-7HNuW4QuKI.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Red Hat Mono" - }, - { - "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQYPP-7HNuW4QuKI.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Red Hat Mono" - }, - { - "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQbrP-7HNuW4QuKI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Red Hat Mono" - }, - { - "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLTfLHvUwVqKIJuw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Red Hat Mono" - }, - { - "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLE_LHvUwVqKIJuw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Red Hat Mono" - }, - { - "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLIfLHvUwVqKIJuw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Red Hat Mono" - }, - { - "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLzfXHvUwVqKIJuw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Red Hat Mono" - }, - { - "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWL9PXHvUwVqKIJuw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Red Hat Mono" - } - ] - }, - { - "name": "Red Hat Text", - "fontFamily": "Red Hat Text, sans-serif", - "slug": "wp-font-lib-red-hat-text", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML-ZwVrbacYVFtIY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Red Hat Text" - }, - { - "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML7hwVrbacYVFtIY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Red Hat Text" - }, - { - "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML4pwVrbacYVFtIY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Red Hat Text" - }, - { - "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML2Z3VrbacYVFtIY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Red Hat Text" - }, - { - "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML193VrbacYVFtIY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Red Hat Text" - }, - { - "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAz4PXQdadApIYv_g.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Red Hat Text" - }, - { - "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzvvXQdadApIYv_g.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Red Hat Text" - }, - { - "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzjPXQdadApIYv_g.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Red Hat Text" - }, - { - "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzYPLQdadApIYv_g.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Red Hat Text" - }, - { - "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzWfLQdadApIYv_g.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Red Hat Text" - } - ] - }, - { - "name": "Red Rose", - "fontFamily": "Red Rose, system-ui", - "slug": "wp-font-lib-red-rose", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8y8_sDcjSsYUVUjg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Red Rose" - }, - { - "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yrfsDcjSsYUVUjg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Red Rose" - }, - { - "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yn_sDcjSsYUVUjg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Red Rose" - }, - { - "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yc_wDcjSsYUVUjg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Red Rose" - }, - { - "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8ySvwDcjSsYUVUjg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Red Rose" - } - ] - }, - { - "name": "Redacted", - "fontFamily": "Redacted, system-ui", - "slug": "wp-font-lib-redacted", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/redacted/v6/Z9XVDmdRShme2O_7aITe4u2El6GC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Redacted" - } - ] - }, - { - "name": "Redacted Script", - "fontFamily": "Redacted Script, system-ui", - "slug": "wp-font-lib-redacted-script", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/redactedscript/v7/ypvEbXGRglhokR7dcC3d1-R6zmxqHUzVmbI397ldkg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Redacted Script" - }, - { - "src": "http://fonts.gstatic.com/s/redactedscript/v7/ypvBbXGRglhokR7dcC3d1-R6zmxSsWTxkZkr_g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Redacted Script" - }, - { - "src": "http://fonts.gstatic.com/s/redactedscript/v7/ypvEbXGRglhokR7dcC3d1-R6zmxqDUvVmbI397ldkg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Redacted Script" - } - ] - }, - { - "name": "Redressed", - "fontFamily": "Redressed, cursive", - "slug": "wp-font-lib-redressed", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/redressed/v25/x3dickHUbrmJ7wMy9MsBfPACvy_1BA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Redressed" - } - ] - }, - { - "name": "Reem Kufi", - "fontFamily": "Reem Kufi, sans-serif", - "slug": "wp-font-lib-reem-kufi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Reem Kufi" - }, - { - "src": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Reem Kufi" - }, - { - "src": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Reem Kufi" - }, - { - "src": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Reem Kufi" - } - ] - }, - { - "name": "Reem Kufi Fun", - "fontFamily": "Reem Kufi Fun, sans-serif", - "slug": "wp-font-lib-reem-kufi-fun", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYj3nCgrvqZzZXq.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Reem Kufi Fun" - }, - { - "src": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYR3nCgrvqZzZXq.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Reem Kufi Fun" - }, - { - "src": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChob92XCgrvqZzZXq.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Reem Kufi Fun" - }, - { - "src": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChobE2XCgrvqZzZXq.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Reem Kufi Fun" - } - ] - }, - { - "name": "Reem Kufi Ink", - "fontFamily": "Reem Kufi Ink, sans-serif", - "slug": "wp-font-lib-reem-kufi-ink", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/reemkufiink/v9/oPWJ_kJmmu8hCvB9iFumxZSnRj5dQnSX1ko.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Reem Kufi Ink" - } - ] - }, - { - "name": "Reenie Beanie", - "fontFamily": "Reenie Beanie, cursive", - "slug": "wp-font-lib-reenie-beanie", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/reeniebeanie/v16/z7NSdR76eDkaJKZJFkkjuvWxbP2_qoOgf_w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Reenie Beanie" - } - ] - }, - { - "name": "Reggae One", - "fontFamily": "Reggae One, system-ui", - "slug": "wp-font-lib-reggae-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/reggaeone/v15/~CgwKClJlZ2dhZSBPbmUgACoECAEYAQ==.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Reggae One" - } - ] - }, - { - "name": "Revalia", - "fontFamily": "Revalia, system-ui", - "slug": "wp-font-lib-revalia", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/revalia/v20/WwkexPimBE2-4ZPEeVruNIgJSNM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Revalia" - } - ] - }, - { - "name": "Rhodium Libre", - "fontFamily": "Rhodium Libre, serif", - "slug": "wp-font-lib-rhodium-libre", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rhodiumlibre/v17/1q2AY5adA0tn_ukeHcQHqpx6pETLeo2gm2U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rhodium Libre" - } - ] - }, - { - "name": "Ribeye", - "fontFamily": "Ribeye, system-ui", - "slug": "wp-font-lib-ribeye", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ribeye/v22/L0x8DFMxk1MP9R3RvPCmRSlUig.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ribeye" - } - ] - }, - { - "name": "Ribeye Marrow", - "fontFamily": "Ribeye Marrow, system-ui", - "slug": "wp-font-lib-ribeye-marrow", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ribeyemarrow/v22/GFDsWApshnqMRO2JdtRZ2d0vEAwTVWgKdtw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ribeye Marrow" - } - ] - }, - { - "name": "Righteous", - "fontFamily": "Righteous, system-ui", - "slug": "wp-font-lib-righteous", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/righteous/v14/1cXxaUPXBpj2rGoU7C9mj3uEicG01A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Righteous" - } - ] - }, - { - "name": "Risque", - "fontFamily": "Risque, system-ui", - "slug": "wp-font-lib-risque", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/risque/v20/VdGfAZUfHosahXxoCUYVBJ-T5g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Risque" - } - ] - }, - { - "name": "Road Rage", - "fontFamily": "Road Rage, system-ui", - "slug": "wp-font-lib-road-rage", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/roadrage/v5/6NUU8F2fKAOBKjjr4ekvtMYAwdRZfw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Road Rage" - } - ] - }, - { - "name": "Roboto", - "fontFamily": "Roboto, sans-serif", - "slug": "wp-font-lib-roboto", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1MmgWxPKTM1K9nz.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Roboto" - }, - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOiCnqEu92Fr1Mu51QrIzcXLsnzjYk.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Roboto" - }, - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5vAx05IsDqlA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Roboto" - }, - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjARc9AMX6lJBP.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Roboto" - }, - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Roboto" - }, - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu52xPKTM1K9nz.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Roboto" - }, - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9vAx05IsDqlA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Roboto" - }, - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51S7ABc9AMX6lJBP.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Roboto" - }, - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Roboto" - }, - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBhc9AMX6lJBP.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Roboto" - }, - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtvAx05IsDqlA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Roboto" - }, - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TLBBc9AMX6lJBP.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Roboto" - } - ] - }, - { - "name": "Roboto Condensed", - "fontFamily": "Roboto Condensed, sans-serif", - "slug": "wp-font-lib-roboto-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCMSbvtdYyQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Roboto Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYatlYcyRi4A.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Roboto Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVl2ZhZI2eCN5jzbjEETS9weq8-59WxDCs5cvI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Roboto Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7CAk8YvJEeg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Roboto Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCMSbvtdYyQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Roboto Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYatlYcyRi4A.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Roboto Condensed" - } - ] - }, - { - "name": "Roboto Flex", - "fontFamily": "Roboto Flex, sans-serif", - "slug": "wp-font-lib-roboto-flex", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/robotoflex/v9/NaN4epOXO_NexZs0b5QrzlOHb8wCikXpYqmZsWI-__OGfttPZktqc2VdZ80KvCLZaPcSBZtOx2MifRuWR28sPJtUMbsFEK6cRrleUx9Xgbm3WLHa_F4Ep4Fm0PN19Ik5Dntczx0wZGzhPlL1YNMYKbv9_1IQXOw7AiUJVXpRJ6cXW4O8TNGoXjC79QRyaLshNDUf3e0O-gn5rrZCu20YNYG0EACUTNK-QKavMlxGIY8dxef0jQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Roboto Flex" - } - ] - }, - { - "name": "Roboto Mono", - "fontFamily": "Roboto Mono, monospace", - "slug": "wp-font-lib-roboto-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vuPQ--5Ip2sSQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_XvqPQ--5Ip2sSQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_gPqPQ--5Ip2sSQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPQ--5Ip2sSQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_7PqPQ--5Ip2sSQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_AP2PQ--5Ip2sSQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_Of2PQ--5Ip2sSQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAeW9AJi8SZwt.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrnnAOW9AJi8SZwt.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrk5AOW9AJi8SZwt.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAOW9AJi8SZwt.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlVAOW9AJi8SZwt.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrm5B-W9AJi8SZwt.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrmAB-W9AJi8SZwt.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Roboto Mono" - } - ] - }, - { - "name": "Roboto Serif", - "fontFamily": "Roboto Serif, serif", - "slug": "wp-font-lib-roboto-serif", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliosp6d2Af5fR4k.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqotp6d2Af5fR4k.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElnQtp6d2Af5fR4k.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliotp6d2Af5fR4k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElhgtp6d2Af5fR4k.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElvQqp6d2Af5fR4k.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEls0qp6d2Af5fR4k.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqoqp6d2Af5fR4k.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEloMqp6d2Af5fR4k.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-V8BdxaV4nUFw.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-R8BdxaV4nUFw.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuEeR8BdxaV4nUFw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-R8BdxaV4nUFw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JufeR8BdxaV4nUFw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JukeN8BdxaV4nUFw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuqON8BdxaV4nUFw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-N8BdxaV4nUFw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Ju5uN8BdxaV4nUFw.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Roboto Serif" - } - ] - }, - { - "name": "Roboto Slab", - "fontFamily": "Roboto Slab, serif", - "slug": "wp-font-lib-roboto-slab", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojIWWaG5iddG-1A.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Roboto Slab" - }, - { - "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDISWaG5iddG-1A.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Roboto Slab" - }, - { - "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjo0oSWaG5iddG-1A.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Roboto Slab" - }, - { - "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISWaG5iddG-1A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Roboto Slab" - }, - { - "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjovoSWaG5iddG-1A.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Roboto Slab" - }, - { - "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoUoOWaG5iddG-1A.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Roboto Slab" - }, - { - "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OWaG5iddG-1A.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Roboto Slab" - }, - { - "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDIOWaG5iddG-1A.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Roboto Slab" - }, - { - "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoJYOWaG5iddG-1A.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Roboto Slab" - } - ] - }, - { - "name": "Rochester", - "fontFamily": "Rochester, cursive", - "slug": "wp-font-lib-rochester", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rochester/v18/6ae-4KCqVa4Zy6Fif-Uy31vWNTMwoQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rochester" - } - ] - }, - { - "name": "Rock 3D", - "fontFamily": "Rock 3D, system-ui", - "slug": "wp-font-lib-rock-3d", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rock3d/v10/yYLp0hrL0PCo651513SnwRnQyNI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rock 3D" - } - ] - }, - { - "name": "Rock Salt", - "fontFamily": "Rock Salt, cursive", - "slug": "wp-font-lib-rock-salt", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rocksalt/v18/MwQ0bhv11fWD6QsAVOZbsEk7hbBWrA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rock Salt" - } - ] - }, - { - "name": "RocknRoll One", - "fontFamily": "RocknRoll One, sans-serif", - "slug": "wp-font-lib-rocknroll-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rocknrollone/v10/kmK7ZqspGAfCeUiW6FFlmEC9guVhs7tfUxc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "RocknRoll One" - } - ] - }, - { - "name": "Rokkitt", - "fontFamily": "Rokkitt, serif", - "slug": "wp-font-lib-rokkitt", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rydpDLE76HvN6n.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pyd5DLE76HvN6n.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1qsd5DLE76HvN6n.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1ryd5DLE76HvN6n.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rAd5DLE76HvN6n.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oscJDLE76HvN6n.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oVcJDLE76HvN6n.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pycJDLE76HvN6n.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pbcJDLE76HvN6n.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NHiJGbqluc6nu9E.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NPiIGbqluc6nu9E.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NCaIGbqluc6nu9E.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NHiIGbqluc6nu9E.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NEqIGbqluc6nu9E.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NKaPGbqluc6nu9E.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NJ-PGbqluc6nu9E.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NPiPGbqluc6nu9E.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NNGPGbqluc6nu9E.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Rokkitt" - } - ] - }, - { - "name": "Romanesco", - "fontFamily": "Romanesco, cursive", - "slug": "wp-font-lib-romanesco", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/romanesco/v21/w8gYH2ozQOY7_r_J7mSn3HwLqOqSBg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Romanesco" - } - ] - }, - { - "name": "Ropa Sans", - "fontFamily": "Ropa Sans, sans-serif", - "slug": "wp-font-lib-ropa-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ropasans/v15/EYqxmaNOzLlWtsZSScyKWjloU5KP2g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ropa Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ropasans/v15/EYq3maNOzLlWtsZSScy6WDNscZef2mNE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Ropa Sans" - } - ] - }, - { - "name": "Rosario", - "fontFamily": "Rosario, sans-serif", - "slug": "wp-font-lib-rosario", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM69GCWczd-YnOzUD.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Rosario" - }, - { - "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68YCWczd-YnOzUD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rosario" - }, - { - "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68qCWczd-YnOzUD.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Rosario" - }, - { - "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6_GDmczd-YnOzUD.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Rosario" - }, - { - "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6__Dmczd-YnOzUD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rosario" - }, - { - "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQStFwfeIFPiUDn08.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Rosario" - }, - { - "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSo9wfeIFPiUDn08.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Rosario" - }, - { - "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSr1wfeIFPiUDn08.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Rosario" - }, - { - "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSlF3feIFPiUDn08.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Rosario" - }, - { - "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSmh3feIFPiUDn08.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Rosario" - } - ] - }, - { - "name": "Rosarivo", - "fontFamily": "Rosarivo, serif", - "slug": "wp-font-lib-rosarivo", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rosarivo/v20/PlI-Fl2lO6N9f8HaNAeC2nhMnNy5.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rosarivo" - }, - { - "src": "http://fonts.gstatic.com/s/rosarivo/v20/PlI4Fl2lO6N9f8HaNDeA0Hxumcy5ZX8.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Rosarivo" - } - ] - }, - { - "name": "Rouge Script", - "fontFamily": "Rouge Script, cursive", - "slug": "wp-font-lib-rouge-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rougescript/v14/LYjFdGbiklMoCIQOw1Ep3S4PVPXbUJWq9g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rouge Script" - } - ] - }, - { - "name": "Rowdies", - "fontFamily": "Rowdies, system-ui", - "slug": "wp-font-lib-rowdies", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rowdies/v15/ptRMTieMYPNBAK219hth5O7yKQNute8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Rowdies" - }, - { - "src": "http://fonts.gstatic.com/s/rowdies/v15/ptRJTieMYPNBAK21zrdJwObZNQo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rowdies" - }, - { - "src": "http://fonts.gstatic.com/s/rowdies/v15/ptRMTieMYPNBAK219gtm5O7yKQNute8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rowdies" - } - ] - }, - { - "name": "Rozha One", - "fontFamily": "Rozha One, serif", - "slug": "wp-font-lib-rozha-one", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rozhaone/v13/AlZy_zVFtYP12Zncg2khdXf4XB0Tow.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rozha One" - } - ] - }, - { - "name": "Rubik", - "fontFamily": "Rubik, sans-serif", - "slug": "wp-font-lib-rubik", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-WYi1UE80V4bVkA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4i1UE80V4bVkA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-NYi1UE80V4bVkA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-2Y-1UE80V4bVkA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-4I-1UE80V4bVkA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-h4-1UE80V4bVkA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-ro-1UE80V4bVkA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8sDE0UwdYPFkJ1O.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tdE0UwdYPFkJ1O.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tvE0UwdYPFkJ1O.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8uDFEUwdYPFkJ1O.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8u6FEUwdYPFkJ1O.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8vdFEUwdYPFkJ1O.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8v0FEUwdYPFkJ1O.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Rubik" - } - ] - }, - { - "name": "Rubik 80s Fade", - "fontFamily": "Rubik 80s Fade, system-ui", - "slug": "wp-font-lib-rubik-80s-fade", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubik80sfade/v2/U9MF6dW37nLSmnwZXyoV-uPXUhHwkbL8IHcK.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik 80s Fade" - } - ] - }, - { - "name": "Rubik Beastly", - "fontFamily": "Rubik Beastly, system-ui", - "slug": "wp-font-lib-rubik-beastly", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikbeastly/v10/0QImMXRd5oOmSC2ZQ7o9653X07z8_ApHqqk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Beastly" - } - ] - }, - { - "name": "Rubik Bubbles", - "fontFamily": "Rubik Bubbles, system-ui", - "slug": "wp-font-lib-rubik-bubbles", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikbubbles/v3/JIA1UVdwbHFJtwA7Us1BPFbRNTENfDxyRXI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Bubbles" - } - ] - }, - { - "name": "Rubik Burned", - "fontFamily": "Rubik Burned, system-ui", - "slug": "wp-font-lib-rubik-burned", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikburned/v1/Jqzk5TmOVOqQHihKqPpscqniHQuaCY5ZSg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Burned" - } - ] - }, - { - "name": "Rubik Dirt", - "fontFamily": "Rubik Dirt, system-ui", - "slug": "wp-font-lib-rubik-dirt", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikdirt/v2/DtVmJxC7WLEj1uIXEWAdulwm6gDXvwE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Dirt" - } - ] - }, - { - "name": "Rubik Distressed", - "fontFamily": "Rubik Distressed, system-ui", - "slug": "wp-font-lib-rubik-distressed", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikdistressed/v1/GFDxWBdsmnqAVqjtUsZf2dcrQ2ldcWAhatVBaGM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Distressed" - } - ] - }, - { - "name": "Rubik Gemstones", - "fontFamily": "Rubik Gemstones, system-ui", - "slug": "wp-font-lib-rubik-gemstones", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikgemstones/v1/zrf90HrL0-_8Xb4DFM2rUkWbOVrOiCnGqi1GMw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Gemstones" - } - ] - }, - { - "name": "Rubik Glitch", - "fontFamily": "Rubik Glitch, system-ui", - "slug": "wp-font-lib-rubik-glitch", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikglitch/v2/qkBSXv8b_srFRYQVYrDKh9ZvmC7HONiSFQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Glitch" - } - ] - }, - { - "name": "Rubik Iso", - "fontFamily": "Rubik Iso, system-ui", - "slug": "wp-font-lib-rubik-iso", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikiso/v2/x3dickHUfr-S4VAI4sABfPACvy_1BA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Iso" - } - ] - }, - { - "name": "Rubik Marker Hatch", - "fontFamily": "Rubik Marker Hatch, system-ui", - "slug": "wp-font-lib-rubik-marker-hatch", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikmarkerhatch/v1/QldTNSFQsh0B_bFXXWv6LAt-jswapJHQDL4iw0H6zw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Marker Hatch" - } - ] - }, - { - "name": "Rubik Maze", - "fontFamily": "Rubik Maze, system-ui", - "slug": "wp-font-lib-rubik-maze", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikmaze/v2/xMQRuF9ZVa2ftiJEavXSAX7inS-bxV4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Maze" - } - ] - }, - { - "name": "Rubik Microbe", - "fontFamily": "Rubik Microbe, system-ui", - "slug": "wp-font-lib-rubik-microbe", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikmicrobe/v2/UqyWK8oPP3hjw6ANS9rM3PsZcs8aaKgiauE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Microbe" - } - ] - }, - { - "name": "Rubik Mono One", - "fontFamily": "Rubik Mono One, sans-serif", - "slug": "wp-font-lib-rubik-mono-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikmonoone/v15/UqyJK8kPP3hjw6ANTdfRk9YSN-8wRqQrc_j9.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Mono One" - } - ] - }, - { - "name": "Rubik Moonrocks", - "fontFamily": "Rubik Moonrocks, system-ui", - "slug": "wp-font-lib-rubik-moonrocks", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikmoonrocks/v2/845ANMAmAI2VUZMLu_W0M7HqlDHnXcD7JGy1Sw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Moonrocks" - } - ] - }, - { - "name": "Rubik Pixels", - "fontFamily": "Rubik Pixels, system-ui", - "slug": "wp-font-lib-rubik-pixels", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikpixels/v2/SlGXmQOaupkIeSx4CEpB7AdSaBYRagrQrA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Pixels" - } - ] - }, - { - "name": "Rubik Puddles", - "fontFamily": "Rubik Puddles, system-ui", - "slug": "wp-font-lib-rubik-puddles", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikpuddles/v2/1Ptog8bYX_qGnkLkrU5MJsQcJfC0wVMT-aE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Puddles" - } - ] - }, - { - "name": "Rubik Spray Paint", - "fontFamily": "Rubik Spray Paint, system-ui", - "slug": "wp-font-lib-rubik-spray-paint", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikspraypaint/v1/WnzhHBAoeBPUDTB4EWR82y6EXWPH-Ro-QoaBZQxP.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Spray Paint" - } - ] - }, - { - "name": "Rubik Storm", - "fontFamily": "Rubik Storm, system-ui", - "slug": "wp-font-lib-rubik-storm", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikstorm/v1/eLGYP-_uPgO5Ag7ju9JaouL9T2Xh9NQk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Storm" - } - ] - }, - { - "name": "Rubik Vinyl", - "fontFamily": "Rubik Vinyl, system-ui", - "slug": "wp-font-lib-rubik-vinyl", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikvinyl/v1/iJWABXKIfDnIV4mQ5BfjvUXexox2ztOU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Vinyl" - } - ] - }, - { - "name": "Rubik Wet Paint", - "fontFamily": "Rubik Wet Paint, system-ui", - "slug": "wp-font-lib-rubik-wet-paint", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikwetpaint/v2/HTx0L20uMDGHgdULcpTF3Oe4d_-F-zz313DuvQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Wet Paint" - } - ] - }, - { - "name": "Ruda", - "fontFamily": "Ruda, sans-serif", - "slug": "wp-font-lib-ruda", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJFsi_-2KiSGg-H.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ruda" - }, - { - "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJ3si_-2KiSGg-H.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Ruda" - }, - { - "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKbtS_-2KiSGg-H.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Ruda" - }, - { - "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKitS_-2KiSGg-H.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Ruda" - }, - { - "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLFtS_-2KiSGg-H.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Ruda" - }, - { - "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLstS_-2KiSGg-H.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Ruda" - } - ] - }, - { - "name": "Rufina", - "fontFamily": "Rufina, serif", - "slug": "wp-font-lib-rufina", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rufina/v13/Yq6V-LyURyLy-aKyoxRktOdClg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rufina" - }, - { - "src": "http://fonts.gstatic.com/s/rufina/v13/Yq6W-LyURyLy-aKKHztAvMxenxE0SA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rufina" - } - ] - }, - { - "name": "Ruge Boogie", - "fontFamily": "Ruge Boogie, cursive", - "slug": "wp-font-lib-ruge-boogie", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rugeboogie/v25/JIA3UVFwbHRF_GIWSMhKNROiPzUveSxy.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ruge Boogie" - } - ] - }, - { - "name": "Ruluko", - "fontFamily": "Ruluko, sans-serif", - "slug": "wp-font-lib-ruluko", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ruluko/v21/xMQVuFNZVaODtm0pC6WzKX_QmA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ruluko" - } - ] - }, - { - "name": "Rum Raisin", - "fontFamily": "Rum Raisin, sans-serif", - "slug": "wp-font-lib-rum-raisin", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rumraisin/v20/nwpRtKu3Ih8D5avB4h2uJ3-IywA7eMM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rum Raisin" - } - ] - }, - { - "name": "Ruslan Display", - "fontFamily": "Ruslan Display, system-ui", - "slug": "wp-font-lib-ruslan-display", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ruslandisplay/v22/Gw6jwczl81XcIZuckK_e3UpfdzxrldyFvm1n.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ruslan Display" - } - ] - }, - { - "name": "Russo One", - "fontFamily": "Russo One, sans-serif", - "slug": "wp-font-lib-russo-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/russoone/v14/Z9XUDmZRWg6M1LvRYsH-yMOInrib9Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Russo One" - } - ] - }, - { - "name": "Ruthie", - "fontFamily": "Ruthie, cursive", - "slug": "wp-font-lib-ruthie", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ruthie/v24/gokvH63sGkdqXuU9lD53Q2u_mQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ruthie" - } - ] - }, - { - "name": "Rye", - "fontFamily": "Rye, system-ui", - "slug": "wp-font-lib-rye", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rye/v13/r05XGLJT86YDFpTsXOqx4w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rye" - } - ] - }, - { - "name": "STIX Two Text", - "fontFamily": "STIX Two Text, serif", - "slug": "wp-font-lib-stix-two-text", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yihg2SOYWxFMN1WD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "STIX Two Text" - }, - { - "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YihS2SOYWxFMN1WD.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "STIX Two Text" - }, - { - "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yii-3iOYWxFMN1WD.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "STIX Two Text" - }, - { - "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YiiH3iOYWxFMN1WD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "STIX Two Text" - }, - { - "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omsvbURVuMkWDmSo.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "STIX Two Text" - }, - { - "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omvnbURVuMkWDmSo.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "STIX Two Text" - }, - { - "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omhXcURVuMkWDmSo.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "STIX Two Text" - }, - { - "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omizcURVuMkWDmSo.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "STIX Two Text" - } - ] - }, - { - "name": "Sacramento", - "fontFamily": "Sacramento, cursive", - "slug": "wp-font-lib-sacramento", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sacramento/v13/buEzpo6gcdjy0EiZMBUG0CoV_NxLeiw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sacramento" - } - ] - }, - { - "name": "Sahitya", - "fontFamily": "Sahitya, serif", - "slug": "wp-font-lib-sahitya", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sahitya/v17/6qLAKZkOuhnuqlJAaScFPywEDnI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sahitya" - }, - { - "src": "http://fonts.gstatic.com/s/sahitya/v17/6qLFKZkOuhnuqlJAUZsqGyQvEnvSexI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sahitya" - } - ] - }, - { - "name": "Sail", - "fontFamily": "Sail, system-ui", - "slug": "wp-font-lib-sail", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sail/v16/DPEjYwiBxwYJFBTDADYAbvw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sail" - } - ] - }, - { - "name": "Saira", - "fontFamily": "Saira, sans-serif", - "slug": "wp-font-lib-saira", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rDosg7lwYmUVY.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rCosg7lwYmUVY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7wTCosg7lwYmUVY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rCosg7lwYmUVY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA72jCosg7lwYmUVY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA74TFosg7lwYmUVY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA773Fosg7lwYmUVY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rFosg7lwYmUVY.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7_PFosg7lwYmUVY.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSooxkyQjQVYmxA.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByosxkyQjQVYmxA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBFIsxkyQjQVYmxA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSosxkyQjQVYmxA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBeIsxkyQjQVYmxA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBlIwxkyQjQVYmxA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBrYwxkyQjQVYmxA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByowxkyQjQVYmxA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKB44wxkyQjQVYmxA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Saira" - } - ] - }, - { - "name": "Saira Condensed", - "fontFamily": "Saira Condensed, sans-serif", - "slug": "wp-font-lib-saira-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRMQgErUN8XuHNEtX81i9TmEkrnwetA2omSrzS8.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Saira Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnbcpg8Keepi2lHw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Saira Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnCclg8Keepi2lHw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Saira Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJROQgErUN8XuHNEtX81i9TmEkrfpeFE-IyCrw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Saira Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnUchg8Keepi2lHw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Saira Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnfc9g8Keepi2lHw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Saira Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5g8Keepi2lHw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Saira Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1g8Keepi2lHw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Saira Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxg8Keepi2lHw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Saira Condensed" - } - ] - }, - { - "name": "Saira Extra Condensed", - "fontFamily": "Saira Extra Condensed, sans-serif", - "slug": "wp-font-lib-saira-extra-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFsOHYr-vcC7h8MklGBkrvmUG9rbpkisrTri0jx9i5ss3a3.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrJ2nR3ABgum-uoQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrQ2rR3ABgum-uoQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT70L11Ct8sw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrG2vR3ABgum-uoQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrN2zR3ABgum-uoQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrU23R3ABgum-uoQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrT27R3ABgum-uoQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTra2_R3ABgum-uoQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed" - } - ] - }, - { - "name": "Saira Semi Condensed", - "fontFamily": "Saira Semi Condensed, sans-serif", - "slug": "wp-font-lib-saira-semi-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MN6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXdvaOM8rXT-8V8.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfDScMWg3j36Ebz.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXenSsMWg3j36Ebz.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8LYuceqGT-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXf_S8MWg3j36Ebz.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfTTMMWg3j36Ebz.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXe3TcMWg3j36Ebz.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXerTsMWg3j36Ebz.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXePT8MWg3j36Ebz.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed" - } - ] - }, - { - "name": "Saira Stencil One", - "fontFamily": "Saira Stencil One, system-ui", - "slug": "wp-font-lib-saira-stencil-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sairastencilone/v14/SLXSc03I6HkvZGJ1GvvipLoYSTEL9AsMawif2YQ2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Saira Stencil One" - } - ] - }, - { - "name": "Salsa", - "fontFamily": "Salsa, system-ui", - "slug": "wp-font-lib-salsa", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/salsa/v17/gNMKW3FiRpKj-imY8ncKEZez.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Salsa" - } - ] - }, - { - "name": "Sanchez", - "fontFamily": "Sanchez, serif", - "slug": "wp-font-lib-sanchez", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sanchez/v13/Ycm2sZJORluHnXbITm5b_BwE1l0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sanchez" - }, - { - "src": "http://fonts.gstatic.com/s/sanchez/v13/Ycm0sZJORluHnXbIfmxR-D4Bxl3gkw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sanchez" - } - ] - }, - { - "name": "Sancreek", - "fontFamily": "Sancreek, system-ui", - "slug": "wp-font-lib-sancreek", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sancreek/v23/pxiHypAnsdxUm159X7D-XV9NEe-K.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sancreek" - } - ] - }, - { - "name": "Sansita", - "fontFamily": "Sansita, sans-serif", - "slug": "wp-font-lib-sansita", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sansita/v11/QldONTRRphEb_-V7HBm7TXFf3qw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sansita" - }, - { - "src": "http://fonts.gstatic.com/s/sansita/v11/QldMNTRRphEb_-V7LBuxSVNazqx2xg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sansita" - }, - { - "src": "http://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JKWUaXl0wqVv3_g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sansita" - }, - { - "src": "http://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJ9Xx-xodqz_joDQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Sansita" - }, - { - "src": "http://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JLmXaXl0wqVv3_g.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sansita" - }, - { - "src": "http://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJ6X9-xodqz_joDQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Sansita" - }, - { - "src": "http://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JJ2WaXl0wqVv3_g.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Sansita" - }, - { - "src": "http://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJzX5-xodqz_joDQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Sansita" - } - ] - }, - { - "name": "Sansita Swashed", - "fontFamily": "Sansita Swashed, system-ui", - "slug": "wp-font-lib-sansita-swashed", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW-ppbToVehmEa4Q.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sansita Swashed" - }, - { - "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW7RpbToVehmEa4Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sansita Swashed" - }, - { - "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW4ZpbToVehmEa4Q.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sansita Swashed" - }, - { - "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW2pubToVehmEa4Q.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sansita Swashed" - }, - { - "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW1NubToVehmEa4Q.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sansita Swashed" - }, - { - "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWzRubToVehmEa4Q.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sansita Swashed" - }, - { - "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWx1ubToVehmEa4Q.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Sansita Swashed" - } - ] - }, - { - "name": "Sarabun", - "fontFamily": "Sarabun, sans-serif", - "slug": "wp-font-lib-sarabun", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVhJx26TKEr37c9YHZJmnYI5gnOpg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVnJx26TKEr37c9aBBx_nwMxAzephhN.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YNpoulwm6gDXvwE.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxUl0s7iLSrwFUlw.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YL5rulwm6gDXvwE.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxNl4s7iLSrwFUlw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVjJx26TKEr37c9WBJDnlQN9gk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVhJx26TKEr37c9aBBJmnYI5gnOpg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YOZqulwm6gDXvwE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxbl8s7iLSrwFUlw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YMptulwm6gDXvwE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxQlgs7iLSrwFUlw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YK5sulwm6gDXvwE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxJlks7iLSrwFUlw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YLJvulwm6gDXvwE.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxOlos7iLSrwFUlw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Sarabun" - } - ] - }, - { - "name": "Sarala", - "fontFamily": "Sarala, sans-serif", - "slug": "wp-font-lib-sarala", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sarala/v10/uK_y4riEZv4o1w9RCh0TMv6EXw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sarala" - }, - { - "src": "http://fonts.gstatic.com/s/sarala/v10/uK_x4riEZv4o1w9ptjI3OtWYVkMpXA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sarala" - } - ] - }, - { - "name": "Sarina", - "fontFamily": "Sarina, system-ui", - "slug": "wp-font-lib-sarina", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sarina/v21/-F6wfjF3ITQwasLhLkDUriBQxw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sarina" - } - ] - }, - { - "name": "Sarpanch", - "fontFamily": "Sarpanch, sans-serif", - "slug": "wp-font-lib-sarpanch", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sarpanch/v11/hESy6Xt4NCpRuk6Pzh2ARIrX_20n.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sarpanch" - }, - { - "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziV0ba7f1HEuRHkM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sarpanch" - }, - { - "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziVYaq7f1HEuRHkM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sarpanch" - }, - { - "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziU8a67f1HEuRHkM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sarpanch" - }, - { - "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziUgaK7f1HEuRHkM.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sarpanch" - }, - { - "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziUEaa7f1HEuRHkM.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Sarpanch" - } - ] - }, - { - "name": "Sassy Frass", - "fontFamily": "Sassy Frass, cursive", - "slug": "wp-font-lib-sassy-frass", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sassyfrass/v5/LhWhMVrGOe0FLb97BjhsE99dGNWQg_am.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sassy Frass" - } - ] - }, - { - "name": "Satisfy", - "fontFamily": "Satisfy, cursive", - "slug": "wp-font-lib-satisfy", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/satisfy/v17/rP2Hp2yn6lkG50LoOZSCHBeHFl0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Satisfy" - } - ] - }, - { - "name": "Sawarabi Gothic", - "fontFamily": "Sawarabi Gothic, sans-serif", - "slug": "wp-font-lib-sawarabi-gothic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sawarabigothic/v12/x3d4ckfVaqqa-BEj-I9mE65u3k3NBSk3E2YljQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sawarabi Gothic" - } - ] - }, - { - "name": "Sawarabi Mincho", - "fontFamily": "Sawarabi Mincho, serif", - "slug": "wp-font-lib-sawarabi-mincho", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sawarabimincho/v17/8QIRdiDaitzr7brc8ahpxt6GcIJTLahP46UDUw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sawarabi Mincho" - } - ] - }, - { - "name": "Scada", - "fontFamily": "Scada, sans-serif", - "slug": "wp-font-lib-scada", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/scada/v15/RLpxK5Pv5qumeWJoxzUobkvv.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Scada" - }, - { - "src": "http://fonts.gstatic.com/s/scada/v15/RLp_K5Pv5qumeVJqzTEKa1vvffg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Scada" - }, - { - "src": "http://fonts.gstatic.com/s/scada/v15/RLp8K5Pv5qumeVrU6BEgRVfmZOE5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Scada" - }, - { - "src": "http://fonts.gstatic.com/s/scada/v15/RLp6K5Pv5qumeVJq9Y0lT1PEYfE5p6g.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Scada" - } - ] - }, - { - "name": "Scheherazade New", - "fontFamily": "Scheherazade New, serif", - "slug": "wp-font-lib-scheherazade-new", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/scheherazadenew/v15/4UaZrFhTvxVnHDvUkUiHg8jprP4DCwNsOl4p5Is.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Scheherazade New" - }, - { - "src": "http://fonts.gstatic.com/s/scheherazadenew/v15/4UaerFhTvxVnHDvUkUiHg8jprP4DM_dFHlYC-IKnoSE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Scheherazade New" - }, - { - "src": "http://fonts.gstatic.com/s/scheherazadenew/v15/4UaerFhTvxVnHDvUkUiHg8jprP4DM9tCHlYC-IKnoSE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Scheherazade New" - }, - { - "src": "http://fonts.gstatic.com/s/scheherazadenew/v15/4UaerFhTvxVnHDvUkUiHg8jprP4DM79DHlYC-IKnoSE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Scheherazade New" - } - ] - }, - { - "name": "Schibsted Grotesk", - "fontFamily": "Schibsted Grotesk, sans-serif", - "slug": "wp-font-lib-schibsted-grotesk", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNIsEAT8JuXFGVOQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Schibsted Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNEMEAT8JuXFGVOQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Schibsted Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMN_MYAT8JuXFGVOQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Schibsted Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNxcYAT8JuXFGVOQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Schibsted Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNosYAT8JuXFGVOQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Schibsted Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNi8YAT8JuXFGVOQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Schibsted Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oLoDMhqflSFOTXs.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Schibsted Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oLaDMhqflSFOTXs.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Schibsted Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oI2C8hqflSFOTXs.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Schibsted Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oIPC8hqflSFOTXs.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Schibsted Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oJoC8hqflSFOTXs.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Schibsted Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oJBC8hqflSFOTXs.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Schibsted Grotesk" - } - ] - }, - { - "name": "Schoolbell", - "fontFamily": "Schoolbell, cursive", - "slug": "wp-font-lib-schoolbell", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/schoolbell/v18/92zQtBZWOrcgoe-fgnJIVxIQ6mRqfiQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Schoolbell" - } - ] - }, - { - "name": "Scope One", - "fontFamily": "Scope One, serif", - "slug": "wp-font-lib-scope-one", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/scopeone/v14/WBLnrEXKYFlGHrOKmGD1W0_MJMGxiQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Scope One" - } - ] - }, - { - "name": "Seaweed Script", - "fontFamily": "Seaweed Script, system-ui", - "slug": "wp-font-lib-seaweed-script", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/seaweedscript/v13/bx6cNx6Tne2pxOATYE8C_Rsoe0WJ-KcGVbLW.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Seaweed Script" - } - ] - }, - { - "name": "Secular One", - "fontFamily": "Secular One, sans-serif", - "slug": "wp-font-lib-secular-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/secularone/v11/8QINdiTajsj_87rMuMdKypDlMul7LJpK.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Secular One" - } - ] - }, - { - "name": "Sedgwick Ave", - "fontFamily": "Sedgwick Ave, cursive", - "slug": "wp-font-lib-sedgwick-ave", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sedgwickave/v12/uK_04rKEYuguzAcSYRdWTJq8Xmg1Vcf5JA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sedgwick Ave" - } - ] - }, - { - "name": "Sedgwick Ave Display", - "fontFamily": "Sedgwick Ave Display, cursive", - "slug": "wp-font-lib-sedgwick-ave-display", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sedgwickavedisplay/v19/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2czd-YnOzUD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sedgwick Ave Display" - } - ] - }, - { - "name": "Sen", - "fontFamily": "Sen, sans-serif", - "slug": "wp-font-lib-sen", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sen/v7/6xKjdSxYI9_Hm_-MImrpLQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sen" - }, - { - "src": "http://fonts.gstatic.com/s/sen/v7/6xKudSxYI9__J9CoKkH1JHUQSQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sen" - }, - { - "src": "http://fonts.gstatic.com/s/sen/v7/6xKudSxYI9__O9OoKkH1JHUQSQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sen" - } - ] - }, - { - "name": "Send Flowers", - "fontFamily": "Send Flowers, cursive", - "slug": "wp-font-lib-send-flowers", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sendflowers/v2/If2PXTjtZS-0Xqy13uCQSULvxwjjouU1iw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Send Flowers" - } - ] - }, - { - "name": "Sevillana", - "fontFamily": "Sevillana, system-ui", - "slug": "wp-font-lib-sevillana", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sevillana/v21/KFOlCnWFscmDt1Bfiy1vAx05IsDqlA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sevillana" - } - ] - }, - { - "name": "Seymour One", - "fontFamily": "Seymour One, sans-serif", - "slug": "wp-font-lib-seymour-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/seymourone/v20/4iCp6Khla9xbjQpoWGGd0myIPYBvgpUI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Seymour One" - } - ] - }, - { - "name": "Shadows Into Light", - "fontFamily": "Shadows Into Light, cursive", - "slug": "wp-font-lib-shadows-into-light", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shadowsintolight/v15/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDcsr4xzSMYA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shadows Into Light" - } - ] - }, - { - "name": "Shadows Into Light Two", - "fontFamily": "Shadows Into Light Two, cursive", - "slug": "wp-font-lib-shadows-into-light-two", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shadowsintolighttwo/v14/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlAvNGLNnIF0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shadows Into Light Two" - } - ] - }, - { - "name": "Shalimar", - "fontFamily": "Shalimar, cursive", - "slug": "wp-font-lib-shalimar", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shalimar/v5/uU9MCBoE6I6iNWFUvTPx8PCOg0uX.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shalimar" - } - ] - }, - { - "name": "Shantell Sans", - "fontFamily": "Shantell Sans, system-ui", - "slug": "wp-font-lib-shantell-sans", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYQiS2i2yPwxjyRN.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Shantell Sans" - }, - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYR8S2i2yPwxjyRN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shantell Sans" - }, - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYROS2i2yPwxjyRN.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Shantell Sans" - }, - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYSiTGi2yPwxjyRN.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Shantell Sans" - }, - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYSbTGi2yPwxjyRN.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Shantell Sans" - }, - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYT8TGi2yPwxjyRN.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Shantell Sans" - }, - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CN71wvgTijRNYgQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Shantell Sans" - }, - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CID1wvgTijRNYgQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Shantell Sans" - }, - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CLL1wvgTijRNYgQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Shantell Sans" - }, - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CF7ywvgTijRNYgQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Shantell Sans" - }, - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CGfywvgTijRNYgQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Shantell Sans" - }, - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CADywvgTijRNYgQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Shantell Sans" - } - ] - }, - { - "name": "Shanti", - "fontFamily": "Shanti, sans-serif", - "slug": "wp-font-lib-shanti", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shanti/v23/t5thIREMM4uSDgzgU0ezpKfwzA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shanti" - } - ] - }, - { - "name": "Share", - "fontFamily": "Share, system-ui", - "slug": "wp-font-lib-share", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/share/v16/i7dEIFliZjKNF5VNHLq2cV5d.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Share" - }, - { - "src": "http://fonts.gstatic.com/s/share/v16/i7dKIFliZjKNF6VPFr6UdE5dWFM.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Share" - }, - { - "src": "http://fonts.gstatic.com/s/share/v16/i7dJIFliZjKNF63xM56-WkJUQUq7.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Share" - }, - { - "src": "http://fonts.gstatic.com/s/share/v16/i7dPIFliZjKNF6VPLgK7UEZ2RFq7AwU.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Share" - } - ] - }, - { - "name": "Share Tech", - "fontFamily": "Share Tech, sans-serif", - "slug": "wp-font-lib-share-tech", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sharetech/v17/7cHtv4Uyi5K0OeZ7bohUwHoDmTcibrA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Share Tech" - } - ] - }, - { - "name": "Share Tech Mono", - "fontFamily": "Share Tech Mono, monospace", - "slug": "wp-font-lib-share-tech-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sharetechmono/v15/J7aHnp1uDWRBEqV98dVQztYldFc7pAsEIc3Xew.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Share Tech Mono" - } - ] - }, - { - "name": "Shippori Antique", - "fontFamily": "Shippori Antique, sans-serif", - "slug": "wp-font-lib-shippori-antique", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shipporiantique/v8/-F6qfid3KC8pdMyzR0qRyFUht11v8ldPg-IUDNg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shippori Antique" - } - ] - }, - { - "name": "Shippori Antique B1", - "fontFamily": "Shippori Antique B1, sans-serif", - "slug": "wp-font-lib-shippori-antique-b1", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shipporiantiqueb1/v8/2Eb7L_JwClR7Zl_UAKZ0mUHw3oMKd40grRFCj9-5Y8Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shippori Antique B1" - } - ] - }, - { - "name": "Shippori Mincho", - "fontFamily": "Shippori Mincho, serif", - "slug": "wp-font-lib-shippori-mincho", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGGAZweH5EbgHY6YExcZfDoj0BA2_-C7LoS7g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho" - }, - { - "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4L9am5JEO5--2zg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho" - }, - { - "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4A9Gm5JEO5--2zg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho" - }, - { - "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4Z9Cm5JEO5--2zg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho" - }, - { - "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4e9Om5JEO5--2zg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho" - } - ] - }, - { - "name": "Shippori Mincho B1", - "fontFamily": "Shippori Mincho B1, serif", - "slug": "wp-font-lib-shippori-mincho-b1", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChQKElNoaXBwb3JpIE1pbmNobyBCMSAAKgQIARgB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho B1" - }, - { - "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRj0AyAAKgQIARgB.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho B1" - }, - { - "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRjYBCAAKgQIARgB.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho B1" - }, - { - "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRi8BSAAKgQIARgB.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho B1" - }, - { - "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRigBiAAKgQIARgB.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho B1" - } - ] - }, - { - "name": "Shizuru", - "fontFamily": "Shizuru, system-ui", - "slug": "wp-font-lib-shizuru", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shizuru/v10/O4ZSFGfvnxFiCA3i30IJlgUTj2A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shizuru" - } - ] - }, - { - "name": "Shojumaru", - "fontFamily": "Shojumaru, system-ui", - "slug": "wp-font-lib-shojumaru", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shojumaru/v15/rax_HiWfutkLLnaKCtlMBBJek0vA8A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shojumaru" - } - ] - }, - { - "name": "Short Stack", - "fontFamily": "Short Stack, cursive", - "slug": "wp-font-lib-short-stack", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shortstack/v15/bMrzmS2X6p0jZC6EcmPFX-SScX8D0nq6.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Short Stack" - } - ] - }, - { - "name": "Shrikhand", - "fontFamily": "Shrikhand, system-ui", - "slug": "wp-font-lib-shrikhand", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shrikhand/v12/a8IbNovtLWfR7T7bMJwbBIiQ0zhMtA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shrikhand" - } - ] - }, - { - "name": "Siemreap", - "fontFamily": "Siemreap, system-ui", - "slug": "wp-font-lib-siemreap", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/siemreap/v24/Gg82N5oFbgLvHAfNl2YbnA8DLXpe.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Siemreap" - } - ] - }, - { - "name": "Sigmar", - "fontFamily": "Sigmar, system-ui", - "slug": "wp-font-lib-sigmar", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sigmar/v3/hv-XlzJgIE8a85pUbWY3MTFgVg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sigmar" - } - ] - }, - { - "name": "Sigmar One", - "fontFamily": "Sigmar One, system-ui", - "slug": "wp-font-lib-sigmar-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sigmarone/v16/co3DmWZ8kjZuErj9Ta3dk6Pjp3Di8U0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sigmar One" - } - ] - }, - { - "name": "Signika", - "fontFamily": "Signika, sans-serif", - "slug": "wp-font-lib-signika", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tIJHJbGhs_cfKe1.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Signika" - }, - { - "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJXHJbGhs_cfKe1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Signika" - }, - { - "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJlHJbGhs_cfKe1.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Signika" - }, - { - "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKJG5bGhs_cfKe1.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Signika" - }, - { - "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKwG5bGhs_cfKe1.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Signika" - } - ] - }, - { - "name": "Signika Negative", - "fontFamily": "Signika Negative, sans-serif", - "slug": "wp-font-lib-signika-negative", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAr5S73st9hiuEq8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Signika Negative" - }, - { - "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqnS73st9hiuEq8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Signika Negative" - }, - { - "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqVS73st9hiuEq8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Signika Negative" - }, - { - "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAp5TL3st9hiuEq8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Signika Negative" - }, - { - "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RApATL3st9hiuEq8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Signika Negative" - } - ] - }, - { - "name": "Silkscreen", - "fontFamily": "Silkscreen, system-ui", - "slug": "wp-font-lib-silkscreen", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/silkscreen/v1/m8JXjfVPf62XiF7kO-i9ULRvamODxdI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Silkscreen" - }, - { - "src": "http://fonts.gstatic.com/s/silkscreen/v1/m8JUjfVPf62XiF7kO-i9aAhATmuo2dudFvc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Silkscreen" - } - ] - }, - { - "name": "Simonetta", - "fontFamily": "Simonetta, system-ui", - "slug": "wp-font-lib-simonetta", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/simonetta/v24/x3dickHVYrCU5BU15c4BfPACvy_1BA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Simonetta" - }, - { - "src": "http://fonts.gstatic.com/s/simonetta/v24/x3dkckHVYrCU5BU15c4xfvoGnSrlBBsy.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Simonetta" - }, - { - "src": "http://fonts.gstatic.com/s/simonetta/v24/x3dnckHVYrCU5BU15c45-N0mtwTpDQIrGg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Simonetta" - }, - { - "src": "http://fonts.gstatic.com/s/simonetta/v24/x3d5ckHVYrCU5BU15c4xfsKCsA7tLwc7Gn88.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Simonetta" - } - ] - }, - { - "name": "Single Day", - "fontFamily": "Single Day, system-ui", - "slug": "wp-font-lib-single-day", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/singleday/v15/LYjHdGDjlEgoAcF95EI5jVoFUNfeQJU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Single Day" - } - ] - }, - { - "name": "Sintony", - "fontFamily": "Sintony, sans-serif", - "slug": "wp-font-lib-sintony", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sintony/v13/XoHm2YDqR7-98cVUITQnu98ojjs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sintony" - }, - { - "src": "http://fonts.gstatic.com/s/sintony/v13/XoHj2YDqR7-98cVUGYgIn9cDkjLp6C8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sintony" - } - ] - }, - { - "name": "Sirin Stencil", - "fontFamily": "Sirin Stencil, system-ui", - "slug": "wp-font-lib-sirin-stencil", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sirinstencil/v21/mem4YaWwznmLx-lzGfN7MdRydchGBq6al6o.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sirin Stencil" - } - ] - }, - { - "name": "Six Caps", - "fontFamily": "Six Caps, sans-serif", - "slug": "wp-font-lib-six-caps", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sixcaps/v16/6ae_4KGrU7VR7bNmabcS9XXaPCop.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Six Caps" - } - ] - }, - { - "name": "Skranji", - "fontFamily": "Skranji, system-ui", - "slug": "wp-font-lib-skranji", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/skranji/v13/OZpDg_dtriVFNerMYzuuklTm3Ek.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Skranji" - }, - { - "src": "http://fonts.gstatic.com/s/skranji/v13/OZpGg_dtriVFNerMW4eBtlzNwED-b4g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Skranji" - } - ] - }, - { - "name": "Slabo 13px", - "fontFamily": "Slabo 13px, serif", - "slug": "wp-font-lib-slabo-13px", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/slabo13px/v13/11hEGp_azEvXZUdSBzzRcKer2wkYnvI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Slabo 13px" - } - ] - }, - { - "name": "Slabo 27px", - "fontFamily": "Slabo 27px, serif", - "slug": "wp-font-lib-slabo-27px", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/slabo27px/v12/mFT0WbgBwKPR_Z4hGN2qsxgJ1EJ7i90.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Slabo 27px" - } - ] - }, - { - "name": "Slackey", - "fontFamily": "Slackey, system-ui", - "slug": "wp-font-lib-slackey", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/slackey/v24/N0bV2SdQO-5yM0-dKlRaJdbWgdY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Slackey" - } - ] - }, - { - "name": "Slackside One", - "fontFamily": "Slackside One, cursive", - "slug": "wp-font-lib-slackside-one", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/slacksideone/v8/EJRQQgMrXdcGsiBuvnRxodTwVy7VocNB6Iw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Slackside One" - } - ] - }, - { - "name": "Smokum", - "fontFamily": "Smokum, system-ui", - "slug": "wp-font-lib-smokum", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/smokum/v24/TK3iWkUbAhopmrdGHjUHte5fKg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Smokum" - } - ] - }, - { - "name": "Smooch", - "fontFamily": "Smooch, cursive", - "slug": "wp-font-lib-smooch", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/smooch/v5/o-0LIps4xW8U1xUBjqp_6hVdYg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Smooch" - } - ] - }, - { - "name": "Smooch Sans", - "fontFamily": "Smooch Sans, sans-serif", - "slug": "wp-font-lib-smooch-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUFodqIeNlzayg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Smooch Sans" - }, - { - "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUBodqIeNlzayg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Smooch Sans" - }, - { - "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oin0BodqIeNlzayg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Smooch Sans" - }, - { - "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUBodqIeNlzayg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Smooch Sans" - }, - { - "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oi80BodqIeNlzayg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Smooch Sans" - }, - { - "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiH0dodqIeNlzayg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Smooch Sans" - }, - { - "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiJkdodqIeNlzayg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Smooch Sans" - }, - { - "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUdodqIeNlzayg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Smooch Sans" - }, - { - "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiaEdodqIeNlzayg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Smooch Sans" - } - ] - }, - { - "name": "Smythe", - "fontFamily": "Smythe, system-ui", - "slug": "wp-font-lib-smythe", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/smythe/v23/MwQ3bhT01--coT1BOLh_uGInjA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Smythe" - } - ] - }, - { - "name": "Sniglet", - "fontFamily": "Sniglet, system-ui", - "slug": "wp-font-lib-sniglet", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sniglet/v17/cIf9MaFLtkE3UjaJxCmrYGkHgIs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sniglet" - }, - { - "src": "http://fonts.gstatic.com/s/sniglet/v17/cIf4MaFLtkE3UjaJ_ImHRGEsnIJkWL4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sniglet" - } - ] - }, - { - "name": "Snippet", - "fontFamily": "Snippet, sans-serif", - "slug": "wp-font-lib-snippet", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/snippet/v21/bWt47f7XfQH9Gupu2v_Afcp9QWc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Snippet" - } - ] - }, - { - "name": "Snowburst One", - "fontFamily": "Snowburst One, system-ui", - "slug": "wp-font-lib-snowburst-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/snowburstone/v20/MQpS-WezKdujBsXY3B7I-UT7eZ-UPyacPbo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Snowburst One" - } - ] - }, - { - "name": "Sofadi One", - "fontFamily": "Sofadi One, system-ui", - "slug": "wp-font-lib-sofadi-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sofadione/v21/JIA2UVBxdnVBuElZaMFGcDOIETkmYDU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sofadi One" - } - ] - }, - { - "name": "Sofia", - "fontFamily": "Sofia, cursive", - "slug": "wp-font-lib-sofia", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sofia/v14/8QIHdirahM3j_vu-sowsrqjk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sofia" - } - ] - }, - { - "name": "Sofia Sans", - "fontFamily": "Sofia Sans, sans-serif", - "slug": "wp-font-lib-sofia-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sa3trvKCXl8k.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69D6sK3trvKCXl8k.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69AksK3trvKCXl8k.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sK3trvKCXl8k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69BIsK3trvKCXl8k.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69Ckt63trvKCXl8k.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69Cdt63trvKCXl8k.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69D6t63trvKCXl8k.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69DTt63trvKCXl8k.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy80WvpPagW08kdLY.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy88WupPagW08kdLY.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy8xuupPagW08kdLY.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy80WupPagW08kdLY.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy83eupPagW08kdLY.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy85uppPagW08kdLY.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy86KppPagW08kdLY.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy88WppPagW08kdLY.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy8-yppPagW08kdLY.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Sofia Sans" - } - ] - }, - { - "name": "Sofia Sans Condensed", - "fontFamily": "Sofia Sans Condensed, sans-serif", - "slug": "wp-font-lib-sofia-sans-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqh-Csl8QO3OfwQQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqB-Gsl8QO3OfwQQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUq2eGsl8QO3OfwQQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqh-Gsl8QO3OfwQQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqteGsl8QO3OfwQQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqWeasl8QO3OfwQQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqYOasl8QO3OfwQQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqB-asl8QO3OfwQQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqLuasl8QO3OfwQQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6JE1c4K_uLgQZ_3.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6LE1M4K_uLgQZ_3.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Ia1M4K_uLgQZ_3.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6JE1M4K_uLgQZ_3.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6J21M4K_uLgQZ_3.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Ka084K_uLgQZ_3.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Kj084K_uLgQZ_3.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6LE084K_uLgQZ_3.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Lt084K_uLgQZ_3.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed" - } - ] - }, - { - "name": "Sofia Sans Extra Condensed", - "fontFamily": "Sofia Sans Extra Condensed, sans-serif", - "slug": "wp-font-lib-sofia-sans-extra-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLmmmEfzmM356GxA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLGmiEfzmM356GxA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLxGiEfzmM356GxA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLmmiEfzmM356GxA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLqGiEfzmM356GxA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLRG-EfzmM356GxA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLfW-EfzmM356GxA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLGm-EfzmM356GxA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLM2-EfzmM356GxA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitsPTOI_ZuWxFXe.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivsPDOI_ZuWxFXe.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUisyPDOI_ZuWxFXe.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitsPDOI_ZuWxFXe.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitePDOI_ZuWxFXe.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUiuyOzOI_ZuWxFXe.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUiuLOzOI_ZuWxFXe.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivsOzOI_ZuWxFXe.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivFOzOI_ZuWxFXe.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed" - } - ] - }, - { - "name": "Sofia Sans Semi Condensed", - "fontFamily": "Sofia Sans Semi Condensed, sans-serif", - "slug": "wp-font-lib-sofia-sans-semi-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoobEO9TGahllIhN.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqbEe9TGahllIhN.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvopFEe9TGahllIhN.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoobEe9TGahllIhN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoopEe9TGahllIhN.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvorFFu9TGahllIhN.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvor8Fu9TGahllIhN.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqbFu9TGahllIhN.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqyFu9TGahllIhN.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUgcRE6xHkZhNeas.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUocQE6xHkZhNeas.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUlkQE6xHkZhNeas.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUgcQE6xHkZhNeas.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUjUQE6xHkZhNeas.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUtkXE6xHkZhNeas.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUuAXE6xHkZhNeas.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUocXE6xHkZhNeas.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUq4XE6xHkZhNeas.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed" - } - ] - }, - { - "name": "Solitreo", - "fontFamily": "Solitreo, cursive", - "slug": "wp-font-lib-solitreo", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/solitreo/v2/r05YGLlS5a9KYsyNO8upyDYtStiJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Solitreo" - } - ] - }, - { - "name": "Solway", - "fontFamily": "Solway, serif", - "slug": "wp-font-lib-solway", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuLlgZms0QW3mqyg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Solway" - }, - { - "src": "http://fonts.gstatic.com/s/solway/v18/AMOQz46Cs2uTAOCWgnA9kuYMUg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Solway" - }, - { - "src": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCudlkZms0QW3mqyg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Solway" - }, - { - "src": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuPl8Zms0QW3mqyg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Solway" - }, - { - "src": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuIlwZms0QW3mqyg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Solway" - } - ] - }, - { - "name": "Song Myung", - "fontFamily": "Song Myung, serif", - "slug": "wp-font-lib-song-myung", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/songmyung/v20/1cX2aUDWAJH5-EIC7DIhr1GqhcitzeM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Song Myung" - } - ] - }, - { - "name": "Sono", - "fontFamily": "Sono, sans-serif", - "slug": "wp-font-lib-sono", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVNkWdEnR4qYeB4Q.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Sono" - }, - { - "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxV6EWdEnR4qYeB4Q.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sono" - }, - { - "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVtkWdEnR4qYeB4Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sono" - }, - { - "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVhEWdEnR4qYeB4Q.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sono" - }, - { - "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVaEKdEnR4qYeB4Q.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sono" - }, - { - "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVUUKdEnR4qYeB4Q.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sono" - }, - { - "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVNkKdEnR4qYeB4Q.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sono" - } - ] - }, - { - "name": "Sonsie One", - "fontFamily": "Sonsie One, system-ui", - "slug": "wp-font-lib-sonsie-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sonsieone/v21/PbymFmP_EAnPqbKaoc18YVu80lbp8JM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sonsie One" - } - ] - }, - { - "name": "Sora", - "fontFamily": "Sora, sans-serif", - "slug": "wp-font-lib-sora", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSn3-KIwNhBti0.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Sora" - }, - { - "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSfSnn-KIwNhBti0.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Sora" - }, - { - "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmScMnn-KIwNhBti0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sora" - }, - { - "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSnn-KIwNhBti0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sora" - }, - { - "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdgnn-KIwNhBti0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sora" - }, - { - "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSeMmX-KIwNhBti0.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sora" - }, - { - "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSe1mX-KIwNhBti0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sora" - }, - { - "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSfSmX-KIwNhBti0.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sora" - } - ] - }, - { - "name": "Sorts Mill Goudy", - "fontFamily": "Sorts Mill Goudy, serif", - "slug": "wp-font-lib-sorts-mill-goudy", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3GZR9MED_6PSuS_50nEaVrfzgEXH0OjpM75PE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sorts Mill Goudy" - }, - { - "src": "http://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3AZR9MED_6PSuS_50nEaVrfzgEbH8EirE-9PGLfQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sorts Mill Goudy" - } - ] - }, - { - "name": "Source Code Pro", - "fontFamily": "Source Code Pro, monospace", - "slug": "wp-font-lib-source-code-pro", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyQhM5hTXUcdJg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DJKQhM5hTXUcdJg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhM5hTXUcdJg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DP6QhM5hTXUcdJg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DBKXhM5hTXUcdJg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DCuXhM5hTXUcdJg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyXhM5hTXUcdJg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DGWXhM5hTXUcdJg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7I1rSVcZZJiGpw.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTMo1rSVcZZJiGpw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1rSVcZZJiGpw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTXo1rSVcZZJiGpw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTsoprSVcZZJiGpw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTi4prSVcZZJiGpw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7IprSVcZZJiGpw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTxYprSVcZZJiGpw.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Source Code Pro" - } - ] - }, - { - "name": "Source Sans 3", - "fontFamily": "Source Sans 3, sans-serif", - "slug": "wp-font-lib-source-sans-3", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw461EN_io6npfB.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Ky461EN_io6npfB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KyK61EN_io6npfB.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlO9C4Ym4fB3Ts.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqOdO9C4Ym4fB3Ts.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqLlO9C4Ym4fB3Ts.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqItO9C4Ym4fB3Ts.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqGdJ9C4Ym4fB3Ts.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqF5J9C4Ym4fB3Ts.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlJ9C4Ym4fB3Ts.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqBBJ9C4Ym4fB3Ts.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Source Sans 3" - } - ] - }, - { - "name": "Source Sans Pro", - "fontFamily": "Source Sans Pro, sans-serif", - "slug": "wp-font-lib-source-sans-pro", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_AkB1v_8CGxg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Source Sans Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokRdr3cWWxg40.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Source Sans Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkB1v_8CGxg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Source Sans Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkhdr3cWWxg40.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Source Sans Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3aP6TkmDZz9g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Source Sans Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7gujNj9tmf.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Source Sans Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkB1v_8CGxg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Source Sans Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lBdr3cWWxg40.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Source Sans Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkB1v_8CGxg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Source Sans Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclRdr3cWWxg40.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Source Sans Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nAkB1v_8CGxg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Source Sans Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklxdr3cWWxg40.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Source Sans Pro" - } - ] - }, - { - "name": "Source Serif 4", - "fontFamily": "Source Serif 4, serif", - "slug": "wp-font-lib-source-serif-4", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdqrhxXD-wGvjU.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiklqrhxXD-wGvjU.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjihdqrhxXD-wGvjU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiiVqrhxXD-wGvjU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjisltrhxXD-wGvjU.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjivBtrhxXD-wGvjU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdtrhxXD-wGvjU.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjir5trhxXD-wGvjU.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxl9dC84DrjXEXw.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pGF9dC84DrjXEXw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pRl9dC84DrjXEXw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pdF9dC84DrjXEXw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pmFhdC84DrjXEXw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98poVhdC84DrjXEXw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxlhdC84DrjXEXw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98p71hdC84DrjXEXw.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Source Serif 4" - } - ] - }, - { - "name": "Source Serif Pro", - "fontFamily": "Source Serif Pro, serif", - "slug": "wp-font-lib-source-serif-pro", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasbsfhSugxYUvZrI.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Source Serif Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGbSqqwacqdrKvbQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Source Serif Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasd8chSugxYUvZrI.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Source Serif Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGCSmqwacqdrKvbQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Source Serif Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIQzD-0qpwxpaWvjeD0X88SAOeaiXM0oSOL2Yw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Source Serif Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIWzD-0qpwxpaWvjeD0X88SAOeauXE-pQGOyYw2fw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Source Serif Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasasahSugxYUvZrI.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Source Serif Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGfS-qwacqdrKvbQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Source Serif Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasc8bhSugxYUvZrI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Source Serif Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGGS6qwacqdrKvbQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Source Serif Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasfcZhSugxYUvZrI.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Source Serif Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGISyqwacqdrKvbQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Source Serif Pro" - } - ] - }, - { - "name": "Space Grotesk", - "fontFamily": "Space Grotesk, sans-serif", - "slug": "wp-font-lib-space-grotesk", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj62UUsjNsFjTDJK.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Space Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUUsjNsFjTDJK.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Space Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7aUUsjNsFjTDJK.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Space Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj42VksjNsFjTDJK.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Space Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksjNsFjTDJK.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Space Grotesk" - } - ] - }, - { - "name": "Space Mono", - "fontFamily": "Space Mono, monospace", - "slug": "wp-font-lib-space-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/spacemono/v12/i7dPIFZifjKcF5UAWdDRUEZ2RFq7AwU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Space Mono" - }, - { - "src": "http://fonts.gstatic.com/s/spacemono/v12/i7dNIFZifjKcF5UAWdDRYER8QHi-EwWMbg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Space Mono" - }, - { - "src": "http://fonts.gstatic.com/s/spacemono/v12/i7dMIFZifjKcF5UAWdDRaPpZYFKQHwyVd3U.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Space Mono" - }, - { - "src": "http://fonts.gstatic.com/s/spacemono/v12/i7dSIFZifjKcF5UAWdDRYERE_FeaGy6QZ3WfYg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Space Mono" - } - ] - }, - { - "name": "Special Elite", - "fontFamily": "Special Elite, system-ui", - "slug": "wp-font-lib-special-elite", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/specialelite/v18/XLYgIZbkc4JPUL5CVArUVL0nhncESXFtUsM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Special Elite" - } - ] - }, - { - "name": "Spectral", - "fontFamily": "Spectral, serif", - "slug": "wp-font-lib-spectral", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9v2s13GY_etWWIJ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qrXHafOPXHIJErY.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uSsF3GY_etWWIJ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qtHEafOPXHIJErY.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCr-xNNww_2s0amA-M-mHnOSOuk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCt-xNNww_2s0amA9M8kn3sTfukQHs.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vKsV3GY_etWWIJ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qonFafOPXHIJErY.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vmtl3GY_etWWIJ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qqXCafOPXHIJErY.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uCt13GY_etWWIJ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qsHDafOPXHIJErY.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uetF3GY_etWWIJ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qt3AafOPXHIJErY.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Spectral" - } - ] - }, - { - "name": "Spectral SC", - "fontFamily": "Spectral SC, serif", - "slug": "wp-font-lib-spectral-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs1qwkTXPYeVXJZB.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg26zWN4O3WYZB_sU.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0OwUTXPYeVXJZB.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg28jVN4O3WYZB_sU.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/KtkpALCRZonmalTgyPmRfvWi6WDfFpuc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/KtkrALCRZonmalTgyPmRfsWg42T9E4ucRY8.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs1WwETXPYeVXJZB.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg25DUN4O3WYZB_sU.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs16x0TXPYeVXJZB.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg27zTN4O3WYZB_sU.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0exkTXPYeVXJZB.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg29jSN4O3WYZB_sU.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0CxUTXPYeVXJZB.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg28TRN4O3WYZB_sU.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Spectral SC" - } - ] - }, - { - "name": "Spicy Rice", - "fontFamily": "Spicy Rice, system-ui", - "slug": "wp-font-lib-spicy-rice", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/spicyrice/v21/uK_24rSEd-Uqwk4jY1RyGv-2WkowRcc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Spicy Rice" - } - ] - }, - { - "name": "Spinnaker", - "fontFamily": "Spinnaker, sans-serif", - "slug": "wp-font-lib-spinnaker", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/spinnaker/v17/w8gYH2oyX-I0_rvR6Hmn3HwLqOqSBg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Spinnaker" - } - ] - }, - { - "name": "Spirax", - "fontFamily": "Spirax, system-ui", - "slug": "wp-font-lib-spirax", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/spirax/v21/buE3poKgYNLy0F3cXktt-Csn-Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Spirax" - } - ] - }, - { - "name": "Splash", - "fontFamily": "Splash, cursive", - "slug": "wp-font-lib-splash", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/splash/v2/KtksAL2RZoDkbU6hpPPGNdS6wg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Splash" - } - ] - }, - { - "name": "Spline Sans", - "fontFamily": "Spline Sans, sans-serif", - "slug": "wp-font-lib-spline-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpZlnYEtvlUfE2kw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Spline Sans" - }, - { - "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpOFnYEtvlUfE2kw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Spline Sans" - }, - { - "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpClnYEtvlUfE2kw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Spline Sans" - }, - { - "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp5l7YEtvlUfE2kw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Spline Sans" - }, - { - "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp317YEtvlUfE2kw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Spline Sans" - } - ] - }, - { - "name": "Spline Sans Mono", - "fontFamily": "Spline Sans Mono, monospace", - "slug": "wp-font-lib-spline-sans-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGA8MrtVy4d4dGb1.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Spline Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBiMrtVy4d4dGb1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Spline Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBQMrtVy4d4dGb1.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Spline Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGC8NbtVy4d4dGb1.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Spline Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGCFNbtVy4d4dGb1.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Spline Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcQ0WwYNacXb12MM.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Spline Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcVMWwYNacXb12MM.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Spline Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcWEWwYNacXb12MM.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Spline Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcY0RwYNacXb12MM.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Spline Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcbQRwYNacXb12MM.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Spline Sans Mono" - } - ] - }, - { - "name": "Squada One", - "fontFamily": "Squada One, system-ui", - "slug": "wp-font-lib-squada-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/squadaone/v14/BCasqZ8XsOrx4mcOk6MtWaA8WDBkHgs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Squada One" - } - ] - }, - { - "name": "Square Peg", - "fontFamily": "Square Peg, cursive", - "slug": "wp-font-lib-square-peg", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/squarepeg/v2/y83eW48Nzw6ZlUHc-phrBDHrHHfrFPE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Square Peg" - } - ] - }, - { - "name": "Sree Krushnadevaraya", - "fontFamily": "Sree Krushnadevaraya, serif", - "slug": "wp-font-lib-sree-krushnadevaraya", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sreekrushnadevaraya/v21/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWb2FhQuXir.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sree Krushnadevaraya" - } - ] - }, - { - "name": "Sriracha", - "fontFamily": "Sriracha, cursive", - "slug": "wp-font-lib-sriracha", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sriracha/v11/0nkrC9D4IuYBgWcI9ObYRQDioeb0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sriracha" - } - ] - }, - { - "name": "Srisakdi", - "fontFamily": "Srisakdi, system-ui", - "slug": "wp-font-lib-srisakdi", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/srisakdi/v16/yMJRMIlvdpDbkB0A-jq8fSx5i814.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Srisakdi" - }, - { - "src": "http://fonts.gstatic.com/s/srisakdi/v16/yMJWMIlvdpDbkB0A-gIAUghxoNFxW0Hz.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Srisakdi" - } - ] - }, - { - "name": "Staatliches", - "fontFamily": "Staatliches, system-ui", - "slug": "wp-font-lib-staatliches", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/staatliches/v11/HI_OiY8KO6hCsQSoAPmtMbectJG9O9PS.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Staatliches" - } - ] - }, - { - "name": "Stalemate", - "fontFamily": "Stalemate, cursive", - "slug": "wp-font-lib-stalemate", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/stalemate/v20/taiIGmZ_EJq97-UfkZRpuqSs8ZQpaQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stalemate" - } - ] - }, - { - "name": "Stalinist One", - "fontFamily": "Stalinist One, system-ui", - "slug": "wp-font-lib-stalinist-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/stalinistone/v54/MQpS-WezM9W4Dd7D3B7I-UT7eZ-UPyacPbo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stalinist One" - } - ] - }, - { - "name": "Stardos Stencil", - "fontFamily": "Stardos Stencil, system-ui", - "slug": "wp-font-lib-stardos-stencil", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/stardosstencil/v15/X7n94bcuGPC8hrvEOHXOgaKCc2TR71R3tiSx0g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stardos Stencil" - }, - { - "src": "http://fonts.gstatic.com/s/stardosstencil/v15/X7n44bcuGPC8hrvEOHXOgaKCc2TpU3tTvg-t29HSHw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Stardos Stencil" - } - ] - }, - { - "name": "Stick", - "fontFamily": "Stick, sans-serif", - "slug": "wp-font-lib-stick", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/stick/v15/Qw3TZQpMCyTtJSvfvPVDMPoF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stick" - } - ] - }, - { - "name": "Stick No Bills", - "fontFamily": "Stick No Bills, sans-serif", - "slug": "wp-font-lib-stick-no-bills", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8Q7KriwKhcTKA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Stick No Bills" - }, - { - "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcV4cQ7KriwKhcTKA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Stick No Bills" - }, - { - "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVv8Q7KriwKhcTKA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stick No Bills" - }, - { - "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVjcQ7KriwKhcTKA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Stick No Bills" - }, - { - "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVYcM7KriwKhcTKA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Stick No Bills" - }, - { - "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVWMM7KriwKhcTKA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Stick No Bills" - }, - { - "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8M7KriwKhcTKA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Stick No Bills" - } - ] - }, - { - "name": "Stint Ultra Condensed", - "fontFamily": "Stint Ultra Condensed, system-ui", - "slug": "wp-font-lib-stint-ultra-condensed", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/stintultracondensed/v21/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-qhUO2cNvdg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stint Ultra Condensed" - } - ] - }, - { - "name": "Stint Ultra Expanded", - "fontFamily": "Stint Ultra Expanded, system-ui", - "slug": "wp-font-lib-stint-ultra-expanded", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/stintultraexpanded/v20/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qoATQkWwam.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stint Ultra Expanded" - } - ] - }, - { - "name": "Stoke", - "fontFamily": "Stoke, serif", - "slug": "wp-font-lib-stoke", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/stoke/v22/z7NXdRb7aTMfKNvFVgxC_pjcTeWU.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Stoke" - }, - { - "src": "http://fonts.gstatic.com/s/stoke/v22/z7NadRb7aTMfKONpfihK1YTV.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stoke" - } - ] - }, - { - "name": "Strait", - "fontFamily": "Strait, sans-serif", - "slug": "wp-font-lib-strait", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/strait/v15/DtViJxy6WaEr1LZzeDhtkl0U7w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Strait" - } - ] - }, - { - "name": "Style Script", - "fontFamily": "Style Script, cursive", - "slug": "wp-font-lib-style-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/stylescript/v8/vm8xdRX3SV7Z0aPa88xzW5npeFT76NZnMw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Style Script" - } - ] - }, - { - "name": "Stylish", - "fontFamily": "Stylish, sans-serif", - "slug": "wp-font-lib-stylish", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/stylish/v20/m8JSjfhPYriQkk7-fo35dLxEdmo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stylish" - } - ] - }, - { - "name": "Sue Ellen Francisco", - "fontFamily": "Sue Ellen Francisco, cursive", - "slug": "wp-font-lib-sue-ellen-francisco", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sueellenfrancisco/v16/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9ropF2lqk9H4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sue Ellen Francisco" - } - ] - }, - { - "name": "Suez One", - "fontFamily": "Suez One, serif", - "slug": "wp-font-lib-suez-one", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/suezone/v11/taiJGmd_EZ6rqscQgNFJkIqg-I0w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Suez One" - } - ] - }, - { - "name": "Sulphur Point", - "fontFamily": "Sulphur Point, sans-serif", - "slug": "wp-font-lib-sulphur-point", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLpkK5vv8KaycDcazWFPBj2afVU6n6kFUHPIFaU.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sulphur Point" - }, - { - "src": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLp5K5vv8KaycDcazWFPBj2aRfkSu6EuTHo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sulphur Point" - }, - { - "src": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLpkK5vv8KaycDcazWFPBj2afUU9n6kFUHPIFaU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sulphur Point" - } - ] - }, - { - "name": "Sumana", - "fontFamily": "Sumana, serif", - "slug": "wp-font-lib-sumana", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sumana/v10/4UaDrE5TqRBjGj-G8Bji76zR4w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sumana" - }, - { - "src": "http://fonts.gstatic.com/s/sumana/v10/4UaArE5TqRBjGj--TDfG54fN6ppsKg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sumana" - } - ] - }, - { - "name": "Sunflower", - "fontFamily": "Sunflower, sans-serif", - "slug": "wp-font-lib-sunflower", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-06MfiqYsGBGBzCw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sunflower" - }, - { - "src": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-0sMbiqYsGBGBzCw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sunflower" - }, - { - "src": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-0-MDiqYsGBGBzCw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sunflower" - } - ] - }, - { - "name": "Sunshiney", - "fontFamily": "Sunshiney, cursive", - "slug": "wp-font-lib-sunshiney", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sunshiney/v24/LDIwapGTLBwsS-wT4vcgE8moUePWkg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sunshiney" - } - ] - }, - { - "name": "Supermercado One", - "fontFamily": "Supermercado One, system-ui", - "slug": "wp-font-lib-supermercado-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/supermercadoone/v22/OpNXnpQWg8jc_xps_Gi14kVVEXOn60b3MClBRTs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Supermercado One" - } - ] - }, - { - "name": "Sura", - "fontFamily": "Sura, serif", - "slug": "wp-font-lib-sura", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sura/v16/SZc23FL5PbyzFf5UWzXtjUM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sura" - }, - { - "src": "http://fonts.gstatic.com/s/sura/v16/SZc53FL5PbyzLUJ7fz3GkUrS8DI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sura" - } - ] - }, - { - "name": "Suranna", - "fontFamily": "Suranna, serif", - "slug": "wp-font-lib-suranna", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/suranna/v13/gokuH6ztGkFjWe58tBRZT2KmgP0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Suranna" - } - ] - }, - { - "name": "Suravaram", - "fontFamily": "Suravaram, serif", - "slug": "wp-font-lib-suravaram", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/suravaram/v21/_gP61R_usiY7SCym4xIAi261Qv9roQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Suravaram" - } - ] - }, - { - "name": "Suwannaphum", - "fontFamily": "Suwannaphum, serif", - "slug": "wp-font-lib-suwannaphum", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnAgHV7GtDvc8jbe8hXXL3B9cSWXx2VZmk.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Suwannaphum" - }, - { - "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0J1-S8cRGcf3Ai.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Suwannaphum" - }, - { - "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnCgHV7GtDvc8jbe8hXXIWl_8C0Wg2V.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Suwannaphum" - }, - { - "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0Z0OS8cRGcf3Ai.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Suwannaphum" - }, - { - "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0h0uS8cRGcf3Ai.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Suwannaphum" - } - ] - }, - { - "name": "Swanky and Moo Moo", - "fontFamily": "Swanky and Moo Moo, cursive", - "slug": "wp-font-lib-swanky-and-moo-moo", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/swankyandmoomoo/v22/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUtbPkR64SYQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Swanky and Moo Moo" - } - ] - }, - { - "name": "Syncopate", - "fontFamily": "Syncopate, sans-serif", - "slug": "wp-font-lib-syncopate", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/syncopate/v19/pe0sMIuPIYBCpEV5eFdyAv2-C99ycg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Syncopate" - }, - { - "src": "http://fonts.gstatic.com/s/syncopate/v19/pe0pMIuPIYBCpEV5eFdKvtKaA_Rue1UwVg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Syncopate" - } - ] - }, - { - "name": "Syne", - "fontFamily": "Syne, sans-serif", - "slug": "wp-font-lib-syne", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_04uT6kR47NCV5Z.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Syne" - }, - { - "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_0KuT6kR47NCV5Z.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Syne" - }, - { - "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6kR47NCV5Z.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Syne" - }, - { - "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6kR47NCV5Z.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Syne" - }, - { - "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_24vj6kR47NCV5Z.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Syne" - } - ] - }, - { - "name": "Syne Mono", - "fontFamily": "Syne Mono, monospace", - "slug": "wp-font-lib-syne-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/synemono/v15/K2FzfZNHj_FHBmRbFvHzIqCkDyvqZA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Syne Mono" - } - ] - }, - { - "name": "Syne Tactile", - "fontFamily": "Syne Tactile, system-ui", - "slug": "wp-font-lib-syne-tactile", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/synetactile/v15/11hGGpna2UTQKjMCVzjAPMKh3ysdjvKU8Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Syne Tactile" - } - ] - }, - { - "name": "Tai Heritage Pro", - "fontFamily": "Tai Heritage Pro, serif", - "slug": "wp-font-lib-tai-heritage-pro", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/taiheritagepro/v6/sZlfdQid-zgaNiNIYcUzJMU3IYyNoHxSENxuLuE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tai Heritage Pro" - }, - { - "src": "http://fonts.gstatic.com/s/taiheritagepro/v6/sZlYdQid-zgaNiNIYcUzJMU3IYyNmMB9NNRFMuhjCXY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tai Heritage Pro" - } - ] - }, - { - "name": "Tajawal", - "fontFamily": "Tajawal, sans-serif", - "slug": "wp-font-lib-tajawal", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l_6gLrZjiLlJ-G0.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Tajawal" - }, - { - "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5qjLrZjiLlJ-G0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Tajawal" - }, - { - "src": "http://fonts.gstatic.com/s/tajawal/v9/Iura6YBj_oCad4k1rzaLCr5IlLA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tajawal" - }, - { - "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l8KiLrZjiLlJ-G0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Tajawal" - }, - { - "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l4qkLrZjiLlJ-G0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tajawal" - }, - { - "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5anLrZjiLlJ-G0.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Tajawal" - }, - { - "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l7KmLrZjiLlJ-G0.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Tajawal" - } - ] - }, - { - "name": "Tangerine", - "fontFamily": "Tangerine, cursive", - "slug": "wp-font-lib-tangerine", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tangerine/v17/IurY6Y5j_oScZZow4VOBDpxNhLBQ4Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tangerine" - }, - { - "src": "http://fonts.gstatic.com/s/tangerine/v17/Iurd6Y5j_oScZZow4VO5srNpjJtM6G0t9w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tangerine" - } - ] - }, - { - "name": "Tapestry", - "fontFamily": "Tapestry, cursive", - "slug": "wp-font-lib-tapestry", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tapestry/v2/SlGTmQecrosEYXhaGBIkqnB6aSQU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tapestry" - } - ] - }, - { - "name": "Taprom", - "fontFamily": "Taprom, system-ui", - "slug": "wp-font-lib-taprom", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/taprom/v27/UcCn3F82JHycULbFQyk3-0kvHg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Taprom" - } - ] - }, - { - "name": "Tauri", - "fontFamily": "Tauri, sans-serif", - "slug": "wp-font-lib-tauri", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tauri/v16/TwMA-IISS0AM3IpVWHU_TBqO.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tauri" - } - ] - }, - { - "name": "Taviraj", - "fontFamily": "Taviraj, serif", - "slug": "wp-font-lib-taviraj", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcbv8Cj3ylylTXzRIorV8N1jU2gog.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcdv8Cj3ylylTXzTOwTM8lxr0iwolLl.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRCYKd-lbgUS5u0s.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTn-hRhWa8q0v8ag.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzREIJd-lbgUS5u0s.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT--tRhWa8q0v8ag.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcZv8Cj3ylylTXzfO4hU-FwnU0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcbv8Cj3ylylTXzTOwrV8N1jU2gog.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRBoId-lbgUS5u0s.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTo-pRhWa8q0v8ag.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRDYPd-lbgUS5u0s.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTj-1RhWa8q0v8ag.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRFIOd-lbgUS5u0s.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT6-xRhWa8q0v8ag.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRE4Nd-lbgUS5u0s.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT9-9RhWa8q0v8ag.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRGoMd-lbgUS5u0s.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT0-5RhWa8q0v8ag.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Taviraj" - } - ] - }, - { - "name": "Teko", - "fontFamily": "Teko, sans-serif", - "slug": "wp-font-lib-teko", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdQhfgCNqqVIuTN4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Teko" - }, - { - "src": "http://fonts.gstatic.com/s/teko/v16/LYjNdG7kmE0gTaR3pCtBtVs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Teko" - }, - { - "src": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdVBegCNqqVIuTN4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Teko" - }, - { - "src": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdXxZgCNqqVIuTN4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Teko" - }, - { - "src": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdRhYgCNqqVIuTN4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Teko" - } - ] - }, - { - "name": "Telex", - "fontFamily": "Telex, sans-serif", - "slug": "wp-font-lib-telex", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/telex/v17/ieVw2Y1fKWmIO9fTB1piKFIf.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Telex" - } - ] - }, - { - "name": "Tenali Ramakrishna", - "fontFamily": "Tenali Ramakrishna, sans-serif", - "slug": "wp-font-lib-tenali-ramakrishna", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tenaliramakrishna/v12/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8KJXqUFFvtA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tenali Ramakrishna" - } - ] - }, - { - "name": "Tenor Sans", - "fontFamily": "Tenor Sans, sans-serif", - "slug": "wp-font-lib-tenor-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tenorsans/v17/bx6ANxqUneKx06UkIXISr3JyC22IyqI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tenor Sans" - } - ] - }, - { - "name": "Text Me One", - "fontFamily": "Text Me One, sans-serif", - "slug": "wp-font-lib-text-me-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/textmeone/v21/i7dOIFdlayuLUvgoFvHQFWZcalayGhyV.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Text Me One" - } - ] - }, - { - "name": "Texturina", - "fontFamily": "Texturina, serif", - "slug": "wp-font-lib-texturina", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYG_Ug25riW1OD.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYGvUg25riW1OD.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2fGGvUg25riW1OD.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYGvUg25riW1OD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eqGvUg25riW1OD.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2dGHfUg25riW1OD.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2d_HfUg25riW1OD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYHfUg25riW1OD.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cxHfUg25riW1OD.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1i0Z7AXkODN94.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1j0Z7AXkODN94.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWUNj0Z7AXkODN94.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1j0Z7AXkODN94.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWS9j0Z7AXkODN94.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWcNk0Z7AXkODN94.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWfpk0Z7AXkODN94.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1k0Z7AXkODN94.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWbRk0Z7AXkODN94.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Texturina" - } - ] - }, - { - "name": "Thasadith", - "fontFamily": "Thasadith, sans-serif", - "slug": "wp-font-lib-thasadith", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/thasadith/v9/mtG44_1TIqPYrd_f5R1YsEkU0CWuFw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Thasadith" - }, - { - "src": "http://fonts.gstatic.com/s/thasadith/v9/mtG-4_1TIqPYrd_f5R1oskMQ8iC-F1ZE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Thasadith" - }, - { - "src": "http://fonts.gstatic.com/s/thasadith/v9/mtG94_1TIqPYrd_f5R1gDGYw2A6yHk9d8w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Thasadith" - }, - { - "src": "http://fonts.gstatic.com/s/thasadith/v9/mtGj4_1TIqPYrd_f5R1osnus3QS2PEpN8zxA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Thasadith" - } - ] - }, - { - "name": "The Girl Next Door", - "fontFamily": "The Girl Next Door, cursive", - "slug": "wp-font-lib-the-girl-next-door", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/thegirlnextdoor/v18/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIV7t7w6bE2A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "The Girl Next Door" - } - ] - }, - { - "name": "The Nautigal", - "fontFamily": "The Nautigal, cursive", - "slug": "wp-font-lib-the-nautigal", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/thenautigal/v3/VdGZAZ8ZH51Lvng9fQV2bfKr5wVk09Se5Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "The Nautigal" - }, - { - "src": "http://fonts.gstatic.com/s/thenautigal/v3/VdGGAZ8ZH51Lvng9fQV2bfKTWypA2_-C7LoS7g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "The Nautigal" - } - ] - }, - { - "name": "Tienne", - "fontFamily": "Tienne, serif", - "slug": "wp-font-lib-tienne", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tienne/v20/AYCKpX7pe9YCRP0LkEPHSFNyxw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tienne" - }, - { - "src": "http://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zLGzjQHhuzvef5Q.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tienne" - }, - { - "src": "http://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zFG7jQHhuzvef5Q.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Tienne" - } - ] - }, - { - "name": "Tillana", - "fontFamily": "Tillana, cursive", - "slug": "wp-font-lib-tillana", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tillana/v11/VuJxdNvf35P4qJ1OeKbXOIFneRo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tillana" - }, - { - "src": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQFL-HIlMZRNcp0o.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Tillana" - }, - { - "src": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQH75HIlMZRNcp0o.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Tillana" - }, - { - "src": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQBr4HIlMZRNcp0o.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tillana" - }, - { - "src": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQAb7HIlMZRNcp0o.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Tillana" - } - ] - }, - { - "name": "Tilt Neon", - "fontFamily": "Tilt Neon, system-ui", - "slug": "wp-font-lib-tilt-neon", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tiltneon/v8/E21L_d7gguXdwD9LEFY2WCeElCNtd-eBqpHp1TzrkJSmwpj5ndxquXK9WualJ9DS.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tilt Neon" - } - ] - }, - { - "name": "Tilt Prism", - "fontFamily": "Tilt Prism, system-ui", - "slug": "wp-font-lib-tilt-prism", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tiltprism/v9/5h11iZgyPHoZ3YikNzWGfWey2dCAZXT-bH9V4VGn-FJ7tLI25oc_rIbwoTSrn86NKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tilt Prism" - } - ] - }, - { - "name": "Tilt Warp", - "fontFamily": "Tilt Warp, system-ui", - "slug": "wp-font-lib-tilt-warp", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tiltwarp/v10/AlZc_zVDs5XpmO7yn3w7flUoytXJp3z29uEwmEMLEJljLXvT8UJSZTBxAVfMGOPb.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tilt Warp" - } - ] - }, - { - "name": "Timmana", - "fontFamily": "Timmana, sans-serif", - "slug": "wp-font-lib-timmana", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/timmana/v12/6xKvdShfL9yK-rvpCmvbKHwJUOM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Timmana" - } - ] - }, - { - "name": "Tinos", - "fontFamily": "Tinos, serif", - "slug": "wp-font-lib-tinos", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tinos/v24/buE4poGnedXvwgX8dGVh8TI-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tinos" - }, - { - "src": "http://fonts.gstatic.com/s/tinos/v24/buE2poGnedXvwjX-fmFD9CI-4NU.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tinos" - }, - { - "src": "http://fonts.gstatic.com/s/tinos/v24/buE1poGnedXvwj1AW0Fp2i43-cxL.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tinos" - }, - { - "src": "http://fonts.gstatic.com/s/tinos/v24/buEzpoGnedXvwjX-Rt1s0CoV_NxLeiw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Tinos" - } - ] - }, - { - "name": "Tiro Bangla", - "fontFamily": "Tiro Bangla, serif", - "slug": "wp-font-lib-tiro-bangla", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tirobangla/v6/IFSgHe1Tm95E3O8b5i2V8MG9-UPeuz4i.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Bangla" - }, - { - "src": "http://fonts.gstatic.com/s/tirobangla/v6/IFSiHe1Tm95E3O8b5i2V8PG_80f8vi4imBM.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Bangla" - } - ] - }, - { - "name": "Tiro Devanagari Hindi", - "fontFamily": "Tiro Devanagari Hindi, serif", - "slug": "wp-font-lib-tiro-devanagari-hindi", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tirodevanagarihindi/v5/55xyezN7P8T4e0_CfIJrwdodg9HoYw0i-M9fSOkOfG0Y3A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Devanagari Hindi" - }, - { - "src": "http://fonts.gstatic.com/s/tirodevanagarihindi/v5/55x8ezN7P8T4e0_CfIJrwdodg9HoYw0i-M9vSuMKXmgI3F_o.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Devanagari Hindi" - } - ] - }, - { - "name": "Tiro Devanagari Marathi", - "fontFamily": "Tiro Devanagari Marathi, serif", - "slug": "wp-font-lib-tiro-devanagari-marathi", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1xPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkotDrDJYM2lAZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Devanagari Marathi" - }, - { - "src": "http://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1zPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkouDpBpIu30AZbUY.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Devanagari Marathi" - } - ] - }, - { - "name": "Tiro Devanagari Sanskrit", - "fontFamily": "Tiro Devanagari Sanskrit, serif", - "slug": "wp-font-lib-tiro-devanagari-sanskrit", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoAzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59pEoEqgtOh0w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Devanagari Sanskrit" - }, - { - "src": "http://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoGzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59ZEIsuoNax06MM.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Devanagari Sanskrit" - } - ] - }, - { - "name": "Tiro Gurmukhi", - "fontFamily": "Tiro Gurmukhi, serif", - "slug": "wp-font-lib-tiro-gurmukhi", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tirogurmukhi/v6/x3dmckXSYq-Uqjc048JUF7Jvly7HAQsyA2Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/tirogurmukhi/v6/x3d4ckXSYq-Uqjc048JUF7JvpyzNBSk3E2YljQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Gurmukhi" - } - ] - }, - { - "name": "Tiro Kannada", - "fontFamily": "Tiro Kannada, serif", - "slug": "wp-font-lib-tiro-kannada", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tirokannada/v6/CSR44ztKmvqaDxEDJFY7CIYKSPl6tOU9Eg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/tirokannada/v6/CSRm4ztKmvqaDxEDJFY7CIY6SvN-luAtEnKp.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Kannada" - } - ] - }, - { - "name": "Tiro Tamil", - "fontFamily": "Tiro Tamil, serif", - "slug": "wp-font-lib-tiro-tamil", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tirotamil/v10/m8JXjfVIf7OT22n3M-S_ULRvamODxdI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/tirotamil/v10/m8JVjfVIf7OT22n3M-S_YLZlbkGG1dKEDw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Tamil" - } - ] - }, - { - "name": "Tiro Telugu", - "fontFamily": "Tiro Telugu, serif", - "slug": "wp-font-lib-tiro-telugu", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tirotelugu/v7/aFTQ7PxlZWk2EPiSymjXdKSNQqn0X0BO.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/tirotelugu/v7/aFTS7PxlZWk2EPiSymjXdJSPSK3WWlBOoas.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Telugu" - } - ] - }, - { - "name": "Titan One", - "fontFamily": "Titan One, system-ui", - "slug": "wp-font-lib-titan-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/titanone/v13/mFTzWbsGxbbS_J5cQcjykzIn2Etikg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Titan One" - } - ] - }, - { - "name": "Titillium Web", - "fontFamily": "Titillium Web, sans-serif", - "slug": "wp-font-lib-titillium-web", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffAzHKIx5YrSYqWM.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Titillium Web" - }, - { - "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbewI1zZpaduWMmxA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Titillium Web" - }, - { - "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffGjEKIx5YrSYqWM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Titillium Web" - }, - { - "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbepI5zZpaduWMmxA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Titillium Web" - }, - { - "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPecZTIAOhVxoMyOr9n_E7fRMTsDIRSfr0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Titillium Web" - }, - { - "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCKZXbr2BsA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Titillium Web" - }, - { - "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIx5YrSYqWM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Titillium Web" - }, - { - "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzZpaduWMmxA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Titillium Web" - }, - { - "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIx5YrSYqWM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Titillium Web" - }, - { - "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZpaduWMmxA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Titillium Web" - }, - { - "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffEDBKIx5YrSYqWM.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Titillium Web" - } - ] - }, - { - "name": "Tomorrow", - "fontFamily": "Tomorrow, sans-serif", - "slug": "wp-font-lib-tomorrow", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLgrETNbFtZCeGqgR2xe2XiKMiokE4.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLirETNbFtZCeGqgRXXQwHoLOqtgE5h0A.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0dWkXIBsShiVd4.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ63JDMCDjEd4yVY.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR15WUXIBsShiVd4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ8nKDMCDjEd4yVY.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLmrETNbFtZCeGqgSXVcWHALdio.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLgrETNbFtZCeGqgRXXe2XiKMiokE4.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0hWEXIBsShiVd4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ5HLDMCDjEd4yVY.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0NX0XIBsShiVd4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ73MDMCDjEd4yVY.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR1pXkXIBsShiVd4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ9nNDMCDjEd4yVY.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR11XUXIBsShiVd4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ8XODMCDjEd4yVY.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR1RXEXIBsShiVd4.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ-HPDMCDjEd4yVY.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Tomorrow" - } - ] - }, - { - "name": "Tourney", - "fontFamily": "Tourney, system-ui", - "slug": "wp-font-lib-tourney", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQByZTp1I1LcGA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQFyZTp1I1LcGA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GZwFyZTp1I1LcGA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQFyZTp1I1LcGA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GCwFyZTp1I1LcGA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G5wZyZTp1I1LcGA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G3gZyZTp1I1LcGA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQZyZTp1I1LcGA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GkAZyZTp1I1LcGA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJzBxAVfMGOPb.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaJjBxAVfMGOPb.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8ULEJjBxAVfMGOPb.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJjBxAVfMGOPb.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKoJjBxAVfMGOPb.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJEITBxAVfMGOPb.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJ9ITBxAVfMGOPb.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaITBxAVfMGOPb.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIzITBxAVfMGOPb.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Tourney" - } - ] - }, - { - "name": "Trade Winds", - "fontFamily": "Trade Winds, system-ui", - "slug": "wp-font-lib-trade-winds", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tradewinds/v17/AYCPpXPpYNIIT7h8-QenM3Jq7PKP5Z_G.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Trade Winds" - } - ] - }, - { - "name": "Train One", - "fontFamily": "Train One, system-ui", - "slug": "wp-font-lib-train-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/trainone/v13/gyB-hwkiNtc6KnxUVjWHOqbZRY7JVQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Train One" - } - ] - }, - { - "name": "Trirong", - "fontFamily": "Trirong, serif", - "slug": "wp-font-lib-trirong", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3EqXNgp8wxdOdOl-go3YRl6ujngw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3CqXNgp8wxdOdOn44QuY5hyO33g8IY.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOl0QJ_a5L5uH-mts.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QFa9B4sP7itsB5g.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlyAK_a5L5uH-mts.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QcaxB4sP7itsB5g.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3GqXNgp8wxdOdOr4wi2aZg-ug.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3EqXNgp8wxdOdOn44o3YRl6ujngw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOl3gL_a5L5uH-mts.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QKa1B4sP7itsB5g.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOl1QM_a5L5uH-mts.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QBapB4sP7itsB5g.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlzAN_a5L5uH-mts.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QYatB4sP7itsB5g.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlywO_a5L5uH-mts.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QfahB4sP7itsB5g.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlwgP_a5L5uH-mts.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QWalB4sP7itsB5g.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Trirong" - } - ] - }, - { - "name": "Trispace", - "fontFamily": "Trispace, sans-serif", - "slug": "wp-font-lib-trispace", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9qoQl0zHugpt0.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Trispace" - }, - { - "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9roQl0zHugpt0.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Trispace" - }, - { - "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbCFroQl0zHugpt0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Trispace" - }, - { - "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9roQl0zHugpt0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Trispace" - }, - { - "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbE1roQl0zHugpt0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Trispace" - }, - { - "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbKFsoQl0zHugpt0.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Trispace" - }, - { - "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbJhsoQl0zHugpt0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Trispace" - }, - { - "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9soQl0zHugpt0.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Trispace" - } - ] - }, - { - "name": "Trocchi", - "fontFamily": "Trocchi, serif", - "slug": "wp-font-lib-trocchi", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/trocchi/v15/qWcqB6WkuIDxDZLcDrtUvMeTYD0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Trocchi" - } - ] - }, - { - "name": "Trochut", - "fontFamily": "Trochut, system-ui", - "slug": "wp-font-lib-trochut", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/trochut/v20/CHyjV-fDDlP9bDIw5nSIfVIPLns.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Trochut" - }, - { - "src": "http://fonts.gstatic.com/s/trochut/v20/CHyhV-fDDlP9bDIw1naCeXAKPns8jw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Trochut" - }, - { - "src": "http://fonts.gstatic.com/s/trochut/v20/CHymV-fDDlP9bDIw3sinWVokMnIllmA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Trochut" - } - ] - }, - { - "name": "Truculenta", - "fontFamily": "Truculenta, sans-serif", - "slug": "wp-font-lib-truculenta", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAjswcFHnJMMhg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Truculenta" - }, - { - "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAiswcFHnJMMhg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Truculenta" - }, - { - "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMg4iswcFHnJMMhg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Truculenta" - }, - { - "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAiswcFHnJMMhg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Truculenta" - }, - { - "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMmIiswcFHnJMMhg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Truculenta" - }, - { - "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMo4lswcFHnJMMhg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Truculenta" - }, - { - "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMrclswcFHnJMMhg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Truculenta" - }, - { - "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAlswcFHnJMMhg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Truculenta" - }, - { - "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMvklswcFHnJMMhg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Truculenta" - } - ] - }, - { - "name": "Trykker", - "fontFamily": "Trykker, serif", - "slug": "wp-font-lib-trykker", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/trykker/v21/KtktALyWZJXudUPzhNnoOd2j22U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Trykker" - } - ] - }, - { - "name": "Tsukimi Rounded", - "fontFamily": "Tsukimi Rounded, sans-serif", - "slug": "wp-font-lib-tsukimi-rounded", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tsukimirounded/v8/sJoZ3LJNksWZO0LvnZwkF3HtoB7VkVsqN7MT3T9X8g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Tsukimi Rounded" - }, - { - "src": "http://fonts.gstatic.com/s/tsukimirounded/v8/sJoc3LJNksWZO0LvnZwkF3HtoB7tPXMOP5gP1A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tsukimi Rounded" - }, - { - "src": "http://fonts.gstatic.com/s/tsukimirounded/v8/sJoZ3LJNksWZO0LvnZwkF3HtoB7VyVoqN7MT3T9X8g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Tsukimi Rounded" - }, - { - "src": "http://fonts.gstatic.com/s/tsukimirounded/v8/sJoZ3LJNksWZO0LvnZwkF3HtoB7V5V0qN7MT3T9X8g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Tsukimi Rounded" - }, - { - "src": "http://fonts.gstatic.com/s/tsukimirounded/v8/sJoZ3LJNksWZO0LvnZwkF3HtoB7VgVwqN7MT3T9X8g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tsukimi Rounded" - } - ] - }, - { - "name": "Tulpen One", - "fontFamily": "Tulpen One, system-ui", - "slug": "wp-font-lib-tulpen-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tulpenone/v21/dFa6ZfeC474skLgesc0CWj0w_HyIRlE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tulpen One" - } - ] - }, - { - "name": "Turret Road", - "fontFamily": "Turret Road, system-ui", - "slug": "wp-font-lib-turret-road", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0ONEdeLYk1Mq3ap.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Turret Road" - }, - { - "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0PpEteLYk1Mq3ap.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Turret Road" - }, - { - "src": "http://fonts.gstatic.com/s/turretroad/v7/pxiAypMgpcBFjE84Zv-fE3tFOvODSVFF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Turret Road" - }, - { - "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0OxE9eLYk1Mq3ap.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Turret Road" - }, - { - "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0P5FdeLYk1Mq3ap.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Turret Road" - }, - { - "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0PlFteLYk1Mq3ap.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Turret Road" - } - ] - }, - { - "name": "Twinkle Star", - "fontFamily": "Twinkle Star, cursive", - "slug": "wp-font-lib-twinkle-star", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/twinklestar/v3/pe0pMI6IL4dPoFl9LGEmY6WaA_Rue1UwVg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Twinkle Star" - } - ] - }, - { - "name": "Ubuntu", - "fontFamily": "Ubuntu, sans-serif", - "slug": "wp-font-lib-ubuntu", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoC1CzTt2aMH4V_gg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Ubuntu" - }, - { - "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZftWyIPYBvgpUI.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Ubuntu" - }, - { - "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgo6eAT3v02QFg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ubuntu" - }, - { - "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCu6KVjbNBYlgoKeg7znUiAFpxm.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Ubuntu" - }, - { - "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3Tt2aMH4V_gg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Ubuntu" - }, - { - "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejYHtGyIPYBvgpUI.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Ubuntu" - }, - { - "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvTt2aMH4V_gg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Ubuntu" - }, - { - "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZPsmyIPYBvgpUI.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Ubuntu" - } - ] - }, - { - "name": "Ubuntu Condensed", - "fontFamily": "Ubuntu Condensed, sans-serif", - "slug": "wp-font-lib-ubuntu-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ubuntucondensed/v16/u-4k0rCzjgs5J7oXnJcM_0kACGMtf-fVqvHoJXw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ubuntu Condensed" - } - ] - }, - { - "name": "Ubuntu Mono", - "fontFamily": "Ubuntu Mono, monospace", - "slug": "wp-font-lib-ubuntu-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ubuntumono/v15/KFOjCneDtsqEr0keqCMhbBc9AMX6lJBP.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ubuntu Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ubuntumono/v15/KFOhCneDtsqEr0keqCMhbCc_CsHYkYBPY3o.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Ubuntu Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ubuntumono/v15/KFO-CneDtsqEr0keqCMhbC-BL-Hyv4xGemO1.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Ubuntu Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ubuntumono/v15/KFO8CneDtsqEr0keqCMhbCc_Mn33tYhkf3O1GVg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Ubuntu Mono" - } - ] - }, - { - "name": "Uchen", - "fontFamily": "Uchen, serif", - "slug": "wp-font-lib-uchen", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/uchen/v7/nKKZ-GokGZ1baIaSEQGodLxA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Uchen" - } - ] - }, - { - "name": "Ultra", - "fontFamily": "Ultra, serif", - "slug": "wp-font-lib-ultra", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ultra/v19/zOLy4prXmrtY-tT6yLOD6NxF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ultra" - } - ] - }, - { - "name": "Unbounded", - "fontFamily": "Unbounded, system-ui", - "slug": "wp-font-lib-unbounded", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG65jx043HgP6LR0Y.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Unbounded" - }, - { - "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG60bx043HgP6LR0Y.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Unbounded" - }, - { - "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6xjx043HgP6LR0Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Unbounded" - }, - { - "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6yrx043HgP6LR0Y.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Unbounded" - }, - { - "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG68b2043HgP6LR0Y.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Unbounded" - }, - { - "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6__2043HgP6LR0Y.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Unbounded" - }, - { - "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG65j2043HgP6LR0Y.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Unbounded" - }, - { - "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG67H2043HgP6LR0Y.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Unbounded" - } - ] - }, - { - "name": "Uncial Antiqua", - "fontFamily": "Uncial Antiqua, system-ui", - "slug": "wp-font-lib-uncial-antiqua", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/uncialantiqua/v20/N0bM2S5WOex4OUbESzoESK-i-PfRS5VBBSSF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Uncial Antiqua" - } - ] - }, - { - "name": "Underdog", - "fontFamily": "Underdog, system-ui", - "slug": "wp-font-lib-underdog", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/underdog/v23/CHygV-jCElj7diMroVSiU14GN2Il.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Underdog" - } - ] - }, - { - "name": "Unica One", - "fontFamily": "Unica One, system-ui", - "slug": "wp-font-lib-unica-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/unicaone/v15/DPEuYwWHyAYGVTSmalshdtffuEY7FA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Unica One" - } - ] - }, - { - "name": "UnifrakturCook", - "fontFamily": "UnifrakturCook, system-ui", - "slug": "wp-font-lib-unifrakturcook", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/unifrakturcook/v19/IurA6Yli8YOdcoky-0PTTdkm56n05Uw13ILXs-h6.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "UnifrakturCook" - } - ] - }, - { - "name": "UnifrakturMaguntia", - "fontFamily": "UnifrakturMaguntia, system-ui", - "slug": "wp-font-lib-unifrakturmaguntia", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/unifrakturmaguntia/v16/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVun2xNNgNa1A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "UnifrakturMaguntia" - } - ] - }, - { - "name": "Unkempt", - "fontFamily": "Unkempt, system-ui", - "slug": "wp-font-lib-unkempt", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/unkempt/v19/2EbnL-Z2DFZue0DSSYYf8z2Yt_c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Unkempt" - }, - { - "src": "http://fonts.gstatic.com/s/unkempt/v19/2EbiL-Z2DFZue0DScTow1zWzq_5uT84.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Unkempt" - } - ] - }, - { - "name": "Unlock", - "fontFamily": "Unlock, system-ui", - "slug": "wp-font-lib-unlock", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/unlock/v24/7Au-p_8ykD-cDl7GKAjSwkUVOQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Unlock" - } - ] - }, - { - "name": "Unna", - "fontFamily": "Unna, serif", - "slug": "wp-font-lib-unna", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/unna/v21/AYCEpXzofN0NCpgBlGHCWFM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Unna" - }, - { - "src": "http://fonts.gstatic.com/s/unna/v21/AYCKpXzofN0NOpoLkEPHSFNyxw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Unna" - }, - { - "src": "http://fonts.gstatic.com/s/unna/v21/AYCLpXzofN0NMiQusGnpRFpr3vc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Unna" - }, - { - "src": "http://fonts.gstatic.com/s/unna/v21/AYCJpXzofN0NOpozLGzjQHhuzvef5Q.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Unna" - } - ] - }, - { - "name": "Updock", - "fontFamily": "Updock, cursive", - "slug": "wp-font-lib-updock", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/updock/v2/nuF4D_3dVZ70UI9SjLK3602XBw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Updock" - } - ] - }, - { - "name": "Urbanist", - "fontFamily": "Urbanist, sans-serif", - "slug": "wp-font-lib-urbanist", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx8fFpOrS8SlKw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSx4fFpOrS8SlKw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDlR4fFpOrS8SlKw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx4fFpOrS8SlKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqD-R4fFpOrS8SlKw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDFRkfFpOrS8SlKw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDLBkfFpOrS8SlKw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSxkfFpOrS8SlKw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDYhkfFpOrS8SlKw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VJmvacG1K4S1.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113VZmvacG1K4S1.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA12pVZmvacG1K4S1.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VZmvacG1K4S1.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA13FVZmvacG1K4S1.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10pUpmvacG1K4S1.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10QUpmvacG1K4S1.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113UpmvacG1K4S1.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA11eUpmvacG1K4S1.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Urbanist" - } - ] - }, - { - "name": "VT323", - "fontFamily": "VT323, monospace", - "slug": "wp-font-lib-vt323", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vt323/v17/pxiKyp0ihIEF2hsYHpT2dkNE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "VT323" - } - ] - }, - { - "name": "Vampiro One", - "fontFamily": "Vampiro One, system-ui", - "slug": "wp-font-lib-vampiro-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vampiroone/v18/gokqH6DoDl5yXvJytFsdLkqnsvhIor3K.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vampiro One" - } - ] - }, - { - "name": "Varela", - "fontFamily": "Varela, sans-serif", - "slug": "wp-font-lib-varela", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/varela/v16/DPEtYwqExx0AWHXJBBQFfvzDsQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Varela" - } - ] - }, - { - "name": "Varela Round", - "fontFamily": "Varela Round, sans-serif", - "slug": "wp-font-lib-varela-round", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/varelaround/v20/w8gdH283Tvk__Lua32TysjIvoMGOD9gxZw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Varela Round" - } - ] - }, - { - "name": "Varta", - "fontFamily": "Varta, sans-serif", - "slug": "wp-font-lib-varta", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x96j4EirE-9PGLfQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Varta" - }, - { - "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9tD4EirE-9PGLfQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Varta" - }, - { - "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9hj4EirE-9PGLfQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Varta" - }, - { - "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9ajkEirE-9PGLfQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Varta" - }, - { - "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9UzkEirE-9PGLfQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Varta" - } - ] - }, - { - "name": "Vast Shadow", - "fontFamily": "Vast Shadow, system-ui", - "slug": "wp-font-lib-vast-shadow", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vastshadow/v15/pe0qMImKOZ1V62ZwbVY9dfe6Kdpickwp.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vast Shadow" - } - ] - }, - { - "name": "Vazirmatn", - "fontFamily": "Vazirmatn, sans-serif", - "slug": "wp-font-lib-vazirmatn", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgyOReZ72DF_QY.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Vazirmatn" - }, - { - "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklegzOReZ72DF_QY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Vazirmatn" - }, - { - "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklTYzOReZ72DF_QY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Vazirmatn" - }, - { - "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgzOReZ72DF_QY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vazirmatn" - }, - { - "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklVozOReZ72DF_QY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Vazirmatn" - }, - { - "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklbY0OReZ72DF_QY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Vazirmatn" - }, - { - "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklY80OReZ72DF_QY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Vazirmatn" - }, - { - "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRkleg0OReZ72DF_QY.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Vazirmatn" - }, - { - "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklcE0OReZ72DF_QY.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Vazirmatn" - } - ] - }, - { - "name": "Vesper Libre", - "fontFamily": "Vesper Libre, serif", - "slug": "wp-font-lib-vesper-libre", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6CNxyWnf-uxPdXDHUD_Rd4D0-N2qIWVQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vesper Libre" - }, - { - "src": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdA-2ap0okKXKvPlw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Vesper Libre" - }, - { - "src": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAs2Cp0okKXKvPlw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Vesper Libre" - }, - { - "src": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAi2Kp0okKXKvPlw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Vesper Libre" - } - ] - }, - { - "name": "Viaoda Libre", - "fontFamily": "Viaoda Libre, system-ui", - "slug": "wp-font-lib-viaoda-libre", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/viaodalibre/v15/vEFW2_lWCgoR6OKuRz9kcRVJb2IY2tOHXg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Viaoda Libre" - } - ] - }, - { - "name": "Vibes", - "fontFamily": "Vibes, system-ui", - "slug": "wp-font-lib-vibes", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vibes/v14/QdVYSTsmIB6tmbd3HpbsuBlh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vibes" - } - ] - }, - { - "name": "Vibur", - "fontFamily": "Vibur, cursive", - "slug": "wp-font-lib-vibur", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vibur/v23/DPEiYwmEzw0QRjTpLjoJd-Xa.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vibur" - } - ] - }, - { - "name": "Vidaloka", - "fontFamily": "Vidaloka, serif", - "slug": "wp-font-lib-vidaloka", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vidaloka/v18/7cHrv4c3ipenMKlEass8yn4hnCci.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vidaloka" - } - ] - }, - { - "name": "Viga", - "fontFamily": "Viga, sans-serif", - "slug": "wp-font-lib-viga", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/viga/v14/xMQbuFFdSaiX_QIjD4e2OX8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Viga" - } - ] - }, - { - "name": "Vina Sans", - "fontFamily": "Vina Sans, system-ui", - "slug": "wp-font-lib-vina-sans", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vinasans/v2/m8JQjfZKf6-d2273MP7zcJ5BZmqa3A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vina Sans" - } - ] - }, - { - "name": "Voces", - "fontFamily": "Voces, system-ui", - "slug": "wp-font-lib-voces", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/voces/v20/-F6_fjJyLyU8d4PBBG7YpzlJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Voces" - } - ] - }, - { - "name": "Volkhov", - "fontFamily": "Volkhov, serif", - "slug": "wp-font-lib-volkhov", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/volkhov/v17/SlGQmQieoJcKemNeQTIOhHxzcD0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Volkhov" - }, - { - "src": "http://fonts.gstatic.com/s/volkhov/v17/SlGSmQieoJcKemNecTAEgF52YD0NYw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Volkhov" - }, - { - "src": "http://fonts.gstatic.com/s/volkhov/v17/SlGVmQieoJcKemNeeY4hoHRYbDQUego.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Volkhov" - }, - { - "src": "http://fonts.gstatic.com/s/volkhov/v17/SlGXmQieoJcKemNecTA8PHFSaBYRagrQrA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Volkhov" - } - ] - }, - { - "name": "Vollkorn", - "fontFamily": "Vollkorn, serif", - "slug": "wp-font-lib-vollkorn", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2MHGuGWOdEbD63w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vollkorn" - }, - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2AnGuGWOdEbD63w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Vollkorn" - }, - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df27nauGWOdEbD63w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Vollkorn" - }, - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df213auGWOdEbD63w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Vollkorn" - }, - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2sHauGWOdEbD63w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Vollkorn" - }, - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2mXauGWOdEbD63w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Vollkorn" - }, - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJGWmmZM7Xq34g9.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Vollkorn" - }, - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJ0WmmZM7Xq34g9.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Vollkorn" - }, - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKYXWmZM7Xq34g9.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Vollkorn" - }, - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKhXWmZM7Xq34g9.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Vollkorn" - }, - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLGXWmZM7Xq34g9.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Vollkorn" - }, - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLvXWmZM7Xq34g9.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Vollkorn" - } - ] - }, - { - "name": "Vollkorn SC", - "fontFamily": "Vollkorn SC, serif", - "slug": "wp-font-lib-vollkorn-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_v6-zQ3rXpceZj9cqnVhF5NH-iSq_E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vollkorn SC" - }, - { - "src": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVimhGluqYbPN5Yjn.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Vollkorn SC" - }, - { - "src": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVinFG1uqYbPN5Yjn.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Vollkorn SC" - }, - { - "src": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVin9GVuqYbPN5Yjn.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Vollkorn SC" - } - ] - }, - { - "name": "Voltaire", - "fontFamily": "Voltaire, sans-serif", - "slug": "wp-font-lib-voltaire", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/voltaire/v18/1Pttg8PcRfSblAvGvQooYKVnBOif.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Voltaire" - } - ] - }, - { - "name": "Vujahday Script", - "fontFamily": "Vujahday Script, cursive", - "slug": "wp-font-lib-vujahday-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vujahdayscript/v4/RWmQoKGA8fEkrIPtSZ3_J7er2dUiDEtvAlaMKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vujahday Script" - } - ] - }, - { - "name": "Waiting for the Sunrise", - "fontFamily": "Waiting for the Sunrise, cursive", - "slug": "wp-font-lib-waiting-for-the-sunrise", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/waitingforthesunrise/v16/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZQ9h_ZYk5J.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Waiting for the Sunrise" - } - ] - }, - { - "name": "Wallpoet", - "fontFamily": "Wallpoet, system-ui", - "slug": "wp-font-lib-wallpoet", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/wallpoet/v16/f0X10em2_8RnXVVdUNbu7cXP8L8G.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Wallpoet" - } - ] - }, - { - "name": "Walter Turncoat", - "fontFamily": "Walter Turncoat, cursive", - "slug": "wp-font-lib-walter-turncoat", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/walterturncoat/v19/snfys0Gs98ln43n0d-14ULoToe67YB2dQ5ZPqQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Walter Turncoat" - } - ] - }, - { - "name": "Warnes", - "fontFamily": "Warnes, system-ui", - "slug": "wp-font-lib-warnes", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/warnes/v25/pONn1hc0GsW6sW5OpiC2o6Lkqg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Warnes" - } - ] - }, - { - "name": "Water Brush", - "fontFamily": "Water Brush, cursive", - "slug": "wp-font-lib-water-brush", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/waterbrush/v2/AYCPpXPqc8cJWLhp4hywKHJq7PKP5Z_G.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Water Brush" - } - ] - }, - { - "name": "Waterfall", - "fontFamily": "Waterfall, cursive", - "slug": "wp-font-lib-waterfall", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/waterfall/v3/MCoRzAfo293fACdFKcwY2rH8D_EZwA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Waterfall" - } - ] - }, - { - "name": "Wellfleet", - "fontFamily": "Wellfleet, system-ui", - "slug": "wp-font-lib-wellfleet", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/wellfleet/v20/nuF7D_LfQJb3VYgX6eyT42aLDhO2HA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Wellfleet" - } - ] - }, - { - "name": "Wendy One", - "fontFamily": "Wendy One, sans-serif", - "slug": "wp-font-lib-wendy-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/wendyone/v15/2sDcZGJOipXfgfXV5wgDb2-4C7wFZQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Wendy One" - } - ] - }, - { - "name": "Whisper", - "fontFamily": "Whisper, cursive", - "slug": "wp-font-lib-whisper", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/whisper/v2/q5uHsoqtKftx74K9milCBxxdmYU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Whisper" - } - ] - }, - { - "name": "WindSong", - "fontFamily": "WindSong, cursive", - "slug": "wp-font-lib-windsong", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/windsong/v8/KR1WBsyu-P-GFEW57r95HdG6vjH3.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "WindSong" - }, - { - "src": "http://fonts.gstatic.com/s/windsong/v8/KR1RBsyu-P-GFEW57oeNNPWylS3-jVXm.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "WindSong" - } - ] - }, - { - "name": "Wire One", - "fontFamily": "Wire One, sans-serif", - "slug": "wp-font-lib-wire-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/wireone/v24/qFdH35Wah5htUhV75WGiWdrCwwcJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Wire One" - } - ] - }, - { - "name": "Wix Madefor Display", - "fontFamily": "Wix Madefor Display, sans-serif", - "slug": "wp-font-lib-wix-madefor-display", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYFhYltkv_3HQKgh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Display" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYFTYltkv_3HQKgh.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Display" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYG_ZVtkv_3HQKgh.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Display" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYGGZVtkv_3HQKgh.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Display" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYHhZVtkv_3HQKgh.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Display" - } - ] - }, - { - "name": "Wix Madefor Text", - "fontFamily": "Wix Madefor Text, sans-serif", - "slug": "wp-font-lib-wix-madefor-text", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cK_NOeFgpRt9rN5.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Text" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3dw_GiJBP86N53IY.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Wix Madefor Text" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cKNNOeFgpRt9rN5.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Text" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3dz3GiJBP86N53IY.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Wix Madefor Text" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cJhM-eFgpRt9rN5.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Text" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3d9HBiJBP86N53IY.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Wix Madefor Text" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cJYM-eFgpRt9rN5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Text" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3d-jBiJBP86N53IY.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Wix Madefor Text" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cI_M-eFgpRt9rN5.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Text" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3d4_BiJBP86N53IY.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Wix Madefor Text" - } - ] - }, - { - "name": "Work Sans", - "fontFamily": "Work Sans, sans-serif", - "slug": "wp-font-lib-work-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nWNigDp6_cOyA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nXNigDp6_cOyA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32KxfXNigDp6_cOyA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNigDp6_cOyA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K3vXNigDp6_cOyA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQNigDp6_cOyA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K67QNigDp6_cOyA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nQNigDp6_cOyA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K-DQNigDp6_cOyA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3moJo43ZKyDSQQ.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmsJo43ZKyDSQQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUgGsJo43ZKyDSQQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3msJo43ZKyDSQQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU7GsJo43ZKyDSQQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUAGwJo43ZKyDSQQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUOWwJo43ZKyDSQQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmwJo43ZKyDSQQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUd2wJo43ZKyDSQQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Work Sans" - } - ] - }, - { - "name": "Xanh Mono", - "fontFamily": "Xanh Mono, monospace", - "slug": "wp-font-lib-xanh-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/xanhmono/v17/R70YjykVmvKCep-vWhSYmACQXzLhTg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Xanh Mono" - }, - { - "src": "http://fonts.gstatic.com/s/xanhmono/v17/R70ejykVmvKCep-vWhSomgqUfTfxTo24.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Xanh Mono" - } - ] - }, - { - "name": "Yaldevi", - "fontFamily": "Yaldevi, sans-serif", - "slug": "wp-font-lib-yaldevi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpfxJzvobxLCBJkS.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Yaldevi" - }, - { - "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpcvJzvobxLCBJkS.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Yaldevi" - }, - { - "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdxJzvobxLCBJkS.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yaldevi" - }, - { - "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdDJzvobxLCBJkS.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Yaldevi" - }, - { - "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpevIDvobxLCBJkS.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Yaldevi" - }, - { - "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpeWIDvobxLCBJkS.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Yaldevi" - } - ] - }, - { - "name": "Yanone Kaffeesatz", - "fontFamily": "Yanone Kaffeesatz, sans-serif", - "slug": "wp-font-lib-yanone-kaffeesatz", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftodtWpcGuLCnXkVA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Yanone Kaffeesatz" - }, - { - "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoqNWpcGuLCnXkVA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Yanone Kaffeesatz" - }, - { - "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIfto9tWpcGuLCnXkVA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yanone Kaffeesatz" - }, - { - "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoxNWpcGuLCnXkVA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Yanone Kaffeesatz" - }, - { - "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoKNKpcGuLCnXkVA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Yanone Kaffeesatz" - }, - { - "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoEdKpcGuLCnXkVA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Yanone Kaffeesatz" - } - ] - }, - { - "name": "Yantramanav", - "fontFamily": "Yantramanav, sans-serif", - "slug": "wp-font-lib-yantramanav", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yantramanav/v11/flU-Rqu5zY00QEpyWJYWN5-QXeNzDB41rZg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Yantramanav" - }, - { - "src": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59Yf8NZIhI8tIHh.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Yantramanav" - }, - { - "src": "http://fonts.gstatic.com/s/yantramanav/v11/flU8Rqu5zY00QEpyWJYWN6f0V-dRCQ41.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yantramanav" - }, - { - "src": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN58AfsNZIhI8tIHh.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Yantramanav" - }, - { - "src": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59IeMNZIhI8tIHh.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Yantramanav" - }, - { - "src": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59wesNZIhI8tIHh.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Yantramanav" - } - ] - }, - { - "name": "Yatra One", - "fontFamily": "Yatra One, system-ui", - "slug": "wp-font-lib-yatra-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yatraone/v14/C8ch4copsHzj8p7NaF0xw1OBbRDvXw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yatra One" - } - ] - }, - { - "name": "Yellowtail", - "fontFamily": "Yellowtail, cursive", - "slug": "wp-font-lib-yellowtail", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yellowtail/v18/OZpGg_pnoDtINPfRIlLotlzNwED-b4g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yellowtail" - } - ] - }, - { - "name": "Yeon Sung", - "fontFamily": "Yeon Sung, system-ui", - "slug": "wp-font-lib-yeon-sung", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yeonsung/v20/QldMNTpbohAGtsJvUn6xSVNazqx2xg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yeon Sung" - } - ] - }, - { - "name": "Yeseva One", - "fontFamily": "Yeseva One, system-ui", - "slug": "wp-font-lib-yeseva-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yesevaone/v20/OpNJno4ck8vc-xYpwWWxpipfWhXD00c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yeseva One" - } - ] - }, - { - "name": "Yesteryear", - "fontFamily": "Yesteryear, cursive", - "slug": "wp-font-lib-yesteryear", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yesteryear/v14/dg4g_p78rroaKl8kRKo1r7wHTwonmyw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yesteryear" - } - ] - }, - { - "name": "Yomogi", - "fontFamily": "Yomogi, cursive", - "slug": "wp-font-lib-yomogi", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yomogi/v8/VuJwdNrS2ZL7rpoPWIz5NIh-YA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yomogi" - } - ] - }, - { - "name": "Yrsa", - "fontFamily": "Yrsa, serif", - "slug": "wp-font-lib-yrsa", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCjASNNV9rRPfrKu.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Yrsa" - }, - { - "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCieSNNV9rRPfrKu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yrsa" - }, - { - "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCisSNNV9rRPfrKu.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Yrsa" - }, - { - "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaChAT9NV9rRPfrKu.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Yrsa" - }, - { - "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCh5T9NV9rRPfrKu.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Yrsa" - }, - { - "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC2UW_LBte6KuGEo.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Yrsa" - }, - { - "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WCzsW_LBte6KuGEo.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Yrsa" - }, - { - "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WCwkW_LBte6KuGEo.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Yrsa" - }, - { - "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC-UR_LBte6KuGEo.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Yrsa" - }, - { - "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC9wR_LBte6KuGEo.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Yrsa" - } - ] - }, - { - "name": "Ysabeau", - "fontFamily": "Ysabeau, sans-serif", - "slug": "wp-font-lib-ysabeau", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OWCTYwI8Gcw6Oi.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7MWCDYwI8Gcw6Oi.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7PICDYwI8Gcw6Oi.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OWCDYwI8Gcw6Oi.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OkCDYwI8Gcw6Oi.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7NIDzYwI8Gcw6Oi.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7NxDzYwI8Gcw6Oi.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7MWDzYwI8Gcw6Oi.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7M_DzYwI8Gcw6Oi.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS95yKcW-xrOiIUw.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS15zKcW-xrOiIUw.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS4BzKcW-xrOiIUw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS95zKcW-xrOiIUw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS-xzKcW-xrOiIUw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeSwB0KcW-xrOiIUw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeSzl0KcW-xrOiIUw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS150KcW-xrOiIUw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS3d0KcW-xrOiIUw.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Ysabeau" - } - ] - }, - { - "name": "Yuji Boku", - "fontFamily": "Yuji Boku, serif", - "slug": "wp-font-lib-yuji-boku", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yujiboku/v5/P5sAzZybeNzXsA9xj1Fkjb2r2dgvJA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yuji Boku" - } - ] - }, - { - "name": "Yuji Hentaigana Akari", - "fontFamily": "Yuji Hentaigana Akari, cursive", - "slug": "wp-font-lib-yuji-hentaigana-akari", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yujihentaiganaakari/v11/cY9bfiyVT0VB6QuhWKOrpr6z58lnb_zYFnLIRTzODYALaA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yuji Hentaigana Akari" - } - ] - }, - { - "name": "Yuji Hentaigana Akebono", - "fontFamily": "Yuji Hentaigana Akebono, cursive", - "slug": "wp-font-lib-yuji-hentaigana-akebono", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yujihentaiganaakebono/v12/EJRGQhkhRNwM-RtitGUwh930GU_f5KAlkuL0wQy9NKXRzrrF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yuji Hentaigana Akebono" - } - ] - }, - { - "name": "Yuji Mai", - "fontFamily": "Yuji Mai, serif", - "slug": "wp-font-lib-yuji-mai", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yujimai/v5/ZgNQjPxdJ7DEHrS0gC38hmHmNpCO.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yuji Mai" - } - ] - }, - { - "name": "Yuji Syuku", - "fontFamily": "Yuji Syuku, serif", - "slug": "wp-font-lib-yuji-syuku", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yujisyuku/v5/BngNUXdTV3vO6Lw5ApOPqPfgwqiA-Rk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yuji Syuku" - } - ] - }, - { - "name": "Yusei Magic", - "fontFamily": "Yusei Magic, sans-serif", - "slug": "wp-font-lib-yusei-magic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yuseimagic/v12/yYLt0hbAyuCmoo5wlhPkpjHR-tdfcIT_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yusei Magic" - } - ] - }, - { - "name": "ZCOOL KuaiLe", - "fontFamily": "ZCOOL KuaiLe, sans-serif", - "slug": "wp-font-lib-zcool-kuaile", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zcoolkuaile/v19/tssqApdaRQokwFjFJjvM6h2WpozzoXhC2g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "ZCOOL KuaiLe" - } - ] - }, - { - "name": "ZCOOL QingKe HuangYou", - "fontFamily": "ZCOOL QingKe HuangYou, sans-serif", - "slug": "wp-font-lib-zcool-qingke-huangyou", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zcoolqingkehuangyou/v15/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mRIi_28c8bHWA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "ZCOOL QingKe HuangYou" - } - ] - }, - { - "name": "ZCOOL XiaoWei", - "fontFamily": "ZCOOL XiaoWei, sans-serif", - "slug": "wp-font-lib-zcool-xiaowei", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zcoolxiaowei/v14/i7dMIFFrTRywPpUVX9_RJyM1YFKQHwyVd3U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "ZCOOL XiaoWei" - } - ] - }, - { - "name": "Zen Antique", - "fontFamily": "Zen Antique, serif", - "slug": "wp-font-lib-zen-antique", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zenantique/v12/AYCPpXPnd91Ma_Zf-Ri2JXJq7PKP5Z_G.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Antique" - } - ] - }, - { - "name": "Zen Antique Soft", - "fontFamily": "Zen Antique Soft, serif", - "slug": "wp-font-lib-zen-antique-soft", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zenantiquesoft/v12/DtV4JwqzSL1q_KwnEWMc_3xfgW6ihwBmkui5HNg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Antique Soft" - } - ] - }, - { - "name": "Zen Dots", - "fontFamily": "Zen Dots, system-ui", - "slug": "wp-font-lib-zen-dots", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zendots/v10/XRXX3ICfm00IGoesQeaETM_FcCIG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Dots" - } - ] - }, - { - "name": "Zen Kaku Gothic Antique", - "fontFamily": "Zen Kaku Gothic Antique, sans-serif", - "slug": "wp-font-lib-zen-kaku-gothic-antique", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cM9TarWJtyZyGU.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic Antique" - }, - { - "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLQKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB21-g3RKjc4d7.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic Antique" - }, - { - "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22dU9DarWJtyZyGU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic Antique" - }, - { - "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cc8jarWJtyZyGU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic Antique" - }, - { - "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22ck8DarWJtyZyGU.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic Antique" - } - ] - }, - { - "name": "Zen Kaku Gothic New", - "fontFamily": "Zen Kaku Gothic New, sans-serif", - "slug": "wp-font-lib-zen-kaku-gothic-new", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqpdKaWTSTGlMyd8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic New" - }, - { - "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMYW2drQpDw0GjzrVNFf_valaDBcznOkjtiTWz5UGA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic New" - }, - { - "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqs9LaWTSTGlMyd8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic New" - }, - { - "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqodNaWTSTGlMyd8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic New" - }, - { - "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqr9PaWTSTGlMyd8.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic New" - } - ] - }, - { - "name": "Zen Kurenaido", - "fontFamily": "Zen Kurenaido, sans-serif", - "slug": "wp-font-lib-zen-kurenaido", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zenkurenaido/v13/3XFsEr0515BK2u6UUptu_gWJZfz22PRLd0U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Kurenaido" - } - ] - }, - { - "name": "Zen Loop", - "fontFamily": "Zen Loop, system-ui", - "slug": "wp-font-lib-zen-loop", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zenloop/v7/h0GrssK16UsnJwHsEK9zqwzX5vOG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Loop" - }, - { - "src": "http://fonts.gstatic.com/s/zenloop/v7/h0GtssK16UsnJwHsEJ9xoQj14-OGJ0w.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Zen Loop" - } - ] - }, - { - "name": "Zen Maru Gothic", - "fontFamily": "Zen Maru Gothic, sans-serif", - "slug": "wp-font-lib-zen-maru-gothic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-cQWpCPJqa_ajlvw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Zen Maru Gothic" - }, - { - "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0SIpIxzW5b-RxT-6A8jWAtCp-k7UJmNLGG9A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Maru Gothic" - }, - { - "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-cGWtCPJqa_ajlvw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Zen Maru Gothic" - }, - { - "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-cUW1CPJqa_ajlvw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Zen Maru Gothic" - }, - { - "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-caW9CPJqa_ajlvw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Zen Maru Gothic" - } - ] - }, - { - "name": "Zen Old Mincho", - "fontFamily": "Zen Old Mincho, serif", - "slug": "wp-font-lib-zen-old-mincho", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss0ApVaYytLwxTqcxfMyBveyYb3g31S2s8p.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Old Mincho" - }, - { - "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb4Dqlla8dMgPgBu.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Zen Old Mincho" - }, - { - "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb4vrVla8dMgPgBu.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Zen Old Mincho" - }, - { - "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb5LrFla8dMgPgBu.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Zen Old Mincho" - }, - { - "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb5zrlla8dMgPgBu.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Zen Old Mincho" - } - ] - }, - { - "name": "Zen Tokyo Zoo", - "fontFamily": "Zen Tokyo Zoo, system-ui", - "slug": "wp-font-lib-zen-tokyo-zoo", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zentokyozoo/v7/NGSyv5ffC0J_BK6aFNtr6sRv8a1uRWe9amg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Tokyo Zoo" - } - ] - }, - { - "name": "Zeyada", - "fontFamily": "Zeyada, cursive", - "slug": "wp-font-lib-zeyada", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zeyada/v15/11hAGpPTxVPUbgZDNGatWKaZ3g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zeyada" - } - ] - }, - { - "name": "Zhi Mang Xing", - "fontFamily": "Zhi Mang Xing, cursive", - "slug": "wp-font-lib-zhi-mang-xing", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zhimangxing/v17/f0Xw0ey79sErYFtWQ9a2rq-g0actfektIJ0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zhi Mang Xing" - } - ] - }, - { - "name": "Zilla Slab", - "fontFamily": "Zilla Slab, serif", - "slug": "wp-font-lib-zilla-slab", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYpEY2HSjWlhzbaw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Zilla Slab" - }, - { - "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CVHapXnp2fazkfg.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Zilla Slab" - }, - { - "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa6ZfeM_74wlPZtksIFWj0w_HyIRlE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zilla Slab" - }, - { - "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa4ZfeM_74wlPZtksIFaj86-F6NVlFqdA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Zilla Slab" - }, - { - "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYskZ2HSjWlhzbaw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Zilla Slab" - }, - { - "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CDHepXnp2fazkfg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Zilla Slab" - }, - { - "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYuUe2HSjWlhzbaw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Zilla Slab" - }, - { - "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CIHCpXnp2fazkfg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Zilla Slab" - }, - { - "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYoEf2HSjWlhzbaw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Zilla Slab" - }, - { - "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CRHGpXnp2fazkfg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Zilla Slab" - } - ] - }, - { - "name": "Zilla Slab Highlight", - "fontFamily": "Zilla Slab Highlight, system-ui", - "slug": "wp-font-lib-zilla-slab-highlight", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zillaslabhighlight/v17/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtIY2DwSXlM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zilla Slab Highlight" - }, - { - "src": "http://fonts.gstatic.com/s/zillaslabhighlight/v17/gNMUW2BrTpK8-inLtBJgMMfbm6uNVDvRxiP0TET4YmVF0Mb6.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Zilla Slab Highlight" - } - ] - } - ], - "categories": [ - "sans-serif", - "serif", - "display", - "handwriting", - "monospace" - ] -} From 357ad1c821aa2c4e009607557835faa11414c2d6 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 2 Aug 2023 16:06:38 -0300 Subject: [PATCH 109/169] PHP code formatting --- .../fonts-library/class-wp-font-family.php | 32 +++++----- .../fonts-library/class-wp-fonts-library.php | 8 +-- ...class-wp-rest-fonts-library-controller.php | 2 +- .../class-wp-font-family-test.php | 58 +++++++++---------- .../class-wp-fonts-library-test.php | 28 ++++----- 5 files changed, 65 insertions(+), 63 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index a087fb9e623490..e287adee3e3e03 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -152,16 +152,17 @@ private function download_asset( $src, $filename ) { return false; } - $overrides = array ( - 'action' => 'wp_handle_font_upload', // Arbitrary string to avoid the is_uploaded_file() check applied when using 'wp_handle_upload'. - 'test_form' => false, // We are not testing a form submission. - 'test_type' => false, // Seems like we can not test mime type for files that are not images. See this function docs: https://developer.wordpress.org/reference/functions/wp_check_filetype_and_ext/ - 'unique_filename_callback' => function () use ($filename) { return $filename; }, // We want to keep the original filename. + $overrides = array( + 'action' => 'wp_handle_font_upload', // Arbitrary string to avoid the is_uploaded_file() check applied when using 'wp_handle_upload'. + 'test_form' => false, // We are not testing a form submission. + 'test_type' => false, // Seems like we can not test mime type for files that are not images. See this function docs: https://developer.wordpress.org/reference/functions/wp_check_filetype_and_ext/ + 'unique_filename_callback' => function () use ( $filename ) { + return $filename; }, // We want to keep the original filename. ); - $file = array ( + $file = array( 'tmp_name' => $temp_file, - 'name' => $filename, + 'name' => $filename, ); $handled_file = wp_handle_upload( $file, $overrides ); @@ -169,7 +170,7 @@ private function download_asset( $src, $filename ) { // Cleans the temp file. @unlink( $temp_file ); - if ( !isset ( $handled_file['url'] ) ) { + if ( ! isset( $handled_file['url'] ) ) { return false; } @@ -203,11 +204,12 @@ private function move_font_face_asset( $font_face, $file ) { require_once ABSPATH . 'wp-admin/includes/file.php'; } - $overrides = array ( - 'action' => 'wp_handle_font_upload', // Arbitrary string to avoid the is_uploaded_file() check applied when using 'wp_handle_upload'. - 'test_form' => false, // We are not testing a form submission. - 'test_type' => false, // Seems like we can not test mime type for files that are not images. See this function docs: https://developer.wordpress.org/reference/functions/wp_check_filetype_and_ext/ - 'unique_filename_callback' => function () use ($filename) { return $filename; }, // We want to keep the original filename. + $overrides = array( + 'action' => 'wp_handle_font_upload', // Arbitrary string to avoid the is_uploaded_file() check applied when using 'wp_handle_upload'. + 'test_form' => false, // We are not testing a form submission. + 'test_type' => false, // Seems like we can not test mime type for files that are not images. See this function docs: https://developer.wordpress.org/reference/functions/wp_check_filetype_and_ext/ + 'unique_filename_callback' => function () use ( $filename ) { + return $filename; }, // We want to keep the original filename. ); $handled_file = wp_handle_upload( $file, $overrides ); @@ -292,12 +294,12 @@ private function download_or_move_font_faces( $files ) { $new_font_face = $font_face; // If we are installing google fonts, we need to download the font face assets. - if ( !empty ( $font_face['download_from_url'] ) ) { + if ( ! empty( $font_face['download_from_url'] ) ) { $new_font_face = $this->download_font_face_assets( $new_font_face ); } // If we are installing local fonts, we need to move the font face assets from the temp folder to the wp fonts directory. - if ( ! empty ( $font_face['uploaded_file'] ) && ! empty( $files ) ) { + if ( ! empty( $font_face['uploaded_file'] ) && ! empty( $files ) ) { $new_font_face = $this->move_font_face_asset( $new_font_face, $files[ $new_font_face['uploaded_file'] ] ); } diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index c262905a0b832b..fed57ff9c081ab 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -27,7 +27,7 @@ class WP_Fonts_Library { /** * Get the upload directory for fonts. - * + * * @return string Path of the upload directory for fonts. */ public static function get_fonts_dir() { @@ -36,14 +36,14 @@ public static function get_fonts_dir() { /* * Sets the upload directory for fonts. - * + * * @param array $defaults Default upload directory. * @return array Modified upload directory. */ public static function set_upload_dir( $defaults ) { $defaults['subdir'] = '/fonts'; - $defaults['path'] = $defaults['basedir'] . $defaults['subdir']; - $defaults['url'] = $defaults['baseurl'] . $defaults['subdir']; + $defaults['path'] = $defaults['basedir'] . $defaults['subdir']; + $defaults['url'] = $defaults['baseurl'] . $defaults['subdir']; return $defaults; } diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index 654a517b761d45..efdfcf23838035 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -92,7 +92,7 @@ public function update_fonts_library_permissions_check() { } // The update endpoints requires write access to the temp and the fonts directories. - $temp_dir = get_temp_dir(); + $temp_dir = get_temp_dir(); $upload_dir = wp_upload_dir()['basedir']; if ( ! is_writable( $temp_dir ) || ! wp_is_writable( $upload_dir ) ) { return new WP_Error( diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 110763c5f37cef..c2c5ead9255e12 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -194,10 +194,10 @@ public function data_font_fixtures() { 'fontFamily' => 'Piazzolla', 'fontFace' => array( array( - 'fontFamily' => 'Piazzolla', - 'fontStyle' => 'italic', - 'fontWeight' => '400', - 'src' => 'http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf', + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'italic', + 'fontWeight' => '400', + 'src' => 'http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf', 'download_from_url' => 'http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf', ), ), @@ -215,7 +215,7 @@ public function data_font_fixtures() { ), ), ), - 'files_data' => null, + 'files_data' => null, ), 'with_one_google_font_face_to_not_be_downloaded' => array( 'font_data' => array( @@ -227,7 +227,7 @@ public function data_font_fixtures() { 'fontFamily' => 'Piazzolla', 'fontStyle' => 'italic', 'fontWeight' => '400', - 'src' => 'http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf', + 'src' => 'http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf', ), ), ), @@ -244,9 +244,9 @@ public function data_font_fixtures() { ), ), ), - 'files_data' => null, + 'files_data' => null, ), - 'without_font_faces' => array( + 'without_font_faces' => array( 'font_data' => array( 'name' => 'Arial', 'slug' => 'arial', @@ -259,25 +259,25 @@ public function data_font_fixtures() { 'fontFamily' => 'Arial', 'fontFace' => array(), ), - 'files_data' => null, + 'files_data' => null, ), - 'with_local_files' => array( + 'with_local_files' => array( 'font_data' => array( 'name' => 'Inter', 'slug' => 'inter', 'fontFamily' => 'Inter', 'fontFace' => array( array( - 'fontFamily' => 'Inter', - 'fontStyle' => 'normal', - 'fontWeight' => '400', - 'uploaded_file' => 'files0', + 'fontFamily' => 'Inter', + 'fontStyle' => 'normal', + 'fontWeight' => '400', + 'uploaded_file' => 'files0', ), array( - 'fontFamily' => 'Inter', - 'fontStyle' => 'normal', - 'fontWeight' => '500', - 'uploaded_file' => 'files1', + 'fontFamily' => 'Inter', + 'fontStyle' => 'normal', + 'fontWeight' => '500', + 'uploaded_file' => 'files1', ), ), ), @@ -302,21 +302,21 @@ public function data_font_fixtures() { ), 'files_data' => array( 'files0' => array( - 'name' => 'inter1.ttf', - 'type' => 'font/ttf', - 'tmp_name' => $temp_file_path1, - 'error' => 0, - 'size' => 123, + 'name' => 'inter1.ttf', + 'type' => 'font/ttf', + 'tmp_name' => $temp_file_path1, + 'error' => 0, + 'size' => 123, ), 'files1' => array( - 'name' => 'inter2.ttf', - 'type' => 'font/ttf', - 'tmp_name' => $temp_file_path2, - 'error' => 0, - 'size' => 123, + 'name' => 'inter2.ttf', + 'type' => 'font/ttf', + 'tmp_name' => $temp_file_path2, + 'error' => 0, + 'size' => 123, ), ), - ) + ), ); } } diff --git a/phpunit/fonts-library/class-wp-fonts-library-test.php b/phpunit/fonts-library/class-wp-fonts-library-test.php index bce9e3a120ec8d..53775a98a0a7a5 100644 --- a/phpunit/fonts-library/class-wp-fonts-library-test.php +++ b/phpunit/fonts-library/class-wp-fonts-library-test.php @@ -20,33 +20,33 @@ public function test_get_fonts_dir() { /** * @covers ::set_upload_dir - * + * * @dataProvider data_set_upload_dir - * + * * @param array $defaults Default upload directory data. * @param array $xpected Modified upload directory data. */ public function test_set_upload_dir( $defaults, $xpected ) { - $this->assertEquals( $xpected , WP_Fonts_Library::set_upload_dir( $defaults ) ); + $this->assertEquals( $xpected, WP_Fonts_Library::set_upload_dir( $defaults ) ); } - public function data_set_upload_dir () { - return array ( - 'fonts_subdir' => array ( - 'defaults' => array ( - 'subdir' => '/abc', + public function data_set_upload_dir() { + return array( + 'fonts_subdir' => array( + 'defaults' => array( + 'subdir' => '/abc', 'basedir' => '/var/www/html/wp-content/uploads', 'baseurl' => 'http://example.com/wp-content/uploads', ), - 'expected'=> array ( - 'subdir' => '/fonts', + 'expected' => array( + 'subdir' => '/fonts', 'basedir' => '/var/www/html/wp-content/uploads', 'baseurl' => 'http://example.com/wp-content/uploads', - 'path' => '/var/www/html/wp-content/uploads/fonts', - 'url' => 'http://example.com/wp-content/uploads/fonts', - ) + 'path' => '/var/www/html/wp-content/uploads/fonts', + 'url' => 'http://example.com/wp-content/uploads/fonts', + ), ), ); } - + } From 9d4d51478b67f1f40288e7f0eaec57c708675ddb Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 3 Aug 2023 12:17:35 -0300 Subject: [PATCH 110/169] lint --- .../class-wp-font-family-utils.php | 2 +- .../fonts-library/class-wp-font-family.php | 6 ++-- .../class-wp-font-family-test.php | 32 +++++++++---------- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family-utils.php b/lib/experimental/fonts-library/class-wp-font-family-utils.php index 33a074c54be6ea..7674e1715df28d 100644 --- a/lib/experimental/fonts-library/class-wp-font-family-utils.php +++ b/lib/experimental/fonts-library/class-wp-font-family-utils.php @@ -26,7 +26,7 @@ class WP_Font_Family_Utils { * @param string $font_slug The font slug to use in the filename. * @param array $font_face The font face array containing 'fontFamily', 'fontStyle', and 'fontWeight' attributes. * @param string $url The URL of the font face asset, used to derive the file extension. - * @param string $suffix Optional suffix added to the resulting filename + * @param string $suffix Optional suffix added to the resulting filename. * @return string The generated filename for the font face asset. */ public static function get_filename_from_font_face( $font_slug, $font_face, $url, $suffix = '' ) { diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index e287adee3e3e03..d34c6c1e92fa0c 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -155,7 +155,7 @@ private function download_asset( $src, $filename ) { $overrides = array( 'action' => 'wp_handle_font_upload', // Arbitrary string to avoid the is_uploaded_file() check applied when using 'wp_handle_upload'. 'test_form' => false, // We are not testing a form submission. - 'test_type' => false, // Seems like we can not test mime type for files that are not images. See this function docs: https://developer.wordpress.org/reference/functions/wp_check_filetype_and_ext/ + 'test_type' => false, // Seems like we can not test mime type for files that are not images. See this function docs: https://developer.wordpress.org/reference/functions/wp_check_filetype_and_ext/ . 'unique_filename_callback' => function () use ( $filename ) { return $filename; }, // We want to keep the original filename. ); @@ -207,7 +207,7 @@ private function move_font_face_asset( $font_face, $file ) { $overrides = array( 'action' => 'wp_handle_font_upload', // Arbitrary string to avoid the is_uploaded_file() check applied when using 'wp_handle_upload'. 'test_form' => false, // We are not testing a form submission. - 'test_type' => false, // Seems like we can not test mime type for files that are not images. See this function docs: https://developer.wordpress.org/reference/functions/wp_check_filetype_and_ext/ + 'test_type' => false, // Seems like we can not test mime type for files that are not images. See this function docs: https://developer.wordpress.org/reference/functions/wp_check_filetype_and_ext/ . 'unique_filename_callback' => function () use ( $filename ) { return $filename; }, // We want to keep the original filename. ); @@ -290,7 +290,7 @@ private function download_or_move_font_faces( $files ) { } $new_font_faces = array(); foreach ( $this->data['fontFace'] as $font_face ) { - // If the fonts is not meant to be dowloaded or uploaded (for example to install fonts that use a remote url) + // If the fonts is not meant to be dowloaded or uploaded (for example to install fonts that use a remote url). $new_font_face = $font_face; // If we are installing google fonts, we need to download the font face assets. diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index c2c5ead9255e12..9adb9fb972ff3e 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -6,9 +6,9 @@ * @subpackage Fonts Library */ - /** - * @coversDefaultClass WP_Font_Family - */ +/** + * @coversDefaultClass WP_Font_Family + */ class WP_Font_Family_Test extends WP_UnitTestCase { /** @@ -19,7 +19,7 @@ class WP_Font_Family_Test extends WP_UnitTestCase { * * @dataProvider data_font_fixtures * - * @param array $font_data Font family data in theme.json format + * @param array $font_data Font family data in theme.json format. */ public function test_get_data( $font_data ) { $font = new WP_Font_Family( $font_data ); @@ -33,8 +33,8 @@ public function test_get_data( $font_data ) { * * @dataProvider data_get_data_as_json * - * @param array $font_data Font family data in theme.json format - * @param string $expected Expected font family data as JSON string + * @param array $font_data Font family data in theme.json format. + * @param string $expected Expected font family data as JSON string. */ public function test_get_data_as_json( $font_data, $expected ) { $font = new WP_Font_Family( $font_data ); @@ -90,8 +90,8 @@ public function data_get_data_as_json() { * * @dataProvider data_has_font_faces * - * @param array $font_data Font family data in theme.json format - * @param bool $expected Expected result + * @param array $font_data Font family data in theme.json format. + * @param bool $expected Expected result. */ public function test_has_font_faces( $font_data, $expected ) { $font = new WP_Font_Family( $font_data ); @@ -143,19 +143,19 @@ public function data_has_font_faces() { * * @dataProvider data_font_fixtures * - * @param array $font_data Font family data in theme.json format - * @param array $installed_font_data Font family data in theme.json format expected data after installation + * @param array $font_data Font family data in theme.json format. + * @param array $installed_font_data Font family data in theme.json format expected data after installation. * @param array $files_data Optional. Files data in $_FILES format (Used only if the font has local files). Default: empty array. */ public function test_install_and_uninstall( $font_data, $installed_font_data, $files_data = array() ) { $font = new WP_Font_Family( $font_data ); - $inst = $font->install( $files_data ); + $font->install( $files_data ); - // Check that the post was created + // Check that the post was created. $post = $font->get_font_post(); $this->assertInstanceof( 'WP_Post', $post, 'The font post was not created.' ); - // Check that the post has the correct data + // Check that the post has the correct data. $this->assertSame( $installed_font_data['name'], $post->post_title, 'The font post has the wrong title.' ); $this->assertSame( $installed_font_data['slug'], $post->post_name, 'The font post has the wrong slug.' ); @@ -170,7 +170,7 @@ public function test_install_and_uninstall( $font_data, $installed_font_data, $f $font->uninstall(); - // Check that the post was deleted + // Check that the post was deleted. $post = $font->get_font_post(); $this->assertNull( $post, 'The font post was not deleted' ); } @@ -211,7 +211,7 @@ public function data_font_fixtures() { 'fontFamily' => 'Piazzolla', 'fontStyle' => 'italic', 'fontWeight' => '400', - 'src' => 'piazzolla_italic_400.ttf', // This is just filename of the font asset and not the entire URL because we can't know the URL of the asset in the test + 'src' => 'piazzolla_italic_400.ttf', // This is just filename of the font asset and not the entire URL because we can't know the URL of the asset in the test. ), ), ), @@ -240,7 +240,7 @@ public function data_font_fixtures() { 'fontFamily' => 'Piazzolla', 'fontStyle' => 'italic', 'fontWeight' => '400', - 'src' => 'piazzolla_italic_400.ttf', // This is just filename of the font asset and not the entire URL because we can't know the URL of the asset in the test + 'src' => 'piazzolla_italic_400.ttf', // This is just filename of the font asset and not the entire URL because we can't know the URL of the asset in the test. ), ), ), From e698420c441a5cad002e39b6400455dac0e453be Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 3 Aug 2023 12:24:20 -0300 Subject: [PATCH 111/169] php lint --- .../fonts-library/class-wp-fonts-library.php | 2 +- .../fonts-library/fonts-library.php | 17 ++++++++++++----- .../class-wp-font-family-utils-test.php | 18 +++++++++--------- 3 files changed, 22 insertions(+), 15 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index fed57ff9c081ab..741f9302daca8a 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -34,7 +34,7 @@ public static function get_fonts_dir() { return wp_upload_dir()['basedir'] . '/fonts'; } - /* + /** * Sets the upload directory for fonts. * * @param array $defaults Default upload directory. diff --git a/lib/experimental/fonts-library/fonts-library.php b/lib/experimental/fonts-library/fonts-library.php index 6e47efddd1db48..34f57674b74694 100644 --- a/lib/experimental/fonts-library/fonts-library.php +++ b/lib/experimental/fonts-library/fonts-library.php @@ -12,10 +12,17 @@ /** * Registers the routes for the objects of the controller. */ -function fonts_library_register_routes() { - $fonts_library = new WP_REST_Fonts_Library_Controller(); - $fonts_library->register_routes(); - $fonts_library->register_post_type(); + +if ( ! function_exists( 'fonts_library_register_routes' ) ) { + /** + * Registers the routes for the objects of the controller. + */ + function fonts_library_register_routes() { + $fonts_library = new WP_REST_Fonts_Library_Controller(); + $fonts_library->register_routes(); + $fonts_library->register_post_type(); + } + + add_action( 'rest_api_init', 'fonts_library_register_routes' ); } -add_action( 'rest_api_init', 'fonts_library_register_routes' ); diff --git a/phpunit/fonts-library/class-wp-font-family-utils-test.php b/phpunit/fonts-library/class-wp-font-family-utils-test.php index 5200ad1063b858..dafeb40a3ac93c 100644 --- a/phpunit/fonts-library/class-wp-font-family-utils-test.php +++ b/phpunit/fonts-library/class-wp-font-family-utils-test.php @@ -6,9 +6,9 @@ * @subpackage Fonts Library */ - /** - * @coversDefaultClass WP_Font_Family_Utils - */ +/** + * @coversDefaultClass WP_Font_Family_Utils + */ class WP_Font_Family_Utils_Test extends WP_UnitTestCase { /** @@ -62,10 +62,10 @@ public function data_has_font_mime_type_fixtures() { * * @dataProvider data_get_filename_from_font_face_fixtures * - * @param string $slug Font slug. - * @param array $font_face Font face data in theme.json format. - * @param string Optional. $suffix Suffix added to the resulting filename. Default empty string. - * @param string $expected_file_name Expected file name. + * @param string $slug Font slug. + * @param array $font_face Font face data in theme.json format. + * @param string $suffix Suffix added to the resulting filename. Default empty string. + * @param string $expected_file_name Expected file name. */ public function test_get_filename_from_font_face( $slug, $font_face, $suffix, $expected_file_name ) { @@ -75,7 +75,7 @@ public function test_get_filename_from_font_face( $slug, $font_face, $suffix, $e $slug, $font_face, $font_face['src'], - $suffix, + $suffix ) ); } @@ -121,7 +121,7 @@ public function data_get_filename_from_font_face_fixtures() { * @param array $expected_result Expected result. */ public function test_merge_fonts_data( $are_mergeable, $font1, $font2, $expected_result ) { - // Fonts with same slug should be merged + // Fonts with same slug should be merged. $merged_font = WP_Font_Family_Utils::merge_fonts_data( $font1, $font2 ); if ( $are_mergeable ) { From 7e5e7115efcf1805259ff4a6fc792ad5f4d528f5 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 3 Aug 2023 13:03:41 -0300 Subject: [PATCH 112/169] moving post_type registration to the WP_Fonts_Library class --- .../fonts-library/class-wp-fonts-library.php | 12 ++++++++++++ .../class-wp-rest-fonts-library-controller.php | 12 ------------ lib/experimental/fonts-library/fonts-library.php | 12 ++++++------ 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 741f9302daca8a..5773924ab405c6 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -47,4 +47,16 @@ public static function set_upload_dir( $defaults ) { return $defaults; } + /** + * Registers the fonts library post type. + */ + public static function register_post_type() { + $args = array( + 'public' => true, + 'label' => 'Font Library', + 'show_in_rest' => true, + ); + register_post_type( 'wp_font_family', $args ); + } + } diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index efdfcf23838035..646466857b206f 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -151,16 +151,4 @@ public function install_fonts( $request ) { return new WP_REST_Response( $response ); } - /** - * Registers the fonts library post type. - */ - public function register_post_type() { - $args = array( - 'public' => true, - 'label' => 'Font Library', - 'show_in_rest' => true, - ); - register_post_type( 'wp_font_family', $args ); - } - } diff --git a/lib/experimental/fonts-library/fonts-library.php b/lib/experimental/fonts-library/fonts-library.php index 34f57674b74694..048e025bff24df 100644 --- a/lib/experimental/fonts-library/fonts-library.php +++ b/lib/experimental/fonts-library/fonts-library.php @@ -13,16 +13,16 @@ * Registers the routes for the objects of the controller. */ -if ( ! function_exists( 'fonts_library_register_routes' ) ) { +if ( ! function_exists( 'fonts_library_init' ) ) { /** * Registers the routes for the objects of the controller. */ - function fonts_library_register_routes() { - $fonts_library = new WP_REST_Fonts_Library_Controller(); - $fonts_library->register_routes(); - $fonts_library->register_post_type(); + function fonts_library_init() { + WP_Fonts_Library::register_post_type(); + $fonts_library_controller = new WP_REST_Fonts_Library_Controller(); + $fonts_library_controller->register_routes(); } - add_action( 'rest_api_init', 'fonts_library_register_routes' ); + add_action( 'rest_api_init', 'fonts_library_init' ); } From a7f9ab43fa9c5b1ba29599c18015f59ef09fa5bb Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 3 Aug 2023 16:55:17 -0300 Subject: [PATCH 113/169] change endpoint url --- .../class-wp-rest-fonts-library-controller.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index 646466857b206f..b87827e3609cc4 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -22,7 +22,7 @@ class WP_REST_Fonts_Library_Controller extends WP_REST_Controller { * Constructor. */ public function __construct() { - $this->rest_base = 'fonts_library'; + $this->rest_base = 'fonts'; $this->namespace = 'wp/v2'; } @@ -117,13 +117,13 @@ public function update_fonts_library_permissions_check() { */ public function install_fonts( $request ) { // Get new fonts to install. - $fonts_to_install = $request->get_param( 'fontFamilies' ); + $fonts_param = $request->get_param( 'fontFamilies' ); /* * As we are receiving form data, the font families are encoded as a string. * We are using form data because local fonts need to use that format to attach the files in the request. */ - $fonts_to_install = json_decode( $fonts_to_install, true ); + $fonts_to_install = json_decode( $fonts_param, true ); if ( empty( $fonts_to_install ) ) { return new WP_Error( 'no_fonts_to_install', __( 'No fonts to install', 'gutenberg' ), array( 'status' => 400 ) ); From 7b911d3bb4b453e50be66df60c70360cb721faef Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 4 Aug 2023 12:16:55 -0300 Subject: [PATCH 114/169] adding test file for WP_REST_Fonts_Library_Controller class --- ...-wp-rest-fonts-library-controller-test.php | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php diff --git a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php new file mode 100644 index 00000000000000..ec954130a608b6 --- /dev/null +++ b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php @@ -0,0 +1,24 @@ +get_routes(); + $this->assertArrayHasKey( '/wp/v2/fonts', $routes, 'Rest server has not the fonts path intialized.' ); + $this->assertCount( 2, $routes['/wp/v2/fonts'], 'Rest server has not the 2 fonts paths initialized.' ); + $this->assertArrayHasKey( 'POST', $routes['/wp/v2/fonts'][0]['methods'], 'Rest server has not the POST method for fonts intialized.' ); + $this->assertArrayHasKey( 'DELETE', $routes['/wp/v2/fonts'][1]['methods'], 'Rest server has not the DELETE method for fonts intialized.' ); + } +} From 914158a52654ab7850899a405db85abb7a81d483 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Mon, 7 Aug 2023 12:16:35 -0300 Subject: [PATCH 115/169] adding tests for innstall endpoint --- .../fonts-library/class-wp-font-family.php | 2 +- ...-wp-rest-fonts-library-controller-test.php | 287 ++++++++++++++++++ 2 files changed, 288 insertions(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index d34c6c1e92fa0c..aba2042d0eff3f 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -402,7 +402,7 @@ private function update_font_post( $post ) { /** * Creates a post for a font in the fonts library if it doesn't exist, or updates it if it does. * - * @return int post id + * @return int|WP_Error post id if the post was created or updated successfully, WP_Error otherwise. */ private function create_or_update_font_post() { $this->sanitize(); diff --git a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php index ec954130a608b6..56def746a91a11 100644 --- a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php +++ b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php @@ -10,6 +10,23 @@ * @coversDefaultClass WP_REST_Fonts_Library_Controller */ class WP_REST_Fonts_Library_Controller_Test extends WP_UnitTestCase { + /** + * @var int + */ + protected static $admin_id; + + /** + * Create fake data before our tests run. + * + * @param WP_UnitTest_Factory $factory Helper that lets us create fake data. + */ + public static function wpSetupBeforeClass( $factory ) { + self::$admin_id = $factory->user->create( + array( + 'role' => 'administrator', + ) + ); + } /** * @covers ::register_routes @@ -21,4 +38,274 @@ public function test_register_routes() { $this->assertArrayHasKey( 'POST', $routes['/wp/v2/fonts'][0]['methods'], 'Rest server has not the POST method for fonts intialized.' ); $this->assertArrayHasKey( 'DELETE', $routes['/wp/v2/fonts'][1]['methods'], 'Rest server has not the DELETE method for fonts intialized.' ); } + + /** + * @covers ::install_fonts + * + * @dataProvider data_install_fonts + * + * @param array $font_families Font families to install in theme.json format + */ + public function test_install_fonts( $font_families, $files, $expected_response ) { + wp_set_current_user( self::$admin_id ); + $request = new WP_REST_Request( 'POST', '/wp/v2/fonts' ); + $font_families_json = json_encode( $font_families ); + $request->set_param( 'fontFamilies', $font_families_json ); + $request->set_file_params( $files ); + $response = rest_get_server()->dispatch( $request ); + $data = $response->get_data(); + + $this->assertEquals( 200, $response->get_status(), 'The response status is not 200.' ); + $this->assertCount( count( $expected_response ), $data, 'Not all the font families were installed correctly.' ); + + // Check that the font families were installed correctly + for ( $family_index = 0; $family_index < count( $data ); $family_index++ ) { + $installed_font = $data[ $family_index ]; + $expected_font = $expected_response[ $family_index ]; + + if ( isset ( $installed_font['fontFace'] ) || isset ( $expected_font['fontFace'] ) ) { + for ( $face_index = 0; $face_index < count( $installed_font['fontFace'] ); $face_index++ ) { + // Check that the font asset were created correctly + $this->assertStringEndsWith( $expected_font['fontFace'][ $face_index ]['src'], $installed_font['fontFace'][ $face_index ]['src'], 'The src of the fonts were not updated as expected.' ); + // Remove the src from the response to compare the rest of the data + unset( $installed_font['fontFace'][ $face_index ]['src'] ); + unset( $expected_font['fontFace'][ $face_index ]['src'] ); + } + } + + // Compare if the rest of the data is the same + $this->assertEquals( $expected_font, $installed_font, 'The endpoint answer is not as expected.' ); + } + + } + + /** + * Data provider for test_install_fonts + */ + public function data_install_fonts() { + + $temp_file_path1 = wp_tempnam( 'Piazzola1-' ); + file_put_contents( $temp_file_path1, 'Mocking file content' ); + $temp_file_path2 = wp_tempnam( 'Monteserrat-' ); + file_put_contents( $temp_file_path2, 'Mocking file content' ); + + return array( + + 'google_fonts_to_download' => array( + 'font_families' => array( + array( + 'fontFamily' => 'Piazzolla', + 'slug' => 'piazzolla', + 'name' => 'Piazzolla', + 'fontFace' => array( + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'normal', + 'fontWeight' => '400', + 'src' => 'http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf', + 'download_from_url' => 'http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf', + ), + ), + ), + array( + 'fontFamily' => 'Montserrat', + 'slug' => 'montserrat', + 'name' => 'Montserrat', + 'fontFace' => array( + array( + 'fontFamily' => 'Montserrat', + 'fontStyle' => 'normal', + 'fontWeight' => '100', + 'src' => 'http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw-Y3tcoqK5.ttf', + 'download_from_url' => 'http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw-Y3tcoqK5.ttf', + ), + ), + ), + ), + 'files'=> array(), + 'expected_response' => array( + array( + 'fontFamily' => 'Piazzolla', + 'slug' => 'piazzolla', + 'name' => 'Piazzolla', + 'fontFace' => array( + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'normal', + 'fontWeight' => '400', + 'src' => '/wp-content/uploads/fonts/piazzolla_normal_400.ttf', + ), + ), + ), + array( + 'fontFamily' => 'Montserrat', + 'slug' => 'montserrat', + 'name' => 'Montserrat', + 'fontFace' => array( + array( + 'fontFamily' => 'Montserrat', + 'fontStyle' => 'normal', + 'fontWeight' => '100', + 'src' => '/wp-content/uploads/fonts/montserrat_normal_100.ttf', + ), + ), + ), + ), + ), + + 'google_fonts_to_use_as_is' => array( + 'font_families' => array( + array( + 'fontFamily' => 'Piazzolla', + 'slug' => 'piazzolla', + 'name' => 'Piazzolla', + 'fontFace' => array( + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'normal', + 'fontWeight' => '400', + 'src' => 'http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf', + ), + ), + ), + array( + 'fontFamily' => 'Montserrat', + 'slug' => 'montserrat', + 'name' => 'Montserrat', + 'fontFace' => array( + array( + 'fontFamily' => 'Montserrat', + 'fontStyle' => 'normal', + 'fontWeight' => '100', + 'src' => 'http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw-Y3tcoqK5.ttf', + ), + ), + ), + ), + 'files'=> array(), + 'expected_response' => array( + array( + 'fontFamily' => 'Piazzolla', + 'slug' => 'piazzolla', + 'name' => 'Piazzolla', + 'fontFace' => array( + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'normal', + 'fontWeight' => '400', + 'src' => 'http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf', + ), + ), + ), + array( + 'fontFamily' => 'Montserrat', + 'slug' => 'montserrat', + 'name' => 'Montserrat', + 'fontFace' => array( + array( + 'fontFamily' => 'Montserrat', + 'fontStyle' => 'normal', + 'fontWeight' => '100', + 'src' => 'http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw-Y3tcoqK5.ttf', + + ), + ), + ), + ), + ), + + 'fonts_without_font_faces' => array( + 'font_families' => array( + array( + 'fontFamily' => 'Arial', + 'slug' => 'arial', + 'name' => 'Arial', + ), + ), + 'files'=> array(), + 'expected_response' => array( + array( + 'fontFamily' => 'Arial', + 'slug' => 'arial', + 'name' => 'Arial', + ), + ), + ), + + 'fonts_with_local_fonts_assets' => array( + 'font_families' => array( + array( + 'fontFamily' => 'Piazzolla', + 'slug' => 'piazzolla', + 'name' => 'Piazzolla', + 'fontFace' => array( + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'normal', + 'fontWeight' => '400', + 'uploaded_file' => 'files0', + ), + ), + ), + array( + 'fontFamily' => 'Montserrat', + 'slug' => 'montserrat', + 'name' => 'Montserrat', + 'fontFace' => array( + array( + 'fontFamily' => 'Montserrat', + 'fontStyle' => 'normal', + 'fontWeight' => '100', + 'uploaded_file' => 'files1', + ), + ), + ), + ), + 'files'=> array( + 'files0' => array( + 'name' => 'piazzola1.ttf', + 'type' => 'font/ttf', + 'tmp_name' => $temp_file_path1, + 'error' => 0, + 'size' => 123, + ), + 'files1' => array( + 'name' => 'montserrat1.ttf', + 'type' => 'font/ttf', + 'tmp_name' => $temp_file_path2, + 'error' => 0, + 'size' => 123, + ), + ), + 'expected_response' => array( + array( + 'fontFamily' => 'Piazzolla', + 'slug' => 'piazzolla', + 'name' => 'Piazzolla', + 'fontFace' => array( + array( + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'normal', + 'fontWeight' => '400', + 'src' => '/wp-content/uploads/fonts/piazzolla_normal_400.ttf', + ), + ), + ), + array( + 'fontFamily' => 'Montserrat', + 'slug' => 'montserrat', + 'name' => 'Montserrat', + 'fontFace' => array( + array( + 'fontFamily' => 'Montserrat', + 'fontStyle' => 'normal', + 'fontWeight' => '100', + 'src' => '/wp-content/uploads/fonts/montserrat_normal_100.ttf', + ), + ), + ), + ), + ), + ); + } } From 90a4f07a1bb3d9b60a000d06a59e45461ce7115c Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Mon, 7 Aug 2023 14:37:31 -0300 Subject: [PATCH 116/169] add test for font family constructor failure --- .../fonts-library/class-wp-font-family-test.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 9adb9fb972ff3e..99190e4427f06b 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -11,6 +11,21 @@ */ class WP_Font_Family_Test extends WP_UnitTestCase { + /** + * Test the constructor failure + * + * @covers ::__construct + */ + public function test_constructor_failure() { + $font_data = array ( + 'fontFamily' => 'Piazzolla', + 'name' => 'Piazzolla', + ); + $this->expectException( 'Exception' ); + $this->expectExceptionMessage( 'Font family data is missing the slug.' ); + $font = new WP_Font_Family( $font_data ); + } + /** * Test the constructor and the get_data method * From 10a317a6f272c56da03c51b4a6858d6d57472c06 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Mon, 7 Aug 2023 14:38:20 -0300 Subject: [PATCH 117/169] Font Family constructo raise an exception if the slug was not provided --- lib/experimental/fonts-library/class-wp-font-family.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index aba2042d0eff3f..1c58ca79fc48d3 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -32,8 +32,11 @@ class WP_Font_Family { * * @param array $font_family Font family data. */ - public function __construct( $font_family = array() ) { - $this->data = $font_family; + public function __construct( $font_data = array() ) { + if ( empty ( $font_data['slug'] ) ) { + throw new Exception( 'Font family data is missing the slug.' ); + } + $this->data = $font_data; } /** From cc225683da0755872add5a4fd462f10acb2c133b Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Mon, 7 Aug 2023 14:39:04 -0300 Subject: [PATCH 118/169] add tests for uninstall endpoint --- ...class-wp-rest-fonts-library-controller.php | 22 +++++---- ...-wp-rest-fonts-library-controller-test.php | 48 +++++++++++++++---- 2 files changed, 52 insertions(+), 18 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index b87827e3609cc4..a5ead6c3a2482c 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -48,7 +48,7 @@ public function register_routes() { array( array( 'methods' => WP_REST_Server::DELETABLE, - 'callback' => array( $this, 'uninstall_font_family' ), + 'callback' => array( $this, 'uninstall_fonts' ), 'permission_callback' => array( $this, 'update_fonts_library_permissions_check' ), ), ) @@ -56,20 +56,22 @@ public function register_routes() { } /** - * Removes a font family from the fonts library and all their assets. + * Removes font families from the fonts library and all their assets. * * @param WP_REST_Request $request Full details about the request. * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure. */ - public function uninstall_font_family( $request ) { - $data = array( - 'slug' => $request['slug'], - ); - $font = new WP_Font_Family( $data ); - $result = $font->uninstall(); + public function uninstall_fonts( $request ) { + $fonts_param = $request->get_param( 'fontFamilies' ); + + foreach ( $fonts_param as $font_data ) { + $font = new WP_Font_Family( $font_data ); + $result = $font->uninstall(); - if ( is_wp_error( $result ) ) { - return $result; + // If there was an error uninstalling the font, return the error. + if ( is_wp_error( $result ) ) { + return $result; + } } return new WP_REST_Response( __( 'Font family uninstalled successfully.', 'gutenberg' ), 200 ); diff --git a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php index 56def746a91a11..9c5356b4053697 100644 --- a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php +++ b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php @@ -39,20 +39,48 @@ public function test_register_routes() { $this->assertArrayHasKey( 'DELETE', $routes['/wp/v2/fonts'][1]['methods'], 'Rest server has not the DELETE method for fonts intialized.' ); } + /** + * @covers ::uninstall_fonts + */ + public function test_uninstall_non_existing_fonts () { + wp_set_current_user( self::$admin_id ); + $uninstall_request = new WP_REST_Request( 'DELETE', '/wp/v2/fonts' ); + + $non_existing_font_data = [ + array( + 'slug' => 'non-existing-font', + 'name' => 'Non existing font', + ), + array( + 'slug' => 'another-not-installed-font', + 'name' => 'Another not installed font', + ), + ]; + + $uninstall_request->set_param( 'fontFamilies', $non_existing_font_data ); + $response = rest_get_server()->dispatch( $uninstall_request ); + $data = $response->get_data(); + $this->assertEquals( 500, $response->get_status(), 'The response status is not 500.' ); + } + + /** * @covers ::install_fonts + * @covers ::uninstall_fonts * - * @dataProvider data_install_fonts + * @dataProvider data_install_and_uninstall_fonts * * @param array $font_families Font families to install in theme.json format + * @param array $files Font files to install + * @param array $expected_response Expected response data */ - public function test_install_fonts( $font_families, $files, $expected_response ) { + public function test_install_and_uninstall_fonts( $font_families, $files, $expected_response ) { wp_set_current_user( self::$admin_id ); - $request = new WP_REST_Request( 'POST', '/wp/v2/fonts' ); + $install_request = new WP_REST_Request( 'POST', '/wp/v2/fonts' ); $font_families_json = json_encode( $font_families ); - $request->set_param( 'fontFamilies', $font_families_json ); - $request->set_file_params( $files ); - $response = rest_get_server()->dispatch( $request ); + $install_request->set_param( 'fontFamilies', $font_families_json ); + $install_request->set_file_params( $files ); + $response = rest_get_server()->dispatch( $install_request ); $data = $response->get_data(); $this->assertEquals( 200, $response->get_status(), 'The response status is not 200.' ); @@ -77,12 +105,16 @@ public function test_install_fonts( $font_families, $files, $expected_response ) $this->assertEquals( $expected_font, $installed_font, 'The endpoint answer is not as expected.' ); } + $uninstall_request = new WP_REST_Request( 'DELETE', '/wp/v2/fonts' ); + $uninstall_request->set_param( 'fontFamilies', $font_families ); + $response = rest_get_server()->dispatch( $uninstall_request ); + $this->assertEquals( 200, $response->get_status(), 'The response status is not 200.' ); } /** - * Data provider for test_install_fonts + * Data provider for test_install_and_uninstall_fonts */ - public function data_install_fonts() { + public function data_install_and_uninstall_fonts() { $temp_file_path1 = wp_tempnam( 'Piazzola1-' ); file_put_contents( $temp_file_path1, 'Mocking file content' ); From ba8b567498191d55feb4ca1f07b5f5571a4189e3 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Mon, 7 Aug 2023 14:41:59 -0300 Subject: [PATCH 119/169] format php --- .../fonts-library/class-wp-font-family.php | 2 +- ...class-wp-rest-fonts-library-controller.php | 2 +- .../class-wp-font-family-test.php | 4 +- ...-wp-rest-fonts-library-controller-test.php | 70 +++++++++---------- 4 files changed, 39 insertions(+), 39 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 1c58ca79fc48d3..e00b7912d09f44 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -33,7 +33,7 @@ class WP_Font_Family { * @param array $font_family Font family data. */ public function __construct( $font_data = array() ) { - if ( empty ( $font_data['slug'] ) ) { + if ( empty( $font_data['slug'] ) ) { throw new Exception( 'Font family data is missing the slug.' ); } $this->data = $font_data; diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index a5ead6c3a2482c..fc5a1470ee53de 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -65,7 +65,7 @@ public function uninstall_fonts( $request ) { $fonts_param = $request->get_param( 'fontFamilies' ); foreach ( $fonts_param as $font_data ) { - $font = new WP_Font_Family( $font_data ); + $font = new WP_Font_Family( $font_data ); $result = $font->uninstall(); // If there was an error uninstalling the font, return the error. diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 99190e4427f06b..b47eb48ecd14e0 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -13,11 +13,11 @@ class WP_Font_Family_Test extends WP_UnitTestCase { /** * Test the constructor failure - * + * * @covers ::__construct */ public function test_constructor_failure() { - $font_data = array ( + $font_data = array( 'fontFamily' => 'Piazzolla', 'name' => 'Piazzolla', ); diff --git a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php index 9c5356b4053697..2a799775915596 100644 --- a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php +++ b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php @@ -42,11 +42,11 @@ public function test_register_routes() { /** * @covers ::uninstall_fonts */ - public function test_uninstall_non_existing_fonts () { + public function test_uninstall_non_existing_fonts() { wp_set_current_user( self::$admin_id ); $uninstall_request = new WP_REST_Request( 'DELETE', '/wp/v2/fonts' ); - - $non_existing_font_data = [ + + $non_existing_font_data = array( array( 'slug' => 'non-existing-font', 'name' => 'Non existing font', @@ -55,14 +55,14 @@ public function test_uninstall_non_existing_fonts () { 'slug' => 'another-not-installed-font', 'name' => 'Another not installed font', ), - ]; + ); $uninstall_request->set_param( 'fontFamilies', $non_existing_font_data ); $response = rest_get_server()->dispatch( $uninstall_request ); $data = $response->get_data(); $this->assertEquals( 500, $response->get_status(), 'The response status is not 500.' ); } - + /** * @covers ::install_fonts @@ -76,7 +76,7 @@ public function test_uninstall_non_existing_fonts () { */ public function test_install_and_uninstall_fonts( $font_families, $files, $expected_response ) { wp_set_current_user( self::$admin_id ); - $install_request = new WP_REST_Request( 'POST', '/wp/v2/fonts' ); + $install_request = new WP_REST_Request( 'POST', '/wp/v2/fonts' ); $font_families_json = json_encode( $font_families ); $install_request->set_param( 'fontFamilies', $font_families_json ); $install_request->set_file_params( $files ); @@ -89,9 +89,9 @@ public function test_install_and_uninstall_fonts( $font_families, $files, $expec // Check that the font families were installed correctly for ( $family_index = 0; $family_index < count( $data ); $family_index++ ) { $installed_font = $data[ $family_index ]; - $expected_font = $expected_response[ $family_index ]; + $expected_font = $expected_response[ $family_index ]; - if ( isset ( $installed_font['fontFace'] ) || isset ( $expected_font['fontFace'] ) ) { + if ( isset( $installed_font['fontFace'] ) || isset( $expected_font['fontFace'] ) ) { for ( $face_index = 0; $face_index < count( $installed_font['fontFace'] ); $face_index++ ) { // Check that the font asset were created correctly $this->assertStringEndsWith( $expected_font['fontFace'][ $face_index ]['src'], $installed_font['fontFace'][ $face_index ]['src'], 'The src of the fonts were not updated as expected.' ); @@ -122,8 +122,8 @@ public function data_install_and_uninstall_fonts() { file_put_contents( $temp_file_path2, 'Mocking file content' ); return array( - - 'google_fonts_to_download' => array( + + 'google_fonts_to_download' => array( 'font_families' => array( array( 'fontFamily' => 'Piazzolla', @@ -154,7 +154,7 @@ public function data_install_and_uninstall_fonts() { ), ), ), - 'files'=> array(), + 'files' => array(), 'expected_response' => array( array( 'fontFamily' => 'Piazzolla', @@ -185,7 +185,7 @@ public function data_install_and_uninstall_fonts() { ), ), - 'google_fonts_to_use_as_is' => array( + 'google_fonts_to_use_as_is' => array( 'font_families' => array( array( 'fontFamily' => 'Piazzolla', @@ -193,10 +193,10 @@ public function data_install_and_uninstall_fonts() { 'name' => 'Piazzolla', 'fontFace' => array( array( - 'fontFamily' => 'Piazzolla', - 'fontStyle' => 'normal', - 'fontWeight' => '400', - 'src' => 'http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf', + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'normal', + 'fontWeight' => '400', + 'src' => 'http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf', ), ), ), @@ -206,15 +206,15 @@ public function data_install_and_uninstall_fonts() { 'name' => 'Montserrat', 'fontFace' => array( array( - 'fontFamily' => 'Montserrat', - 'fontStyle' => 'normal', - 'fontWeight' => '100', - 'src' => 'http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw-Y3tcoqK5.ttf', + 'fontFamily' => 'Montserrat', + 'fontStyle' => 'normal', + 'fontWeight' => '100', + 'src' => 'http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw-Y3tcoqK5.ttf', ), ), ), ), - 'files'=> array(), + 'files' => array(), 'expected_response' => array( array( 'fontFamily' => 'Piazzolla', @@ -225,7 +225,7 @@ public function data_install_and_uninstall_fonts() { 'fontFamily' => 'Piazzolla', 'fontStyle' => 'normal', 'fontWeight' => '400', - 'src' => 'http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf', + 'src' => 'http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf', ), ), ), @@ -238,15 +238,15 @@ public function data_install_and_uninstall_fonts() { 'fontFamily' => 'Montserrat', 'fontStyle' => 'normal', 'fontWeight' => '100', - 'src' => 'http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw-Y3tcoqK5.ttf', - + 'src' => 'http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw-Y3tcoqK5.ttf', + ), ), ), ), ), - 'fonts_without_font_faces' => array( + 'fonts_without_font_faces' => array( 'font_families' => array( array( 'fontFamily' => 'Arial', @@ -254,7 +254,7 @@ public function data_install_and_uninstall_fonts() { 'name' => 'Arial', ), ), - 'files'=> array(), + 'files' => array(), 'expected_response' => array( array( 'fontFamily' => 'Arial', @@ -272,10 +272,10 @@ public function data_install_and_uninstall_fonts() { 'name' => 'Piazzolla', 'fontFace' => array( array( - 'fontFamily' => 'Piazzolla', - 'fontStyle' => 'normal', - 'fontWeight' => '400', - 'uploaded_file' => 'files0', + 'fontFamily' => 'Piazzolla', + 'fontStyle' => 'normal', + 'fontWeight' => '400', + 'uploaded_file' => 'files0', ), ), ), @@ -285,15 +285,15 @@ public function data_install_and_uninstall_fonts() { 'name' => 'Montserrat', 'fontFace' => array( array( - 'fontFamily' => 'Montserrat', - 'fontStyle' => 'normal', - 'fontWeight' => '100', - 'uploaded_file' => 'files1', + 'fontFamily' => 'Montserrat', + 'fontStyle' => 'normal', + 'fontWeight' => '100', + 'uploaded_file' => 'files1', ), ), ), ), - 'files'=> array( + 'files' => array( 'files0' => array( 'name' => 'piazzola1.ttf', 'type' => 'font/ttf', From 433aa54f8afda0db5971d059d7c0340cc2d46eb7 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Mon, 7 Aug 2023 20:55:11 -0300 Subject: [PATCH 120/169] add validation for install endpoint --- ...class-wp-rest-fonts-library-controller.php | 131 ++++++++++++++++++ 1 file changed, 131 insertions(+) diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index fc5a1470ee53de..7d173982bec611 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -38,6 +38,13 @@ public function register_routes() { 'methods' => WP_REST_Server::EDITABLE, 'callback' => array( $this, 'install_fonts' ), 'permission_callback' => array( $this, 'update_fonts_library_permissions_check' ), + 'args' => array( + 'fontFamilies' => array( + 'required' => true, + 'type' => 'string', + 'validate_callback' => array( $this, 'validate_install_font_families' ), + ), + ), ), ) ); @@ -50,11 +57,135 @@ public function register_routes() { 'methods' => WP_REST_Server::DELETABLE, 'callback' => array( $this, 'uninstall_fonts' ), 'permission_callback' => array( $this, 'update_fonts_library_permissions_check' ), + 'args' => $this->uninstall_schema(), ), ) ); } + /** + * Get all the errors (if any) for the font families to install data provided. + * + * @param array $font_families Array of font families to install. + * + * @return array $error_messages Array of error messages. + */ + private function get_validation_errors ( $font_families ) { + $error_messages = array(); + + if ( ! is_array( $font_families ) ) { + $error_messages[] = __( 'fontFamilies should be an array of font families.', 'gutenberg' ); + return $error_messages; + } + + //check if there is at least one font family + if ( count( $font_families ) < 1 ) { + $error_messages[] = __( 'fontFamilies should have at least one font family definition.', 'gutenberg' ); + return $error_messages; + } + + for ( $family_index = 0; $family_index < count( $font_families ); $family_index++ ) { + $font_family = $font_families[ $family_index ]; + + if ( ! isset( $font_family['slug'] ) || ! isset( $font_family['name'] ) || ! isset( $font_family['fontFamily'] ) ) { + $error_messages[] = sprintf ( + __( 'Font family [%s] should have slug, name and fontFamily properties defined.', 'gutenberg' ), $family_index + ); + } + + if ( isset( $font_family['fontFace'] ) ) { + if ( !is_array( $font_family['fontFace'] ) ) { + $error_messages[] = sprintf ( + __( 'Font family [%s] should have fontFace property defined as an array.', 'gutenberg' ), $family_index + ); + } + + if ( count ( $font_family['fontFace'] ) < 1 ) { + $error_messages[] = sprintf ( + __( 'Font family [%s] should have at least one font face definition.', 'gutenberg' ), $family_index + ); + } + + if ( !empty ( $font_family['fontFace'] ) ) { + for ( $face_index = 0; $face_index < count( $font_family['fontFace'] ); $face_index++ ) { + + $font_face = $font_family['fontFace'][ $face_index ]; + if ( ! isset( $font_face['fontWeight'] ) || ! isset( $font_face['fontStyle'] ) ) { + $error_messages[] = sprintf ( + __( 'Font family [%s] Font face [%s] should have fontWeight and fontStyle properties defined.', 'gutenberg' ), $family_index, $face_index + ); + } + + + if ( isset ( $font_face['download_from_url'] ) && isset ( $font_face['uplodaded_file'] ) ) { + $error_messages[] = sprintf ( + __( 'Font family [%s] Font face [%s] should have only one of the download_from_url or uploaded_file properties defined and not both.', 'gutenberg' ), $family_index, $face_index + ); + } + + if ( isset( $font_face['uploaded_file'] ) ) { + $files = $request->get_file_params(); + if ( !isset( $files[ $font_face['uploaded_file'] ] ) ) { + $error_messages[]= sprintf ( + __( 'Font family [%s] Font face [%s] file is not defined in the request files.', 'gutenberg' ), $family_index, $face_index + ); + } + } + } + } + } + } + return $error_messages; + } + + /** + * Validate input for the install endpoint. + * + * @param string $param The font families to install. + * @param WP_REST_Request $request The request object. + * @param string $key The parameter key. + * + * @return true|WP_Error True if the parameter is valid, WP_Error otherwise. + */ + public function validate_install_font_families ( $param, $request, $key ) { + $font_families = json_decode( $param, true ); + $error_messages = $this->get_validation_errors( $font_families ); + + if ( empty( $error_messages ) ) { + return true; + } + + return new WP_Error( 'rest_invalid_param', implode( ', ', $error_messages ), array( 'status' => 400 ) ); + } + + /** + * Schema for the uninstall endpoint. + * + * @return array Schema array. + */ + public function uninstall_schema () { + return array( + 'fontFamilies' => array( + 'type' => 'array', + 'description' => __( 'The font families to install.', 'gutenberg' ), + 'required' => true, + 'minItems' => 1, + 'items' => array( + 'required' => true, + 'type' => 'object', + 'properties' => array( + 'slug' => array( + 'type' => 'string', + 'description' => __( 'The font family slug.', 'gutenberg' ), + 'required' => true, + ), + ), + ), + ), + ); + } + + /** * Removes font families from the fonts library and all their assets. * From bf7f3d010472f8e3f53b0ce2153e7f14508379e2 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 10:55:27 -0300 Subject: [PATCH 121/169] fix comment Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- .../fonts-library/class-wp-rest-fonts-library-controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index 7d173982bec611..89bd9bc2ecf645 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -66,7 +66,7 @@ public function register_routes() { /** * Get all the errors (if any) for the font families to install data provided. * - * @param array $font_families Array of font families to install. + * @param array[] $font_families Array of font families to install. * * @return array $error_messages Array of error messages. */ From 72ac9f47937eb6b860cb1f7a821edc69fbfde664 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 10:55:52 -0300 Subject: [PATCH 122/169] improve comment text Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- .../fonts-library/class-wp-rest-fonts-library-controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index 89bd9bc2ecf645..8a1093167dc5df 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -64,7 +64,7 @@ public function register_routes() { } /** - * Get all the errors (if any) for the font families to install data provided. + * Returns validation errors in font families data for installation. * * @param array[] $font_families Array of font families to install. * From 05a686377c7edcec042b3727bf10be96b30d3046 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 10:56:06 -0300 Subject: [PATCH 123/169] fix comment Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-fonts-library.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 5773924ab405c6..b9cf4723ecbf35 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -26,7 +26,7 @@ class WP_Fonts_Library { ); /** - * Get the upload directory for fonts. + * Gets the upload directory for fonts. * * @return string Path of the upload directory for fonts. */ From a36cb63f8e08337ef0d1ecc3fa4011241421d0e2 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 10:56:21 -0300 Subject: [PATCH 124/169] fix comment Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index e00b7912d09f44..5569e3604eb26f 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -417,10 +417,10 @@ private function create_or_update_font_post() { } /** - * Install the font family into the library + * Installs the font family into the library. * - * @param array $files An array of files to be installed, default is null. - * @return array|WP_Error + * @param array $files Optional. An array of files to be installed. Default null. + * @return array|WP_Error An array of font family data on success, WP_Error otherwise. */ public function install( $files = null ) { add_filter( 'upload_dir', array( 'WP_Fonts_Library', 'set_upload_dir' ) ); From c4f1665c3142de789e030ef8861b5f2edd32487c Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 10:56:50 -0300 Subject: [PATCH 125/169] code format fix Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- phpunit/fonts-library/class-wp-font-family-utils-test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit/fonts-library/class-wp-font-family-utils-test.php b/phpunit/fonts-library/class-wp-font-family-utils-test.php index dafeb40a3ac93c..775c88ce8b596c 100644 --- a/phpunit/fonts-library/class-wp-font-family-utils-test.php +++ b/phpunit/fonts-library/class-wp-font-family-utils-test.php @@ -64,7 +64,7 @@ public function data_has_font_mime_type_fixtures() { * * @param string $slug Font slug. * @param array $font_face Font face data in theme.json format. - * @param string $suffix Suffix added to the resulting filename. Default empty string. + * @param string $suffix Suffix added to the resulting filename. Default empty string. * @param string $expected_file_name Expected file name. */ public function test_get_filename_from_font_face( $slug, $font_face, $suffix, $expected_file_name ) { From 62b6b8d169a2226918e965a81890d46c04a0a312 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 10:57:49 -0300 Subject: [PATCH 126/169] fix test assertion and comment Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- phpunit/fonts-library/class-wp-fonts-library-test.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/phpunit/fonts-library/class-wp-fonts-library-test.php b/phpunit/fonts-library/class-wp-fonts-library-test.php index 53775a98a0a7a5..5e802fb6e3685d 100644 --- a/phpunit/fonts-library/class-wp-fonts-library-test.php +++ b/phpunit/fonts-library/class-wp-fonts-library-test.php @@ -24,10 +24,10 @@ public function test_get_fonts_dir() { * @dataProvider data_set_upload_dir * * @param array $defaults Default upload directory data. - * @param array $xpected Modified upload directory data. + * @param array $expected Modified upload directory data. */ - public function test_set_upload_dir( $defaults, $xpected ) { - $this->assertEquals( $xpected, WP_Fonts_Library::set_upload_dir( $defaults ) ); + public function test_set_upload_dir( $defaults, $expected ) { + $this->assertSame( $expected, WP_Fonts_Library::set_upload_dir( $defaults ) ); } public function data_set_upload_dir() { From d25993dc30d09bda4d4e8768a1050aa692b7daa6 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 10:58:09 -0300 Subject: [PATCH 127/169] fix comment Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- phpunit/fonts-library/class-wp-font-family-test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index b47eb48ecd14e0..c79ee08466f2d0 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -99,7 +99,7 @@ public function data_get_data_as_json() { } /** - * Test if the has_font_faces method returns the correct data + * Tests that the has_font_faces() method correctly determines whether a font family has font faces. * * @covers ::has_font_faces * From 5f61437a33dde3a4a1fe77016be5cbdbf7a0a259 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 10:58:47 -0300 Subject: [PATCH 128/169] fix comment Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- phpunit/fonts-library/class-wp-font-family-test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index c79ee08466f2d0..8e87b3bc4de25a 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -42,7 +42,7 @@ public function test_get_data( $font_data ) { } /** - * Test if the get_data_as_json method returns the correct data + * Tests that the get_data_as_json() method returns the expected data in JSON format. * * @covers ::get_data_as_json * From 3f4fffa7e292fdb824dca94678014a825629aa24 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 10:59:08 -0300 Subject: [PATCH 129/169] fix comment Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- .../class-wp-rest-fonts-library-controller-test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php index 2a799775915596..3008f9819fdffa 100644 --- a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php +++ b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php @@ -16,7 +16,7 @@ class WP_REST_Fonts_Library_Controller_Test extends WP_UnitTestCase { protected static $admin_id; /** - * Create fake data before our tests run. + * Creates fake data before our tests run. * * @param WP_UnitTest_Factory $factory Helper that lets us create fake data. */ From 12cf9202dec7b9c5f08e035ebed831b0c0d8418b Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 10:59:45 -0300 Subject: [PATCH 130/169] update comment Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- .../class-wp-rest-fonts-library-controller-test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php index 3008f9819fdffa..12a8b12cad25be 100644 --- a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php +++ b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php @@ -60,7 +60,7 @@ public function test_uninstall_non_existing_fonts() { $uninstall_request->set_param( 'fontFamilies', $non_existing_font_data ); $response = rest_get_server()->dispatch( $uninstall_request ); $data = $response->get_data(); - $this->assertEquals( 500, $response->get_status(), 'The response status is not 500.' ); + $this->assertSame( 500, $response->get_status(), 'The response status is not 500.' ); } From 16b3133cb357551c73fb0a62885980253c4166e7 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 11:00:10 -0300 Subject: [PATCH 131/169] code formatting Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- .../class-wp-rest-fonts-library-controller-test.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php index 12a8b12cad25be..db161309877ca8 100644 --- a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php +++ b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php @@ -70,8 +70,8 @@ public function test_uninstall_non_existing_fonts() { * * @dataProvider data_install_and_uninstall_fonts * - * @param array $font_families Font families to install in theme.json format - * @param array $files Font files to install + * @param array $font_families Font families to install in theme.json format + * @param array $files Font files to install * @param array $expected_response Expected response data */ public function test_install_and_uninstall_fonts( $font_families, $files, $expected_response ) { From 94e4f69f1f4f236a3192b8e625a054db41146663 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 11:00:27 -0300 Subject: [PATCH 132/169] fix comment Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- phpunit/fonts-library/class-wp-font-family-test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 8e87b3bc4de25a..ae49a623be24fd 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -27,7 +27,7 @@ public function test_constructor_failure() { } /** - * Test the constructor and the get_data method + * Tests that data is set by the constructor and retrieved by the get_data() method. * * @covers ::__construct * @covers ::get_data From 7439610f8cacc79ff17fb76cfe173d554aad099a Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 11:01:02 -0300 Subject: [PATCH 133/169] update test name Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- phpunit/fonts-library/class-wp-font-family-test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index ae49a623be24fd..07aba51eacd151 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -16,7 +16,7 @@ class WP_Font_Family_Test extends WP_UnitTestCase { * * @covers ::__construct */ - public function test_constructor_failure() { + public function test_constructor_throws_exception_when_font_family_has_no_slug() { $font_data = array( 'fontFamily' => 'Piazzolla', 'name' => 'Piazzolla', From 55ebc624864e0a13a07ae83f4cb5ddfd3c466585 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 11:01:32 -0300 Subject: [PATCH 134/169] update assertion type Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- .../class-wp-rest-fonts-library-controller-test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php index db161309877ca8..5c511db34d1fbc 100644 --- a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php +++ b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php @@ -83,7 +83,7 @@ public function test_install_and_uninstall_fonts( $font_families, $files, $expec $response = rest_get_server()->dispatch( $install_request ); $data = $response->get_data(); - $this->assertEquals( 200, $response->get_status(), 'The response status is not 200.' ); + $this->assertSame( 200, $response->get_status(), 'The response status is not 200.' ); $this->assertCount( count( $expected_response ), $data, 'Not all the font families were installed correctly.' ); // Check that the font families were installed correctly From 2efd15b72e0adc1b09c5a4239a8bb66339a4ee55 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 11:02:10 -0300 Subject: [PATCH 135/169] Improves test descripcion Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- phpunit/fonts-library/class-wp-font-family-test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 07aba51eacd151..fc5e153b5d3168 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -12,7 +12,7 @@ class WP_Font_Family_Test extends WP_UnitTestCase { /** - * Test the constructor failure + * Tests that an exception is thrown when the font family is missing a slug. * * @covers ::__construct */ From f4e32c0f2c0ae5c670db9326978dae5751c2bec5 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 11:13:25 -0300 Subject: [PATCH 136/169] code formatting Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family-utils.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family-utils.php b/lib/experimental/fonts-library/class-wp-font-family-utils.php index 7674e1715df28d..7918e4a265d0e6 100644 --- a/lib/experimental/fonts-library/class-wp-font-family-utils.php +++ b/lib/experimental/fonts-library/class-wp-font-family-utils.php @@ -25,8 +25,8 @@ class WP_Font_Family_Utils { * * @param string $font_slug The font slug to use in the filename. * @param array $font_face The font face array containing 'fontFamily', 'fontStyle', and 'fontWeight' attributes. - * @param string $url The URL of the font face asset, used to derive the file extension. - * @param string $suffix Optional suffix added to the resulting filename. + * @param string $url The URL of the font face asset, used to derive the file extension. + * @param string $suffix Optional. The suffix added to the resulting filename. Default empty string. * @return string The generated filename for the font face asset. */ public static function get_filename_from_font_face( $font_slug, $font_face, $url, $suffix = '' ) { From 9f118040d1107cfd9d04d3211963fa94f23c3e23 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 11:20:24 -0300 Subject: [PATCH 137/169] update test assertion type Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- .../class-wp-rest-fonts-library-controller-test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php index 5c511db34d1fbc..c58bd2eae5ba34 100644 --- a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php +++ b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php @@ -108,7 +108,7 @@ public function test_install_and_uninstall_fonts( $font_families, $files, $expec $uninstall_request = new WP_REST_Request( 'DELETE', '/wp/v2/fonts' ); $uninstall_request->set_param( 'fontFamilies', $font_families ); $response = rest_get_server()->dispatch( $uninstall_request ); - $this->assertEquals( 200, $response->get_status(), 'The response status is not 200.' ); + $this->assertSame( 200, $response->get_status(), 'The response status is not 200.' ); } /** From 1a64fb88fc62279cde08c7aed2f9a3eda24183d1 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 11:22:12 -0300 Subject: [PATCH 138/169] comment update Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 5569e3604eb26f..d2850d23b1292b 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -20,7 +20,7 @@ class WP_Font_Family { /** - * Font family data + * Font family data. * * @var array */ From 2b98fc7a1a5b1f2e326b5639ab6ebe8fa84ca731 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 11:22:48 -0300 Subject: [PATCH 139/169] update comment Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family-utils.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family-utils.php b/lib/experimental/fonts-library/class-wp-font-family-utils.php index 7918e4a265d0e6..0672d089f9dc71 100644 --- a/lib/experimental/fonts-library/class-wp-font-family-utils.php +++ b/lib/experimental/fonts-library/class-wp-font-family-utils.php @@ -43,7 +43,6 @@ public static function get_filename_from_font_face( $font_slug, $font_face, $url * * @param array $font1 The first font to merge. * @param array $font2 The second font to merge. - * * @return array|WP_Error The merged font or WP_Error if the fonts have different slugs. */ public static function merge_fonts_data( $font1, $font2 ) { From be73689887b7c521e79a27173596291b6a3ba430 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 11:23:28 -0300 Subject: [PATCH 140/169] update comment Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index d2850d23b1292b..ebb1135669d0d2 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -378,7 +378,7 @@ private function create_font_post() { } /** - * Update a post for a font family. + * Updates a post for a font family. * * @param WP_Post $post The post to update. * @return int|WP_Error Post ID if the update was successful, WP_Error otherwise. From e235ff2c69a0a70eb67226d6601760f9452bb6da Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 11:24:04 -0300 Subject: [PATCH 141/169] update comment Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index ebb1135669d0d2..c39f88b9d387a0 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -58,7 +58,7 @@ public function get_data_as_json() { } /** - * Returns if the font family has font faces defined. + * Returns whether the font family has font faces defined. * * @return bool true if the font family has font faces defined, false otherwise. */ From 8de22590907fc360e9731e0c9d85691ae0e09781 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 11:24:40 -0300 Subject: [PATCH 142/169] update comment Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index c39f88b9d387a0..f44e2e674f601c 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -30,7 +30,7 @@ class WP_Font_Family { /** * WP_Font_Family constructor. * - * @param array $font_family Font family data. + * @param array $font_data Font family data. */ public function __construct( $font_data = array() ) { if ( empty( $font_data['slug'] ) ) { From 2a0b34bc0afb04cdf97b2290cdb3215f152db16b Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 11:25:52 -0300 Subject: [PATCH 143/169] update comment Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index f44e2e674f601c..bccd0761a39164 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -60,7 +60,7 @@ public function get_data_as_json() { /** * Returns whether the font family has font faces defined. * - * @return bool true if the font family has font faces defined, false otherwise. + * @return bool True if the font family has font faces defined, false otherwise. */ public function has_font_faces() { return ! empty( $this->data['fontFace'] ) && is_array( $this->data['fontFace'] ); From 80ec701c94c45ef21e4cd7a8e99064c66e8bc275 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 11:26:19 -0300 Subject: [PATCH 144/169] update comment Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index bccd0761a39164..a2e3c956ad5bac 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -182,7 +182,7 @@ private function download_asset( $src, $filename ) { } /** - * Move an uploaded font face asset from temp folder to the wp fonts directory. + * Moves an uploaded font face asset from temp folder to the wp fonts directory. * * This is used when uploading local fonts. * From 7b6e2a7308b96b4d89001746c2a3622ae86eb869 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 11:29:48 -0300 Subject: [PATCH 145/169] code and comments style Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- .../fonts-library/class-wp-font-family.php | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index a2e3c956ad5bac..16ae098aaa4492 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -156,11 +156,22 @@ private function download_asset( $src, $filename ) { } $overrides = array( - 'action' => 'wp_handle_font_upload', // Arbitrary string to avoid the is_uploaded_file() check applied when using 'wp_handle_upload'. - 'test_form' => false, // We are not testing a form submission. - 'test_type' => false, // Seems like we can not test mime type for files that are not images. See this function docs: https://developer.wordpress.org/reference/functions/wp_check_filetype_and_ext/ . + /* + * Arbitrary string to avoid the is_uploaded_file() check applied + * when using 'wp_handle_upload'. + */ + 'action' => 'wp_handle_font_upload', + // We are not testing a form submission. + 'test_form' => false, + /* + * Seems like we can not test mime type for files that are not images. + * See wp_check_filetype_and_ext(). + */ + 'test_type' => false, 'unique_filename_callback' => function () use ( $filename ) { - return $filename; }, // We want to keep the original filename. + // We want to keep the original filename. + return $filename; + }, ); $file = array( From a9e29e1bd33b8e28286127cd3b258c6dc9413d9e Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 11:30:11 -0300 Subject: [PATCH 146/169] comment style Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 16ae098aaa4492..5242218c2945e5 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -198,8 +198,8 @@ private function download_asset( $src, $filename ) { * This is used when uploading local fonts. * * @param array $font_face Font face to download. - * @param array $file Uploaded file. - * @return array New font face with all assets downloaded and referenced in the font face definition + * @param array $file Uploaded file. + * @return array New font face with all assets downloaded and referenced in the font face definition. */ private function move_font_face_asset( $font_face, $file ) { $new_font_face = $font_face; From 671f382e5d10fd6a7790ed5cca20b4e62ac9d00f Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 11:31:30 -0300 Subject: [PATCH 147/169] comment update Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 5242218c2945e5..8acc35e4dfea9e 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -369,9 +369,9 @@ private function get_data_from_post() { } /** - * Create a post for a font family. + * Creates a post for a font family. * - * @return int|WP_Error Post ID. + * @return int|WP_Error Post ID if the post was created, WP_Error otherwise. */ private function create_font_post() { $post = array( From 217940af4e1a69b13ae9578b15cc31e3c50e20a1 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 11:32:11 -0300 Subject: [PATCH 148/169] update comment Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 8acc35e4dfea9e..42c635e31de07b 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -333,7 +333,7 @@ private function download_or_move_font_faces( $files ) { } /** - * Get the post for a font family. + * Gets the post for a font family. * * @return WP_Post|null The post for this font family object or null if the post does not exist. */ From 1a70f11d2f10649df160efd8a4410560574688b1 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 11:36:00 -0300 Subject: [PATCH 149/169] update comment Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-font-family.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 42c635e31de07b..5fb88406f0f71b 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -355,7 +355,7 @@ public function get_font_post() { } /** - * Get the data for this object from the database and set it to the data property. + * Gets the data for this object from the database and sets it to the data property. * * @return WP_Post|null The post for this font family object or null if the post does not exist. */ From 8f74fc8f3b474e412b97657c1fe53d058ca838f7 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 11:37:12 -0300 Subject: [PATCH 150/169] update assertion type Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> --- .../class-wp-rest-fonts-library-controller-test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php index c58bd2eae5ba34..c00fd39a016138 100644 --- a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php +++ b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php @@ -102,7 +102,7 @@ public function test_install_and_uninstall_fonts( $font_families, $files, $expec } // Compare if the rest of the data is the same - $this->assertEquals( $expected_font, $installed_font, 'The endpoint answer is not as expected.' ); + $this->assertSame( $expected_font, $installed_font, 'The endpoint answer is not as expected.' ); } $uninstall_request = new WP_REST_Request( 'DELETE', '/wp/v2/fonts' ); From b98e2da55b65b74304b226345d8ab56f99c2f816 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 11:52:30 -0300 Subject: [PATCH 151/169] fix get_validation_error function --- .../class-wp-rest-fonts-library-controller.php | 7 ++++--- .../class-wp-rest-fonts-library-controller-test.php | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index 8a1093167dc5df..d3375a198635c4 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -67,10 +67,11 @@ public function register_routes() { * Returns validation errors in font families data for installation. * * @param array[] $font_families Array of font families to install. + * @param array $files Array of files to install. * * @return array $error_messages Array of error messages. */ - private function get_validation_errors ( $font_families ) { + private function get_validation_errors ( $font_families, $files ) { $error_messages = array(); if ( ! is_array( $font_families ) ) { @@ -124,7 +125,6 @@ private function get_validation_errors ( $font_families ) { } if ( isset( $font_face['uploaded_file'] ) ) { - $files = $request->get_file_params(); if ( !isset( $files[ $font_face['uploaded_file'] ] ) ) { $error_messages[]= sprintf ( __( 'Font family [%s] Font face [%s] file is not defined in the request files.', 'gutenberg' ), $family_index, $face_index @@ -149,7 +149,8 @@ private function get_validation_errors ( $font_families ) { */ public function validate_install_font_families ( $param, $request, $key ) { $font_families = json_decode( $param, true ); - $error_messages = $this->get_validation_errors( $font_families ); + $files = $request->get_file_params(); + $error_messages = $this->get_validation_errors( $font_families, $files ); if ( empty( $error_messages ) ) { return true; diff --git a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php index c00fd39a016138..c58bd2eae5ba34 100644 --- a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php +++ b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php @@ -102,7 +102,7 @@ public function test_install_and_uninstall_fonts( $font_families, $files, $expec } // Compare if the rest of the data is the same - $this->assertSame( $expected_font, $installed_font, 'The endpoint answer is not as expected.' ); + $this->assertEquals( $expected_font, $installed_font, 'The endpoint answer is not as expected.' ); } $uninstall_request = new WP_REST_Request( 'DELETE', '/wp/v2/fonts' ); From 99680a9db2e1605876be0aa56c543da34f898980 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 12:02:54 -0300 Subject: [PATCH 152/169] improving comment --- .../fonts-library/class-wp-fonts-library.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index b9cf4723ecbf35..8706459cc67bd7 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -37,7 +37,16 @@ public static function get_fonts_dir() { /** * Sets the upload directory for fonts. * - * @param array $defaults Default upload directory. + * @param array $defaults { + * Default upload directory. + * + * @type string $path Path to the directory. + * @type string $url URL for the directory. + * @type string $subdir Sub-directory of the directory. + * @type string $basedir Base directory. + * @type string $baseurl Base URL. + * } + * * @return array Modified upload directory. */ public static function set_upload_dir( $defaults ) { From 4c3e2fd9fb7965ced3fc08601e2ec388cc96b3aa Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 12:04:54 -0300 Subject: [PATCH 153/169] improve comment --- lib/experimental/fonts-library/class-wp-font-family.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 5fb88406f0f71b..c9c78c7b238a0f 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -296,7 +296,8 @@ private function download_font_face_assets( $font_face ) { * Downloads font face assets if the font family is a Google font, or moves them if it is a local font. * * @param array $files An array of files to be installed. - * @return bool + * + * @return bool True if the font faces were downloaded or moved successfully, false otherwise. */ private function download_or_move_font_faces( $files ) { if ( ! $this->has_font_faces() ) { From f974f6ee97c022745ac9ea753dc313fdca293fb1 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 12:10:28 -0300 Subject: [PATCH 154/169] adding test method description --- phpunit/fonts-library/class-wp-font-family-test.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index fc5e153b5d3168..3ebe4b1eff8d14 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -152,6 +152,9 @@ public function data_has_font_faces() { } /** + * Tests that the install() and uninstall() methods work as expected + * It uses different types of font families: with local, remote or no files. + * * @covers ::install * @covers ::uninstall * @covers ::get_font_post From 443659b1d78b4a1c440d6a159d4cd5c39221f7db Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 12:34:40 -0300 Subject: [PATCH 155/169] code format --- .../fonts-library/class-wp-font-family.php | 58 +++++++----- .../fonts-library/class-wp-fonts-library.php | 2 +- ...class-wp-rest-fonts-library-controller.php | 94 ++++++++++--------- .../class-wp-font-family-test.php | 2 +- 4 files changed, 85 insertions(+), 71 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index c9c78c7b238a0f..d951e65f03968d 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -129,6 +129,35 @@ private static function delete_font_face_assets( $font_face ) { return true; } + + /* + * Gets the overrides for the 'wp_handle_upload' function. + * + * @param string $filename The filename to be used for the uploaded file. + * + * @return array The overrides for the 'wp_handle_upload' function. + */ + private function get_upload_overrides( $filename ) { + return array( + /* + * Arbitrary string to avoid the is_uploaded_file() check applied + * when using 'wp_handle_upload'. + */ + 'action' => 'wp_handle_font_upload', + // We are not testing a form submission. + 'test_form' => false, + /* + * Seems like we can not test mime type for files that are not images. + * See wp_check_filetype_and_ext(). + */ + 'test_type' => false, + 'unique_filename_callback' => function () use ( $filename ) { + // We want to keep the original filename. + return $filename; + }, + ); + } + /** * Downloads a font asset. * @@ -155,24 +184,7 @@ private function download_asset( $src, $filename ) { return false; } - $overrides = array( - /* - * Arbitrary string to avoid the is_uploaded_file() check applied - * when using 'wp_handle_upload'. - */ - 'action' => 'wp_handle_font_upload', - // We are not testing a form submission. - 'test_form' => false, - /* - * Seems like we can not test mime type for files that are not images. - * See wp_check_filetype_and_ext(). - */ - 'test_type' => false, - 'unique_filename_callback' => function () use ( $filename ) { - // We want to keep the original filename. - return $filename; - }, - ); + $overrides = $this->get_upload_overrides( $filename ); $file = array( 'tmp_name' => $temp_file, @@ -218,13 +230,7 @@ private function move_font_face_asset( $font_face, $file ) { require_once ABSPATH . 'wp-admin/includes/file.php'; } - $overrides = array( - 'action' => 'wp_handle_font_upload', // Arbitrary string to avoid the is_uploaded_file() check applied when using 'wp_handle_upload'. - 'test_form' => false, // We are not testing a form submission. - 'test_type' => false, // Seems like we can not test mime type for files that are not images. See this function docs: https://developer.wordpress.org/reference/functions/wp_check_filetype_and_ext/ . - 'unique_filename_callback' => function () use ( $filename ) { - return $filename; }, // We want to keep the original filename. - ); + $overrides = $this->get_upload_overrides( $filename ); $handled_file = wp_handle_upload( $file, $overrides ); @@ -296,7 +302,7 @@ private function download_font_face_assets( $font_face ) { * Downloads font face assets if the font family is a Google font, or moves them if it is a local font. * * @param array $files An array of files to be installed. - * + * * @return bool True if the font faces were downloaded or moved successfully, false otherwise. */ private function download_or_move_font_faces( $files ) { diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 8706459cc67bd7..371b8d1859d7ee 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -46,7 +46,7 @@ public static function get_fonts_dir() { * @type string $basedir Base directory. * @type string $baseurl Base URL. * } - * + * * @return array Modified upload directory. */ public static function set_upload_dir( $defaults ) { diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index d3375a198635c4..c62f8b163c95e9 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -38,10 +38,10 @@ public function register_routes() { 'methods' => WP_REST_Server::EDITABLE, 'callback' => array( $this, 'install_fonts' ), 'permission_callback' => array( $this, 'update_fonts_library_permissions_check' ), - 'args' => array( + 'args' => array( 'fontFamilies' => array( - 'required' => true, - 'type' => 'string', + 'required' => true, + 'type' => 'string', 'validate_callback' => array( $this, 'validate_install_font_families' ), ), ), @@ -67,11 +67,11 @@ public function register_routes() { * Returns validation errors in font families data for installation. * * @param array[] $font_families Array of font families to install. - * @param array $files Array of files to install. - * + * @param array $files Array of files to install. + * * @return array $error_messages Array of error messages. */ - private function get_validation_errors ( $font_families, $files ) { + private function get_validation_errors( $font_families, $files ) { $error_messages = array(); if ( ! is_array( $font_families ) ) { @@ -79,7 +79,7 @@ private function get_validation_errors ( $font_families, $files ) { return $error_messages; } - //check if there is at least one font family + // check if there is at least one font family if ( count( $font_families ) < 1 ) { $error_messages[] = __( 'fontFamilies should have at least one font family definition.', 'gutenberg' ); return $error_messages; @@ -89,45 +89,53 @@ private function get_validation_errors ( $font_families, $files ) { $font_family = $font_families[ $family_index ]; if ( ! isset( $font_family['slug'] ) || ! isset( $font_family['name'] ) || ! isset( $font_family['fontFamily'] ) ) { - $error_messages[] = sprintf ( - __( 'Font family [%s] should have slug, name and fontFamily properties defined.', 'gutenberg' ), $family_index + $error_messages[] = sprintf( + __( 'Font family [%s] should have slug, name and fontFamily properties defined.', 'gutenberg' ), + $family_index ); } if ( isset( $font_family['fontFace'] ) ) { - if ( !is_array( $font_family['fontFace'] ) ) { - $error_messages[] = sprintf ( - __( 'Font family [%s] should have fontFace property defined as an array.', 'gutenberg' ), $family_index + if ( ! is_array( $font_family['fontFace'] ) ) { + $error_messages[] = sprintf( + __( 'Font family [%s] should have fontFace property defined as an array.', 'gutenberg' ), + $family_index ); } - if ( count ( $font_family['fontFace'] ) < 1 ) { - $error_messages[] = sprintf ( - __( 'Font family [%s] should have at least one font face definition.', 'gutenberg' ), $family_index + if ( count( $font_family['fontFace'] ) < 1 ) { + $error_messages[] = sprintf( + __( 'Font family [%s] should have at least one font face definition.', 'gutenberg' ), + $family_index ); } - if ( !empty ( $font_family['fontFace'] ) ) { + if ( ! empty( $font_family['fontFace'] ) ) { for ( $face_index = 0; $face_index < count( $font_family['fontFace'] ); $face_index++ ) { $font_face = $font_family['fontFace'][ $face_index ]; - if ( ! isset( $font_face['fontWeight'] ) || ! isset( $font_face['fontStyle'] ) ) { - $error_messages[] = sprintf ( - __( 'Font family [%s] Font face [%s] should have fontWeight and fontStyle properties defined.', 'gutenberg' ), $family_index, $face_index + if ( ! isset( $font_face['fontWeight'] ) || ! isset( $font_face['fontStyle'] ) ) { + $error_messages[] = sprintf( + __( 'Font family [%1$s] Font face [%2$s] should have fontWeight and fontStyle properties defined.', 'gutenberg' ), + $family_index, + $face_index ); } - - if ( isset ( $font_face['download_from_url'] ) && isset ( $font_face['uplodaded_file'] ) ) { - $error_messages[] = sprintf ( - __( 'Font family [%s] Font face [%s] should have only one of the download_from_url or uploaded_file properties defined and not both.', 'gutenberg' ), $family_index, $face_index + if ( isset( $font_face['download_from_url'] ) && isset( $font_face['uplodaded_file'] ) ) { + $error_messages[] = sprintf( + __( 'Font family [%1$s] Font face [%2$s] should have only one of the download_from_url or uploaded_file properties defined and not both.', 'gutenberg' ), + $family_index, + $face_index ); } if ( isset( $font_face['uploaded_file'] ) ) { - if ( !isset( $files[ $font_face['uploaded_file'] ] ) ) { - $error_messages[]= sprintf ( - __( 'Font family [%s] Font face [%s] file is not defined in the request files.', 'gutenberg' ), $family_index, $face_index + if ( ! isset( $files[ $font_face['uploaded_file'] ] ) ) { + $error_messages[] = sprintf( + __( 'Font family [%1$s] Font face [%2$s] file is not defined in the request files.', 'gutenberg' ), + $family_index, + $face_index ); } } @@ -140,16 +148,16 @@ private function get_validation_errors ( $font_families, $files ) { /** * Validate input for the install endpoint. - * - * @param string $param The font families to install. + * + * @param string $param The font families to install. * @param WP_REST_Request $request The request object. - * @param string $key The parameter key. - * + * @param string $key The parameter key. + * * @return true|WP_Error True if the parameter is valid, WP_Error otherwise. */ - public function validate_install_font_families ( $param, $request, $key ) { - $font_families = json_decode( $param, true ); - $files = $request->get_file_params(); + public function validate_install_font_families( $param, $request, $key ) { + $font_families = json_decode( $param, true ); + $files = $request->get_file_params(); $error_messages = $this->get_validation_errors( $font_families, $files ); if ( empty( $error_messages ) ) { @@ -161,24 +169,24 @@ public function validate_install_font_families ( $param, $request, $key ) { /** * Schema for the uninstall endpoint. - * + * * @return array Schema array. */ - public function uninstall_schema () { + public function uninstall_schema() { return array( 'fontFamilies' => array( - 'type' => 'array', + 'type' => 'array', 'description' => __( 'The font families to install.', 'gutenberg' ), - 'required' => true, - 'minItems' => 1, - 'items' => array( - 'required' => true, - 'type' => 'object', + 'required' => true, + 'minItems' => 1, + 'items' => array( + 'required' => true, + 'type' => 'object', 'properties' => array( 'slug' => array( - 'type' => 'string', + 'type' => 'string', 'description' => __( 'The font family slug.', 'gutenberg' ), - 'required' => true, + 'required' => true, ), ), ), diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index 3ebe4b1eff8d14..a5ca66f7628cc9 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -154,7 +154,7 @@ public function data_has_font_faces() { /** * Tests that the install() and uninstall() methods work as expected * It uses different types of font families: with local, remote or no files. - * + * * @covers ::install * @covers ::uninstall * @covers ::get_font_post From b19d8ed4c451ba940dccd5db8c879f628931ab0e Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 12:53:35 -0300 Subject: [PATCH 156/169] lint fixes --- .../class-wp-rest-fonts-library-controller.php | 10 ++++++++-- .../class-wp-font-family-test.php | 2 +- ...s-wp-rest-fonts-library-controller-test.php | 18 +++++++++--------- 3 files changed, 18 insertions(+), 12 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index c62f8b163c95e9..a4bd5c027ab69a 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -79,7 +79,7 @@ private function get_validation_errors( $font_families, $files ) { return $error_messages; } - // check if there is at least one font family + // Checks if there is at least one font family. if ( count( $font_families ) < 1 ) { $error_messages[] = __( 'fontFamilies should have at least one font family definition.', 'gutenberg' ); return $error_messages; @@ -90,6 +90,7 @@ private function get_validation_errors( $font_families, $files ) { if ( ! isset( $font_family['slug'] ) || ! isset( $font_family['name'] ) || ! isset( $font_family['fontFamily'] ) ) { $error_messages[] = sprintf( + // translators: 1: font family index. __( 'Font family [%s] should have slug, name and fontFamily properties defined.', 'gutenberg' ), $family_index ); @@ -98,6 +99,7 @@ private function get_validation_errors( $font_families, $files ) { if ( isset( $font_family['fontFace'] ) ) { if ( ! is_array( $font_family['fontFace'] ) ) { $error_messages[] = sprintf( + // translators: 1: font family index. __( 'Font family [%s] should have fontFace property defined as an array.', 'gutenberg' ), $family_index ); @@ -105,6 +107,7 @@ private function get_validation_errors( $font_families, $files ) { if ( count( $font_family['fontFace'] ) < 1 ) { $error_messages[] = sprintf( + // translators: 1: font family index. __( 'Font family [%s] should have at least one font face definition.', 'gutenberg' ), $family_index ); @@ -116,6 +119,7 @@ private function get_validation_errors( $font_families, $files ) { $font_face = $font_family['fontFace'][ $face_index ]; if ( ! isset( $font_face['fontWeight'] ) || ! isset( $font_face['fontStyle'] ) ) { $error_messages[] = sprintf( + // translators: 1: font family index, 2: font face index. __( 'Font family [%1$s] Font face [%2$s] should have fontWeight and fontStyle properties defined.', 'gutenberg' ), $family_index, $face_index @@ -124,6 +128,7 @@ private function get_validation_errors( $font_families, $files ) { if ( isset( $font_face['download_from_url'] ) && isset( $font_face['uplodaded_file'] ) ) { $error_messages[] = sprintf( + // translators: 1: font family index, 2: font face index. __( 'Font family [%1$s] Font face [%2$s] should have only one of the download_from_url or uploaded_file properties defined and not both.', 'gutenberg' ), $family_index, $face_index @@ -133,6 +138,7 @@ private function get_validation_errors( $font_families, $files ) { if ( isset( $font_face['uploaded_file'] ) ) { if ( ! isset( $files[ $font_face['uploaded_file'] ] ) ) { $error_messages[] = sprintf( + // translators: 1: font family index, 2: font face index. __( 'Font family [%1$s] Font face [%2$s] file is not defined in the request files.', 'gutenberg' ), $family_index, $face_index @@ -155,7 +161,7 @@ private function get_validation_errors( $font_families, $files ) { * * @return true|WP_Error True if the parameter is valid, WP_Error otherwise. */ - public function validate_install_font_families( $param, $request, $key ) { + public function validate_install_font_families( $param, $request ) { $font_families = json_decode( $param, true ); $files = $request->get_file_params(); $error_messages = $this->get_validation_errors( $font_families, $files ); diff --git a/phpunit/fonts-library/class-wp-font-family-test.php b/phpunit/fonts-library/class-wp-font-family-test.php index a5ca66f7628cc9..85e5c2c6e5fdec 100644 --- a/phpunit/fonts-library/class-wp-font-family-test.php +++ b/phpunit/fonts-library/class-wp-font-family-test.php @@ -23,7 +23,7 @@ public function test_constructor_throws_exception_when_font_family_has_no_slug() ); $this->expectException( 'Exception' ); $this->expectExceptionMessage( 'Font family data is missing the slug.' ); - $font = new WP_Font_Family( $font_data ); + new WP_Font_Family( $font_data ); } /** diff --git a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php index c58bd2eae5ba34..b502f2d0331fea 100644 --- a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php +++ b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php @@ -59,7 +59,7 @@ public function test_uninstall_non_existing_fonts() { $uninstall_request->set_param( 'fontFamilies', $non_existing_font_data ); $response = rest_get_server()->dispatch( $uninstall_request ); - $data = $response->get_data(); + $response->get_data(); $this->assertSame( 500, $response->get_status(), 'The response status is not 500.' ); } @@ -70,9 +70,9 @@ public function test_uninstall_non_existing_fonts() { * * @dataProvider data_install_and_uninstall_fonts * - * @param array $font_families Font families to install in theme.json format - * @param array $files Font files to install - * @param array $expected_response Expected response data + * @param array $font_families Font families to install in theme.json format. + * @param array $files Font files to install. + * @param array $expected_response Expected response data. */ public function test_install_and_uninstall_fonts( $font_families, $files, $expected_response ) { wp_set_current_user( self::$admin_id ); @@ -81,27 +81,27 @@ public function test_install_and_uninstall_fonts( $font_families, $files, $expec $install_request->set_param( 'fontFamilies', $font_families_json ); $install_request->set_file_params( $files ); $response = rest_get_server()->dispatch( $install_request ); - $data = $response->get_data(); + $response->get_data(); $this->assertSame( 200, $response->get_status(), 'The response status is not 200.' ); $this->assertCount( count( $expected_response ), $data, 'Not all the font families were installed correctly.' ); - // Check that the font families were installed correctly + // Checks that the font families were installed correctly. for ( $family_index = 0; $family_index < count( $data ); $family_index++ ) { $installed_font = $data[ $family_index ]; $expected_font = $expected_response[ $family_index ]; if ( isset( $installed_font['fontFace'] ) || isset( $expected_font['fontFace'] ) ) { for ( $face_index = 0; $face_index < count( $installed_font['fontFace'] ); $face_index++ ) { - // Check that the font asset were created correctly + // Checks that the font asset were created correctly. $this->assertStringEndsWith( $expected_font['fontFace'][ $face_index ]['src'], $installed_font['fontFace'][ $face_index ]['src'], 'The src of the fonts were not updated as expected.' ); - // Remove the src from the response to compare the rest of the data + // Removes the src from the response to compare the rest of the data. unset( $installed_font['fontFace'][ $face_index ]['src'] ); unset( $expected_font['fontFace'][ $face_index ]['src'] ); } } - // Compare if the rest of the data is the same + // Compares if the rest of the data is the same. $this->assertEquals( $expected_font, $installed_font, 'The endpoint answer is not as expected.' ); } From e67472f64f48f42201f0d9d160e6f2bfa8b25df9 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 15:06:24 -0300 Subject: [PATCH 157/169] fix test --- .../class-wp-rest-fonts-library-controller-test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php index b502f2d0331fea..eebbe6fd410c4b 100644 --- a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php +++ b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php @@ -81,7 +81,7 @@ public function test_install_and_uninstall_fonts( $font_families, $files, $expec $install_request->set_param( 'fontFamilies', $font_families_json ); $install_request->set_file_params( $files ); $response = rest_get_server()->dispatch( $install_request ); - $response->get_data(); + $data = $response->get_data(); $this->assertSame( 200, $response->get_status(), 'The response status is not 200.' ); $this->assertCount( count( $expected_response ), $data, 'Not all the font families were installed correctly.' ); From 1d36d121a83d777599b773cad62482920817412f Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 15:07:20 -0300 Subject: [PATCH 158/169] removing unwated parameter comment --- .../fonts-library/class-wp-rest-fonts-library-controller.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index a4bd5c027ab69a..e8df3cdc33c675 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -157,7 +157,6 @@ private function get_validation_errors( $font_families, $files ) { * * @param string $param The font families to install. * @param WP_REST_Request $request The request object. - * @param string $key The parameter key. * * @return true|WP_Error True if the parameter is valid, WP_Error otherwise. */ From e381f30bf326fc285c4dca196faa05a7bceff8c6 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 15:10:07 -0300 Subject: [PATCH 159/169] format --- .../class-wp-rest-fonts-library-controller-test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php index eebbe6fd410c4b..ddf61aeb41ea6c 100644 --- a/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php +++ b/phpunit/fonts-library/class-wp-rest-fonts-library-controller-test.php @@ -81,7 +81,7 @@ public function test_install_and_uninstall_fonts( $font_families, $files, $expec $install_request->set_param( 'fontFamilies', $font_families_json ); $install_request->set_file_params( $files ); $response = rest_get_server()->dispatch( $install_request ); - $data = $response->get_data(); + $data = $response->get_data(); $this->assertSame( 200, $response->get_status(), 'The response status is not 200.' ); $this->assertCount( count( $expected_response ), $data, 'Not all the font families were installed correctly.' ); From 26cdcb2b8e7279dfcedbfca3ed15d889351d6ce4 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 8 Aug 2023 16:38:56 -0300 Subject: [PATCH 160/169] lint --- .../fonts-library/class-wp-font-family.php | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index d951e65f03968d..5dff5f7635200f 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -31,6 +31,8 @@ class WP_Font_Family { * WP_Font_Family constructor. * * @param array $font_data Font family data. + * + * @throws Exception If the font family data is missing the slug. */ public function __construct( $font_data = array() ) { if ( empty( $font_data['slug'] ) ) { @@ -130,7 +132,7 @@ private static function delete_font_face_assets( $font_face ) { } - /* + /** * Gets the overrides for the 'wp_handle_upload' function. * * @param string $filename The filename to be used for the uploaded file. @@ -139,6 +141,7 @@ private static function delete_font_face_assets( $font_face ) { */ private function get_upload_overrides( $filename ) { return array( + /* * Arbitrary string to avoid the is_uploaded_file() check applied * when using 'wp_handle_upload'. @@ -146,11 +149,12 @@ private function get_upload_overrides( $filename ) { 'action' => 'wp_handle_font_upload', // We are not testing a form submission. 'test_form' => false, + /* * Seems like we can not test mime type for files that are not images. * See wp_check_filetype_and_ext(). */ - 'test_type' => false, + 'test_type' => false, 'unique_filename_callback' => function () use ( $filename ) { // We want to keep the original filename. return $filename; @@ -159,15 +163,13 @@ private function get_upload_overrides( $filename ) { } /** - * Downloads a font asset. - * * Downloads a font asset from a specified source URL and saves it to the font directory. * - * @param string $src The source URL of the font asset to be downloaded. + * @param string $url The source URL of the font asset to be downloaded. * @param string $filename The filename to save the downloaded font asset as. * @return string|bool The relative path to the downloaded font asset. False if the download failed. */ - private function download_asset( $src, $filename ) { + private function download_asset( $url, $filename ) { // Checks if the file to be downloaded has a font mime type. if ( ! WP_Font_Family_Utils::has_font_mime_type( $filename ) ) { return false; @@ -179,7 +181,7 @@ private function download_asset( $src, $filename ) { } // Downloads the font asset or returns false. - $temp_file = download_url( $src ); + $temp_file = download_url( $url ); if ( is_wp_error( $temp_file ) ) { return false; } From 4ec9659358ff51d23c86604d9bfa07c5c89bb6f3 Mon Sep 17 00:00:00 2001 From: hellofromtonya Date: Wed, 9 Aug 2023 12:26:43 -0500 Subject: [PATCH 161/169] Exclude fontsapi tests. Modifies the phpunit.xml file to exclude running the Fonts API tests. These tests will be removed once the Fonts Library is merged. --- phpunit.xml.dist | 1 + 1 file changed, 1 insertion(+) diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 2bc6b7b29900de..7beea787c08166 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -18,6 +18,7 @@ ms-required + fontsapi From 274a8be4751951fb05db5d1c5328636c06ab90ce Mon Sep 17 00:00:00 2001 From: hellofromtonya Date: Wed, 9 Aug 2023 12:40:33 -0500 Subject: [PATCH 162/169] Exclude Fonts API in multisite tests --- phpunit/multisite.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/phpunit/multisite.xml b/phpunit/multisite.xml index 7a6117948547d3..279c1561d9136e 100644 --- a/phpunit/multisite.xml +++ b/phpunit/multisite.xml @@ -19,6 +19,7 @@ ms-excluded + fontsapi From e80c497432beabfa0210cd6a2626174ac074061c Mon Sep 17 00:00:00 2001 From: hellofromtonya Date: Thu, 10 Aug 2023 12:12:29 -0500 Subject: [PATCH 163/169] Core parity: since, formatting, package. To prepare the code for Core, this commit does the following: * Adds `@since` to each class, method, property. * Sets the since to 6.4.0, as this is targeted for release in WP 6.4.0. * Removes empty lines between @param and @return. * Adds empty line before each `return`. * Reduces long lines for readability. * Makes the `@package` WordPress. * Rewords comments to remove "we" words. * Adds empty line between code groups for readability. --- .../class-wp-font-family-utils.php | 29 ++- .../fonts-library/class-wp-font-family.php | 226 +++++++++++++----- .../fonts-library/class-wp-fonts-library.php | 21 +- ...class-wp-rest-fonts-library-controller.php | 61 +++-- .../fonts-library/fonts-library.php | 10 +- 5 files changed, 249 insertions(+), 98 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-font-family-utils.php b/lib/experimental/fonts-library/class-wp-font-family-utils.php index 0672d089f9dc71..ef239936b8e5a3 100644 --- a/lib/experimental/fonts-library/class-wp-font-family-utils.php +++ b/lib/experimental/fonts-library/class-wp-font-family-utils.php @@ -4,9 +4,9 @@ * * This file contains utils fot Font Family class. * - * @package Gutenberg + * @package WordPress * @subpackage Fonts Library - * @since X.X.X + * @since 6.4.0 */ if ( class_exists( 'WP_Font_Family_Utils' ) ) { @@ -14,17 +14,23 @@ } /** - * A class of utilities for working with the Font Library. + * A class of utilities for working with the Fonts Library. + * + * @since 6.4.0 */ class WP_Font_Family_Utils { /** * Generates a filename for a font face asset. * - * Creates a filename for a font face asset using font family, style, weight and extension information. + * Creates a filename for a font face asset using font family, style, weight and + * extension information. + * + * @since 6.4.0 * * @param string $font_slug The font slug to use in the filename. - * @param array $font_face The font face array containing 'fontFamily', 'fontStyle', and 'fontWeight' attributes. + * @param array $font_face The font face array containing 'fontFamily', 'fontStyle', and + * 'fontWeight' attributes. * @param string $url The URL of the font face asset, used to derive the file extension. * @param string $suffix Optional. The suffix added to the resulting filename. Default empty string. * @return string The generated filename for the font face asset. @@ -35,20 +41,27 @@ public static function get_filename_from_font_face( $font_slug, $font_face, $url if ( '' !== $suffix ) { $filename .= "_{$suffix}"; } + return sanitize_file_name( "{$filename}.{$extension}" ); } /** * Merges two fonts and their font faces. * + * @since 6.4.0 + * * @param array $font1 The first font to merge. * @param array $font2 The second font to merge. * @return array|WP_Error The merged font or WP_Error if the fonts have different slugs. */ public static function merge_fonts_data( $font1, $font2 ) { if ( $font1['slug'] !== $font2['slug'] ) { - return new WP_Error( 'fonts_must_have_same_slug', __( 'Fonts must have the same slug to be merged.', 'gutenberg' ) ); + return new WP_Error( + 'fonts_must_have_same_slug', + __( 'Fonts must have the same slug to be merged.', 'gutenberg' ) + ); } + $font_faces_1 = isset( $font1['fontFace'] ) ? $font1['fontFace'] : array(); $font_faces_2 = isset( $font2['fontFace'] ) ? $font2['fontFace'] : array(); $merged_font_faces = array_merge( $font_faces_1, $font_faces_2 ); @@ -66,12 +79,14 @@ public static function merge_fonts_data( $font1, $font2 ) { /** * Returns whether the given file has a font MIME type. * + * @since 6.4.0 + * * @param string $filepath The file to check. * @return bool True if the file has a font MIME type, false otherwise. */ public static function has_font_mime_type( $filepath ) { $filetype = wp_check_filetype( $filepath, WP_Fonts_Library::ALLOWED_FONT_MIME_TYPES ); + return in_array( $filetype['type'], WP_Fonts_Library::ALLOWED_FONT_MIME_TYPES, true ); } - } diff --git a/lib/experimental/fonts-library/class-wp-font-family.php b/lib/experimental/fonts-library/class-wp-font-family.php index 5dff5f7635200f..1e8b424f63a4c9 100644 --- a/lib/experimental/fonts-library/class-wp-font-family.php +++ b/lib/experimental/fonts-library/class-wp-font-family.php @@ -4,34 +4,37 @@ * * This file contains the Font Family class definition. * - * @package Gutenberg + * @package WordPress * @subpackage Fonts Library - * @since X.X.X + * @since 6.4.0 */ if ( class_exists( 'WP_Font_Family' ) ) { return; } - /** * Fonts Library class. + * + * @since 6.4.0 */ class WP_Font_Family { /** * Font family data. * + * @since 6.4.0 + * * @var array */ private $data; - /** * WP_Font_Family constructor. * - * @param array $font_data Font family data. + * @since 6.4.0 * + * @param array $font_data Font family data. * @throws Exception If the font family data is missing the slug. */ public function __construct( $font_data = array() ) { @@ -42,7 +45,9 @@ public function __construct( $font_data = array() ) { } /** - * Returns the font family data. + * Gets the font family data. + * + * @since 6.4.0 * * @return array An array in fontFamily theme.json format. */ @@ -51,7 +56,9 @@ public function get_data() { } /** - * Returns the font family data. + * Gets the font family data. + * + * @since 6.4.0 * * @return string fontFamily in theme.json format as stringified JSON. */ @@ -60,7 +67,9 @@ public function get_data_as_json() { } /** - * Returns whether the font family has font faces defined. + * Checks whether the font family has font faces defined. + * + * @since 6.4.0 * * @return bool True if the font family has font faces defined, false otherwise. */ @@ -71,6 +80,8 @@ public function has_font_faces() { /** * Removes font family assets. * + * @since 6.4.0 + * * @return bool True if assets were removed, false otherwise. */ private function remove_font_family_assets() { @@ -88,36 +99,57 @@ private function remove_font_family_assets() { /** * Removes a font family from the database and deletes its assets. * + * @since 6.4.0 + * * @return bool|WP_Error True if the font family was uninstalled, WP_Error otherwise. */ public function uninstall() { $post = $this->get_data_from_post(); if ( null === $post ) { - return new WP_Error( 'font_family_not_found', __( 'The font family could not be found.', 'gutenberg' ) ); + return new WP_Error( + 'font_family_not_found', + __( 'The font family could not be found.', 'gutenberg' ) + ); } - if ( ! $this->remove_font_family_assets() || ! wp_delete_post( $post->ID, true ) ) { - return new WP_Error( 'font_family_not_deleted', __( 'The font family could not be deleted.', 'gutenberg' ) ); + + if ( + ! $this->remove_font_family_assets() || + ! wp_delete_post( $post->ID, true ) + ) { + return new WP_Error( + 'font_family_not_deleted', + __( 'The font family could not be deleted.', 'gutenberg' ) + ); } + return true; } /** * Deletes a specified font asset file from the fonts directory. * + * @since 6.4.0 + * * @param string $src The path of the font asset file to delete. * @return bool Whether the file was deleted. */ private static function delete_asset( $src ) { $filename = basename( $src ); $file_path = path_join( WP_Fonts_Library::get_fonts_dir(), $filename ); + wp_delete_file( $file_path ); + return ! file_exists( $file_path ); } /** * Deletes all font face asset files associated with a given font face. * - * @param array $font_face The font face array containing the 'src' attribute with the file path(s) to be deleted. + * @since 6.4.0 + * + * @param array $font_face The font face array containing the 'src' attribute + * with the file path(s) to be deleted. + * @return bool True if delete was successful, otherwise false. */ private static function delete_font_face_assets( $font_face ) { $sources = (array) $font_face['src']; @@ -135,39 +167,38 @@ private static function delete_font_face_assets( $font_face ) { /** * Gets the overrides for the 'wp_handle_upload' function. * - * @param string $filename The filename to be used for the uploaded file. + * @since 6.4.0 * + * @param string $filename The filename to be used for the uploaded file. * @return array The overrides for the 'wp_handle_upload' function. */ private function get_upload_overrides( $filename ) { return array( - - /* - * Arbitrary string to avoid the is_uploaded_file() check applied - * when using 'wp_handle_upload'. - */ + // Arbitrary string to avoid the is_uploaded_file() check applied + // when using 'wp_handle_upload'. 'action' => 'wp_handle_font_upload', - // We are not testing a form submission. + // Not testing a form submission. 'test_form' => false, - - /* - * Seems like we can not test mime type for files that are not images. - * See wp_check_filetype_and_ext(). - */ + // Seems mime type for files that are not images cannot be tested. + // See wp_check_filetype_and_ext(). 'test_type' => false, - 'unique_filename_callback' => function () use ( $filename ) { - // We want to keep the original filename. + 'unique_filename_callback' => static function() use ( $filename ) { + // Keep the original filename. return $filename; }, ); } /** - * Downloads a font asset from a specified source URL and saves it to the font directory. + * Downloads a font asset from a specified source URL and saves it to + * the font directory. + * + * @since 6.4.0 * - * @param string $url The source URL of the font asset to be downloaded. + * @param string $url The source URL of the font asset to be downloaded. * @param string $filename The filename to save the downloaded font asset as. - * @return string|bool The relative path to the downloaded font asset. False if the download failed. + * @return string|bool The relative path to the downloaded font asset. + * False if the download failed. */ private function download_asset( $url, $filename ) { // Checks if the file to be downloaded has a font mime type. @@ -202,32 +233,42 @@ private function download_asset( $url, $filename ) { return false; } - // Returns the relative path to the downloaded font asset to be used as font face src. + // Returns the relative path to the downloaded font asset to be used as + // font face src. return $handled_file['url']; } /** - * Moves an uploaded font face asset from temp folder to the wp fonts directory. + * Moves an uploaded font face asset from temp folder to the fonts directory. * * This is used when uploading local fonts. * + * @since 6.4.0 + * * @param array $font_face Font face to download. * @param array $file Uploaded file. - * @return array New font face with all assets downloaded and referenced in the font face definition. + * @return array New font face with all assets downloaded and referenced in + * the font face definition. */ private function move_font_face_asset( $font_face, $file ) { $new_font_face = $font_face; - $filename = WP_Font_Family_Utils::get_filename_from_font_face( $this->data['slug'], $font_face, $file['name'] ); + $filename = WP_Font_Family_Utils::get_filename_from_font_face( + $this->data['slug'], + $font_face, + $file['name'] + ); - // Remove the uploaded font asset reference from the font face definition because it is no longer needed. + // Remove the uploaded font asset reference from the font face definition + // because it is no longer needed. unset( $new_font_face['uploaded_file'] ); - // If the filename has not a font mime type, we don't move the file and return the font face definition without src to be ignored later. + // If the filename has no font mime type, don't move the file and + // return the font face definition without src to be ignored later. if ( ! WP_Font_Family_Utils::has_font_mime_type( $filename ) ) { return $new_font_face; } - // Move the uploaded font asset from the temp folder to the wp fonts directory. + // Move the uploaded font asset from the temp folder to the fonts directory. if ( ! function_exists( 'wp_handle_upload' ) ) { require_once ABSPATH . 'wp-admin/includes/file.php'; } @@ -237,7 +278,8 @@ private function move_font_face_asset( $font_face, $file ) { $handled_file = wp_handle_upload( $file, $overrides ); if ( isset( $handled_file['url'] ) ) { - // If the file was successfully moved, we update the font face definition to reference the new file location. + // If the file was successfully moved, update the font face definition + // to reference the new file location. $new_font_face['src'] = $handled_file['url']; } @@ -247,6 +289,8 @@ private function move_font_face_asset( $font_face, $file ) { /** * Sanitizes the font family data using WP_Theme_JSON. * + * @since 6.4.0 + * * @return array A sanitized font family definition. */ private function sanitize() { @@ -259,7 +303,8 @@ private function sanitize() { ), ), ); - // Creates a new WP_Theme_JSON object with the new fonts to leverage sanitization and validation. + // Creates a new WP_Theme_JSON object with the new fonts to + // leverage sanitization and validation. $theme_json = new WP_Theme_JSON_Gutenberg( $fonts_json ); $theme_data = $theme_json->get_data(); $sanitized_font = ! empty( $theme_data['settings']['typography']['fontFamilies'] ) @@ -272,79 +317,107 @@ private function sanitize() { /** * Downloads font face assets. * - * Downloads the font face asset(s) associated with a font face. It works with both single - * source URLs and arrays of multiple source URLs. + * Downloads the font face asset(s) associated with a font face. It works with + * both single source URLs and arrays of multiple source URLs. * - * @param array $font_face The font face array containing the 'src' attribute with the source URL(s) of the assets. - * @return array The modified font face array with the new source URL(s) to the downloaded assets. + * @since 6.4.0 + * + * @param array $font_face The font face array containing the 'src' attribute + * with the source URL(s) of the assets. + * @return array The modified font face array with the new source URL(s) to + * the downloaded assets. */ private function download_font_face_assets( $font_face ) { $new_font_face = $font_face; $sources = (array) $font_face['download_from_url']; $new_font_face['src'] = array(); $index = 0; + foreach ( $sources as $src ) { $suffix = $index++ > 0 ? $index : ''; - $filename = WP_Font_Family_Utils::get_filename_from_font_face( $this->data['slug'], $font_face, $src, $suffix ); + $filename = WP_Font_Family_Utils::get_filename_from_font_face( + $this->data['slug'], + $font_face, + $src, + $suffix + ); $new_src = $this->download_asset( $src, $filename ); if ( $new_src ) { $new_font_face['src'][] = $new_src; } } + if ( count( $new_font_face['src'] ) === 1 ) { $new_font_face['src'] = $new_font_face['src'][0]; } - // Remove the download url reference from the font face definition because it is no longer needed. + + // Remove the download url reference from the font face definition + // because it is no longer needed. unset( $new_font_face['download_from_url'] ); + return $new_font_face; } /** - * Downloads font face assets if the font family is a Google font, or moves them if it is a local font. + * Downloads font face assets if the font family is a Google font, + * or moves them if it is a local font. * - * @param array $files An array of files to be installed. + * @since 6.4.0 * + * @param array $files An array of files to be installed. * @return bool True if the font faces were downloaded or moved successfully, false otherwise. */ private function download_or_move_font_faces( $files ) { if ( ! $this->has_font_faces() ) { return true; } + $new_font_faces = array(); foreach ( $this->data['fontFace'] as $font_face ) { - // If the fonts is not meant to be dowloaded or uploaded (for example to install fonts that use a remote url). + // If the fonts are not meant to be dowloaded or uploaded + // (for example to install fonts that use a remote url). $new_font_face = $font_face; - // If we are installing google fonts, we need to download the font face assets. + // If installing google fonts, download the font face assets. if ( ! empty( $font_face['download_from_url'] ) ) { $new_font_face = $this->download_font_face_assets( $new_font_face ); } - // If we are installing local fonts, we need to move the font face assets from the temp folder to the wp fonts directory. + // If installing local fonts, move the font face assets from + // the temp folder to the wp fonts directory. if ( ! empty( $font_face['uploaded_file'] ) && ! empty( $files ) ) { - $new_font_face = $this->move_font_face_asset( $new_font_face, $files[ $new_font_face['uploaded_file'] ] ); + $new_font_face = $this->move_font_face_asset( + $new_font_face, + $files[ $new_font_face['uploaded_file'] ] + ); } /* - * If the font face assets were successfully downloaded, we add the font face to the new font. - * Font faces with failed downloads are not added to the new font. - */ + * If the font face assets were successfully downloaded, add the font face + * to the new font. Font faces with failed downloads are not added to the + * new font. + */ if ( ! empty( $new_font_face['src'] ) ) { $new_font_faces[] = $new_font_face; } } + if ( ! empty( $new_font_faces ) ) { $this->data['fontFace'] = $new_font_faces; return true; } + return false; } /** * Gets the post for a font family. * - * @return WP_Post|null The post for this font family object or null if the post does not exist. + * @since 6.4.0 + * + * @return WP_Post|null The post for this font family object or + * null if the post does not exist. */ public function get_font_post() { $args = array( @@ -364,9 +437,13 @@ public function get_font_post() { } /** - * Gets the data for this object from the database and sets it to the data property. + * Gets the data for this object from the database and + * sets it to the data property. + * + * @since 6.4.0 * - * @return WP_Post|null The post for this font family object or null if the post does not exist. + * @return WP_Post|null The post for this font family object or + * null if the post does not exist. */ private function get_data_from_post() { $post = $this->get_font_post(); @@ -374,32 +451,42 @@ private function get_data_from_post() { $this->data = json_decode( $post->post_content, true ); return $post; } + return null; } /** * Creates a post for a font family. * + * @since 6.4.0 + * * @return int|WP_Error Post ID if the post was created, WP_Error otherwise. */ private function create_font_post() { - $post = array( + $post = array( 'post_title' => $this->data['name'], 'post_name' => $this->data['slug'], 'post_type' => 'wp_font_family', 'post_content' => $this->get_data_as_json(), 'post_status' => 'publish', ); + $post_id = wp_insert_post( $post ); if ( 0 === $post_id || is_wp_error( $post_id ) ) { - return new WP_Error( 'font_post_creation_failed', __( 'Font post creation failed', 'gutenberg' ) ); + return new WP_Error( + 'font_post_creation_failed', + __( 'Font post creation failed', 'gutenberg' ) + ); } + return $post_id; } /** * Updates a post for a font family. * + * @since 6.4.0 + * * @param WP_Post $post The post to update. * @return int|WP_Error Post ID if the update was successful, WP_Error otherwise. */ @@ -416,29 +503,40 @@ private function update_font_post( $post ) { $post_id = wp_update_post( $post ); if ( 0 === $post_id || is_wp_error( $post_id ) ) { - return new WP_Error( 'font_post_update_failed', __( 'Font post update failed', 'gutenberg' ) ); + return new WP_Error( + 'font_post_update_failed', + __( 'Font post update failed', 'gutenberg' ) + ); } return $post_id; } /** - * Creates a post for a font in the fonts library if it doesn't exist, or updates it if it does. + * Creates a post for a font in the fonts library if it doesn't exist, + * or updates it if it does. + * + * @since 6.4.0 * - * @return int|WP_Error post id if the post was created or updated successfully, WP_Error otherwise. + * @return int|WP_Error Post id if the post was created or updated successfully, + * WP_Error otherwise. */ private function create_or_update_font_post() { $this->sanitize(); + $post = $this->get_font_post(); if ( $post ) { return $this->update_font_post( $post ); } + return $this->create_font_post(); } /** * Installs the font family into the library. * + * @since 6.4.0 + * * @param array $files Optional. An array of files to be installed. Default null. * @return array|WP_Error An array of font family data on success, WP_Error otherwise. */ @@ -448,7 +546,10 @@ public function install( $files = null ) { remove_filter( 'upload_dir', array( 'WP_Fonts_Library', 'set_upload_dir' ) ); if ( ! $were_assets_written ) { - return new WP_Error( 'font_face_download_failed', __( 'The font face assets could not be written.', 'gutenberg' ) ); + return new WP_Error( + 'font_face_download_failed', + __( 'The font face assets could not be written.', 'gutenberg' ) + ); } $post_id = $this->create_or_update_font_post(); @@ -459,5 +560,4 @@ public function install( $files = null ) { return $this->get_data(); } - } diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 371b8d1859d7ee..49209d207c2f7f 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -4,9 +4,9 @@ * * This file contains the Fonts Library class definition. * - * @package Gutenberg + * @package WordPress * @subpackage Fonts Library - * @since X.X.X + * @since 6.4.0 */ if ( class_exists( 'WP_Fonts_Library' ) ) { @@ -15,6 +15,8 @@ /** * Fonts Library class. + * + * @since 6.4.0 */ class WP_Fonts_Library { @@ -28,6 +30,8 @@ class WP_Fonts_Library { /** * Gets the upload directory for fonts. * + * @since 6.4.0 + * * @return string Path of the upload directory for fonts. */ public static function get_fonts_dir() { @@ -37,27 +41,31 @@ public static function get_fonts_dir() { /** * Sets the upload directory for fonts. * + * @since 6.4.0 + * * @param array $defaults { * Default upload directory. * - * @type string $path Path to the directory. - * @type string $url URL for the directory. - * @type string $subdir Sub-directory of the directory. + * @type string $path Path to the directory. + * @type string $url URL for the directory. + * @type string $subdir Sub-directory of the directory. * @type string $basedir Base directory. * @type string $baseurl Base URL. * } - * * @return array Modified upload directory. */ public static function set_upload_dir( $defaults ) { $defaults['subdir'] = '/fonts'; $defaults['path'] = $defaults['basedir'] . $defaults['subdir']; $defaults['url'] = $defaults['baseurl'] . $defaults['subdir']; + return $defaults; } /** * Registers the fonts library post type. + * + * @since 6.4.0 */ public static function register_post_type() { $args = array( @@ -67,5 +75,4 @@ public static function register_post_type() { ); register_post_type( 'wp_font_family', $args ); } - } diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index e8df3cdc33c675..c49560ea32c160 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -4,9 +4,9 @@ * * This file contains the class for the REST API Fonts Library Controller. * - * @package Gutenberg + * @package WordPress * @subpackage Fonts Library - * @since X.X.X + * @since 6.4.0 */ if ( class_exists( 'WP_REST_Fonts_Library_Controller' ) ) { @@ -15,11 +15,15 @@ /** * Fonts Library Controller class. + * + * @since 6.4.0 */ class WP_REST_Fonts_Library_Controller extends WP_REST_Controller { /** * Constructor. + * + * @since 6.4.0 */ public function __construct() { $this->rest_base = 'fonts'; @@ -28,6 +32,8 @@ public function __construct() { /** * Registers the routes for the objects of the controller. + * + * @since 6.4.0 */ public function register_routes() { register_rest_route( @@ -66,9 +72,10 @@ public function register_routes() { /** * Returns validation errors in font families data for installation. * - * @param array[] $font_families Array of font families to install. - * @param array $files Array of files to install. + * @since 6.4.0 * + * @param array[] $font_families Font families to install. + * @param array $files Files to install. * @return array $error_messages Array of error messages. */ private function get_validation_errors( $font_families, $files ) { @@ -88,7 +95,11 @@ private function get_validation_errors( $font_families, $files ) { for ( $family_index = 0; $family_index < count( $font_families ); $family_index++ ) { $font_family = $font_families[ $family_index ]; - if ( ! isset( $font_family['slug'] ) || ! isset( $font_family['name'] ) || ! isset( $font_family['fontFamily'] ) ) { + if ( + ! isset( $font_family['slug'] ) || + ! isset( $font_family['name'] ) || + ! isset( $font_family['fontFamily'] ) + ) { $error_messages[] = sprintf( // translators: 1: font family index. __( 'Font family [%s] should have slug, name and fontFamily properties defined.', 'gutenberg' ), @@ -149,15 +160,17 @@ private function get_validation_errors( $font_families, $files ) { } } } + return $error_messages; } /** * Validate input for the install endpoint. * + * @since 6.4.0 + * * @param string $param The font families to install. * @param WP_REST_Request $request The request object. - * * @return true|WP_Error True if the parameter is valid, WP_Error otherwise. */ public function validate_install_font_families( $param, $request ) { @@ -173,7 +186,9 @@ public function validate_install_font_families( $param, $request ) { } /** - * Schema for the uninstall endpoint. + * Gets the schema for the uninstall endpoint. + * + * @since 6.4.0 * * @return array Schema array. */ @@ -199,10 +214,11 @@ public function uninstall_schema() { ); } - /** * Removes font families from the fonts library and all their assets. * + * @since 6.4.0 + * * @param WP_REST_Request $request Full details about the request. * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure. */ @@ -225,6 +241,8 @@ public function uninstall_fonts( $request ) { /** * Checks whether the user has permissions to update the fonts library. * + * @since 6.4.0 + * * @return true|WP_Error True if the request has write access for the item, WP_Error object otherwise. */ public function update_fonts_library_permissions_check() { @@ -257,9 +275,13 @@ public function update_fonts_library_permissions_check() { /** * Installs new fonts. * - * Takes a request containing new fonts to install, downloads their assets, and adds them to the fonts library. + * Takes a request containing new fonts to install, downloads their assets, and adds them + * to the fonts library. + * + * @since 6.4.0 * - * @param WP_REST_Request $request The request object containing the new fonts to install in the request parameters. + * @param WP_REST_Request $request The request object containing the new fonts to install + * in the request parameters. * @return WP_REST_Response|WP_Error The updated fonts library post content. */ public function install_fonts( $request ) { @@ -267,13 +289,18 @@ public function install_fonts( $request ) { $fonts_param = $request->get_param( 'fontFamilies' ); /* - * As we are receiving form data, the font families are encoded as a string. - * We are using form data because local fonts need to use that format to attach the files in the request. + * As this is receiving form data, the font families are encoded as a string. + * The form data is used because local fonts need to use that format to + * attach the files in the request. */ $fonts_to_install = json_decode( $fonts_param, true ); if ( empty( $fonts_to_install ) ) { - return new WP_Error( 'no_fonts_to_install', __( 'No fonts to install', 'gutenberg' ), array( 'status' => 400 ) ); + return new WP_Error( + 'no_fonts_to_install', + __( 'No fonts to install', 'gutenberg' ), + array( 'status' => 400 ) + ); } // Get uploaded files (used when installing local fonts). @@ -288,14 +315,18 @@ public function install_fonts( $request ) { } if ( empty( $fonts_installed ) ) { - return new WP_Error( 'error_installing_fonts', __( 'Error installing fonts. No font was installed.', 'gutenberg' ), array( 'status' => 500 ) ); + return new WP_Error( + 'error_installing_fonts', + __( 'Error installing fonts. No font was installed.', 'gutenberg' ), + array( 'status' => 500 ) + ); } $response = array(); foreach ( $fonts_installed as $font ) { $response[] = $font->get_data(); } + return new WP_REST_Response( $response ); } - } diff --git a/lib/experimental/fonts-library/fonts-library.php b/lib/experimental/fonts-library/fonts-library.php index 048e025bff24df..7f93ca4c74c37f 100644 --- a/lib/experimental/fonts-library/fonts-library.php +++ b/lib/experimental/fonts-library/fonts-library.php @@ -4,18 +4,16 @@ * * This file contains fonts library init calls. * - * @package Gutenberg + * @package WordPress * @subpackage Fonts Library - * @since X.X.X - */ - -/** - * Registers the routes for the objects of the controller. + * @since 6.4.0 */ if ( ! function_exists( 'fonts_library_init' ) ) { /** * Registers the routes for the objects of the controller. + * + * @since 6.4.0 */ function fonts_library_init() { WP_Fonts_Library::register_post_type(); From b2a2ba6c6d5056c9687b3db1325219087dc6fcc9 Mon Sep 17 00:00:00 2001 From: hellofromtonya Date: Thu, 10 Aug 2023 12:35:01 -0500 Subject: [PATCH 164/169] init global function: renames & adds Core merge notes. The function is for the plugin only and will not be merged into Core. However, the code within the function will go into Core, albeit in different Core functions. `@core-merge` annotation is added with Core merge notes to help whomever creates the Core PR. --- lib/experimental/fonts-library/fonts-library.php | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/lib/experimental/fonts-library/fonts-library.php b/lib/experimental/fonts-library/fonts-library.php index 7f93ca4c74c37f..6fcf19bf976e2f 100644 --- a/lib/experimental/fonts-library/fonts-library.php +++ b/lib/experimental/fonts-library/fonts-library.php @@ -9,18 +9,27 @@ * @since 6.4.0 */ -if ( ! function_exists( 'fonts_library_init' ) ) { +if ( ! function_exists( 'gutenberg_init_fonts_library' ) ) { /** * Registers the routes for the objects of the controller. * + * This function will not be merged into Core. However, the + * code in the function will be. @core-merge annotation + * provides instructions on where the could needs to go + * in Core. + * * @since 6.4.0 */ - function fonts_library_init() { + function gutenberg_init_fonts_library() { + // @core-merge: This code will not go into Core. Rather, + // the code in the static method goes into Core's `create_initial_post_types()`. WP_Fonts_Library::register_post_type(); + + // @core-merge: This code will go into Core's `create_initial_rest_routes()`. $fonts_library_controller = new WP_REST_Fonts_Library_Controller(); $fonts_library_controller->register_routes(); } - add_action( 'rest_api_init', 'fonts_library_init' ); + add_action( 'rest_api_init', 'gutenberg_init_fonts_library' ); } From 54535792a27a758e2633caf21ce632ae7cf94e86 Mon Sep 17 00:00:00 2001 From: hellofromtonya Date: Thu, 10 Aug 2023 12:38:26 -0500 Subject: [PATCH 165/169] Moves post_type registration to init function. WP Core registers all post types in `create_initial_post_types()`. The code for registering will be placed within that global function. This commit removes the WP_Fonts_Library static method and moves the code into the gutenberg_init_fonts_library() function. This is done to prepare the Fonts Library for and ease work in merging into Core. --- .../fonts-library/class-wp-fonts-library.php | 14 -------------- lib/experimental/fonts-library/fonts-library.php | 10 +++++++--- 2 files changed, 7 insertions(+), 17 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 49209d207c2f7f..f0482ae9a864af 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -61,18 +61,4 @@ public static function set_upload_dir( $defaults ) { return $defaults; } - - /** - * Registers the fonts library post type. - * - * @since 6.4.0 - */ - public static function register_post_type() { - $args = array( - 'public' => true, - 'label' => 'Font Library', - 'show_in_rest' => true, - ); - register_post_type( 'wp_font_family', $args ); - } } diff --git a/lib/experimental/fonts-library/fonts-library.php b/lib/experimental/fonts-library/fonts-library.php index 6fcf19bf976e2f..0f80a872796996 100644 --- a/lib/experimental/fonts-library/fonts-library.php +++ b/lib/experimental/fonts-library/fonts-library.php @@ -21,9 +21,13 @@ * @since 6.4.0 */ function gutenberg_init_fonts_library() { - // @core-merge: This code will not go into Core. Rather, - // the code in the static method goes into Core's `create_initial_post_types()`. - WP_Fonts_Library::register_post_type(); + // @core-merge: This code will go into Core's `create_initial_post_types()`. + $args = array( + 'public' => true, + 'label' => 'Font Library', + 'show_in_rest' => true, + ); + register_post_type( 'wp_font_family', $args ); // @core-merge: This code will go into Core's `create_initial_rest_routes()`. $fonts_library_controller = new WP_REST_Fonts_Library_Controller(); From 82968c9d685929b2bea1775acfaee80837ab9dfb Mon Sep 17 00:00:00 2001 From: hellofromtonya Date: Thu, 10 Aug 2023 12:48:55 -0500 Subject: [PATCH 166/169] Remove function_exist wrap from Gutenberg init function. This function will only exists in Gutenberg, thus it does not the guard to protect it from the same function in Core (that is once the Fonts Library is merged into Core). --- .../fonts-library/fonts-library.php | 48 +++++++++---------- 1 file changed, 23 insertions(+), 25 deletions(-) diff --git a/lib/experimental/fonts-library/fonts-library.php b/lib/experimental/fonts-library/fonts-library.php index 0f80a872796996..359442f231fc70 100644 --- a/lib/experimental/fonts-library/fonts-library.php +++ b/lib/experimental/fonts-library/fonts-library.php @@ -9,31 +9,29 @@ * @since 6.4.0 */ -if ( ! function_exists( 'gutenberg_init_fonts_library' ) ) { - /** - * Registers the routes for the objects of the controller. - * - * This function will not be merged into Core. However, the - * code in the function will be. @core-merge annotation - * provides instructions on where the could needs to go - * in Core. - * - * @since 6.4.0 - */ - function gutenberg_init_fonts_library() { - // @core-merge: This code will go into Core's `create_initial_post_types()`. - $args = array( - 'public' => true, - 'label' => 'Font Library', - 'show_in_rest' => true, - ); - register_post_type( 'wp_font_family', $args ); - - // @core-merge: This code will go into Core's `create_initial_rest_routes()`. - $fonts_library_controller = new WP_REST_Fonts_Library_Controller(); - $fonts_library_controller->register_routes(); - } +/** + * Registers the routes for the objects of the controller. + * + * This function will not be merged into Core. However, the + * code in the function will be. @core-merge annotation + * provides instructions on where the could needs to go + * in Core. + * + * @since 6.4.0 + */ +function gutenberg_init_fonts_library() { + // @core-merge: This code will go into Core's `create_initial_post_types()`. + $args = array( + 'public' => true, + 'label' => 'Font Library', + 'show_in_rest' => true, + ); + register_post_type( 'wp_font_family', $args ); - add_action( 'rest_api_init', 'gutenberg_init_fonts_library' ); + // @core-merge: This code will go into Core's `create_initial_rest_routes()`. + $fonts_library_controller = new WP_REST_Fonts_Library_Controller(); + $fonts_library_controller->register_routes(); } +add_action( 'rest_api_init', 'gutenberg_init_fonts_library' ); + From 60722143c24003a9b1d7619cf4ea76284efd86ca Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 10 Aug 2023 15:43:21 -0300 Subject: [PATCH 167/169] adding constant check to load Fonts Library files --- lib/load.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/load.php b/lib/load.php index 358ae17c73b4de..e7da8de58c1b48 100644 --- a/lib/load.php +++ b/lib/load.php @@ -135,13 +135,6 @@ function gutenberg_is_experiment_enabled( $name ) { require __DIR__ . '/experimental/interactivity-api/directives/wp-style.php'; require __DIR__ . '/experimental/interactivity-api/directives/wp-text.php'; -// Fonts Library. -require __DIR__ . '/experimental/fonts-library/class-wp-fonts-library.php'; -require __DIR__ . '/experimental/fonts-library/class-wp-font-family-utils.php'; -require __DIR__ . '/experimental/fonts-library/class-wp-font-family.php'; -require __DIR__ . '/experimental/fonts-library/class-wp-rest-fonts-library-controller.php'; -require __DIR__ . '/experimental/fonts-library/fonts-library.php'; - // Fonts API / Font Face. remove_action( 'plugins_loaded', '_wp_theme_json_webfonts_handler' ); // Turns off WordPress 6.0's stopgap handler. @@ -151,7 +144,14 @@ function gutenberg_is_experiment_enabled( $name ) { * the Font Face (redesigned Fonts API) to be merged before the Fonts Library while * keeping Fonts API available for sites that are using it. */ -if ( class_exists( 'WP_Font_Family' ) || class_exists( 'WP_REST_Fonts_Library_Controller' ) ) { +if ( defined( 'FONTS_LIBRARY_ENABLE' ) && FONTS_LIBRARY_ENABLE ) { + // Loads the Fonts Library. + require __DIR__ . '/experimental/fonts-library/class-wp-fonts-library.php'; + require __DIR__ . '/experimental/fonts-library/class-wp-font-family-utils.php'; + require __DIR__ . '/experimental/fonts-library/class-wp-font-family.php'; + require __DIR__ . '/experimental/fonts-library/class-wp-rest-fonts-library-controller.php'; + require __DIR__ . '/experimental/fonts-library/fonts-library.php'; + if ( ! class_exists( 'WP_Font_Face' ) ) { require __DIR__ . '/experimental/fonts/class-wp-font-face.php'; require __DIR__ . '/experimental/fonts/class-wp-font-face-resolver.php'; From 7586418e418233a157565fa84371c174837f1f0d Mon Sep 17 00:00:00 2001 From: hellofromtonya Date: Thu, 10 Aug 2023 15:23:15 -0500 Subject: [PATCH 168/169] Add constant to turn on Fonts Library in tests. --- phpunit.xml.dist | 1 + 1 file changed, 1 insertion(+) diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 7beea787c08166..5cf01a02fef695 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -9,6 +9,7 @@ > + From e7660cc02f34a8a2aab2a2de5c958fbbfca46c1c Mon Sep 17 00:00:00 2001 From: hellofromtonya Date: Thu, 10 Aug 2023 15:27:55 -0500 Subject: [PATCH 169/169] Add constant to turn on Fonts Library in mu tests. --- phpunit/multisite.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/phpunit/multisite.xml b/phpunit/multisite.xml index 279c1561d9136e..23de57aa1d9bd8 100644 --- a/phpunit/multisite.xml +++ b/phpunit/multisite.xml @@ -10,6 +10,7 @@ +