diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d909a6fe4..2af081d63 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,6 +8,24 @@ on: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + DEV_FAMILY_DOWNLOAD: ${{ secrets.DEV_FAMILY_DOWNLOAD }} + DEV_META_URL: ${{ secrets.DEV_META_URL }} + DEV_URL: ${{ secrets.DEV_URL }} + PRODUCTION_META_URL: ${{ secrets.PRODUCTION_META_URL }} + PRODUCTION_URL: ${{ secrets.PRODUCTION_URL}} + SANDBOX_FAMILY_DOWNLOAD: ${{ secrets.SANDBOX_FAMILY_DOWNLOAD }} + SANDBOX_META_URL: ${{ secrets.SANDBOX_META_URL }} + SANDBOX_URL: ${{ secrets.SANDBOX_URL }} + TRAFFIC_JAM_ID: ${{ secrets.TRAFFIC_JAM_ID }} + STATUS_FIELD_ID: ${{ secrets.STATUS_FIELD_ID }} + LIST_FIELD_ID: ${{ secrets.LIST_FIELD_ID }} + PR_GF_ID: ${{ secrets.PR_GF_ID }} + IN_DEV_ID: ${{ secrets.IN_DEV_ID }} + IN_SANDBOX_ID: ${{ secrets.IN_SANDBOX_ID }} + LIVE_ID: ${{ secrets.LIVE_ID }} + TO_SANDBOX_ID: ${{ secrets.TO_SANDBOX_ID }} + TO_PRODUCTION_ID: ${{ secrets.TO_PRODUCTION_ID }} + BLOCKED_ID: ${{ secrets.BLOCKED_ID }} jobs: build: @@ -30,6 +48,8 @@ jobs: run: | pip install '.[qa]' pip install mypy pytest + - name: Setup tmate session + uses: mxschmitt/action-tmate@v3 - name: Run Tests run: | pytest tests diff --git a/Lib/gftools/push/__init__.py b/Lib/gftools/push/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/Lib/gftools/push/items.py b/Lib/gftools/push/items.py new file mode 100644 index 000000000..5edb343ec --- /dev/null +++ b/Lib/gftools/push/items.py @@ -0,0 +1,210 @@ +import logging +from abc import ABC +from dataclasses import dataclass + +from fontTools.ttLib import TTFont # type: ignore +from gftools.designers_pb2 import DesignerInfoProto +from gftools.fonts_public_pb2 import FamilyProto +from gftools.push.utils import google_path_to_repo_path +from gftools.util.google_fonts import ReadProto +from gftools.utils import font_version, download_family_from_Google_Fonts, PROD_FAMILY_DOWNLOAD +import zipfile +from bs4 import BeautifulSoup # type: ignore +from pathlib import Path +from axisregistry.axes_pb2 import AxisProto +from google.protobuf.json_format import MessageToDict # type: ignore +from typing import Optional + + +log = logging.getLogger("gftools.items") + + +def jsonify(item): + if item == None: + return item + if isinstance(item, (bool, int, float, str)): + return item + elif isinstance(item, dict): + return {k: jsonify(v) for k, v in item.items()} + elif isinstance(item, (tuple, list)): + return [jsonify(i) for i in item] + if hasattr(item, "to_json"): + return item.to_json() + return item + + +class Itemer(ABC): + def to_json(self): + return jsonify(self.__dict__) + + +@dataclass +class Family(Itemer): + name: str + version: str + + @classmethod + def from_ttfont(cls, fp: str | Path): + ttFont = TTFont(fp) + name = ttFont["name"].getBestFamilyName() + version = font_version(ttFont) + return cls(name, version) + + @classmethod + def from_fp(cls, fp: str | Path): + ttf = list(fp.glob("*.ttf"))[0] # type: ignore + return cls.from_ttfont(ttf) + + @classmethod + def from_gf_json(cls, data, dl_url: str=PROD_FAMILY_DOWNLOAD): + return cls.from_gf(data["family"], dl_url) + + @classmethod + def from_gf(cls, name: str, dl_url: str=PROD_FAMILY_DOWNLOAD): + try: + fonts = download_family_from_Google_Fonts(name, dl_url=dl_url) + ttFont = TTFont(fonts[0]) + version = font_version(ttFont) + name = ttFont["name"].getBestFamilyName() + return cls(name, version) + except zipfile.BadZipFile: + return None + + +@dataclass +class AxisFallback(Itemer): + name: str + value: float + + +@dataclass +class Axis(Itemer): + tag: str + display_name: str + min_value: float + default_value: float + max_value: float + precision: float + fallback: list[AxisFallback] + fallback_only: bool + description: str + + @classmethod + def from_gf_json(cls, axis): + return cls( + tag=axis["tag"], + display_name=axis["displayName"], + min_value=axis["min"], + default_value=axis["defaultValue"], + max_value=axis["max"], + precision=axis["precision"], + fallback=[ + AxisFallback(name=f["name"], value=f["value"]) + for f in axis["fallbacks"] + ], + fallback_only=axis["fallbackOnly"], + description=axis["description"], + ) + + @classmethod + def from_fp(cls, fp: Path): + log.info("Getting axis data") + + fp = google_path_to_repo_path(fp) + data = MessageToDict(ReadProto(AxisProto(), fp)) + + return cls( + tag=data["tag"], + display_name=data["displayName"], + min_value=data["minValue"], + default_value=data["defaultValue"], + max_value=data["maxValue"], + precision=data["precision"], + fallback=[ + AxisFallback(name=f["name"], value=f["value"]) + for f in data["fallback"] + ], + fallback_only=data["fallbackOnly"], + description=data["description"] + ) + + def to_json(self): + d = self.__dict__ + d["fallback"] = [f.__dict__ for f in self.fallback] + return d + + +@dataclass +class FamilyMeta(Itemer): + name: str + designer: list[str] + license: str + category: str + subsets: list[str] + stroke: str + classifications: list[str] + description: str + primary_script: Optional[str] = None + + @classmethod + def from_fp(cls, fp: Path): + meta_fp = fp / "METADATA.pb" + data = ReadProto(FamilyProto(), meta_fp) + description = open(fp / "DESCRIPTION.en_us.html").read() + stroke = data.category[0] if not data.stroke else data.stroke.replace(" ", "_").upper() + return cls( + name=data.name, + designer=data.designer.split(","), + license=data.license.lower(), + category=data.category[0], + subsets=sorted([s for s in data.subsets if s != "menu"]), + stroke=stroke, + classifications=[c.lower() for c in data.classifications], + description=parse_html(description), + primary_script=None if data.primary_script == "" else data.primary_script + ) + + @classmethod + def from_gf_json(cls, meta): + stroke = ( + None if meta["stroke"] == None else meta["stroke"].replace(" ", "_").upper() + ) + return cls( + name=meta["family"], + designer=[i["name"] for i in meta["designers"]], + license=meta["license"].lower(), + category=meta["category"].replace(" ", "_").upper(), + subsets=sorted(list(meta["coverage"].keys())), + stroke=stroke, + classifications=[c.lower() for c in meta["classifications"]], + description=parse_html(meta["description"]), + primary_script=None if meta["primaryScript"] == "" else meta["primaryScript"] + ) + + +def parse_html(string: str): + return BeautifulSoup(string.replace("\n", " ").replace(" ", " "), features="lxml").prettify().strip() + + +@dataclass +class Designer(Itemer): + name: str + bio: str + + @classmethod + def from_gf_json(cls, data): + return cls(data["name"], data["bio"]) + + @classmethod + def from_fp(cls, fp): + meta = ReadProto(DesignerInfoProto(), fp / "info.pb") + name = meta.designer + bio_fp = fp / "bio.html" + if not bio_fp.exists(): + return cls(name, None) + with open(bio_fp) as doc: + bio = doc.read() + return cls(name, bio) + + +Items = Axis | Designer | Family | FamilyMeta \ No newline at end of file diff --git a/Lib/gftools/push/servers.py b/Lib/gftools/push/servers.py new file mode 100644 index 000000000..5dfe3fb6b --- /dev/null +++ b/Lib/gftools/push/servers.py @@ -0,0 +1,184 @@ +import json +import logging +import os +from configparser import ConfigParser +from datetime import datetime +from functools import cache +from pathlib import Path + +import requests # type: ignore +from gftools.push.items import Axis, AxisFallback, Designer, Family, FamilyMeta, Itemer, Items +from gftools.utils import ( + PROD_FAMILY_DOWNLOAD, +) + +log = logging.getLogger("gftools.servers") + + + +# This module uses api endpoints which shouldn't be public. Ask +# Marc Foley for the .gf_push_config.ini file. Place this file in your +# home directory. Environment variables can also be used instead. +config_fp = os.path.join(os.path.expanduser("~"), ".gf_push_config.ini") +if os.path.exists(config_fp): + config = ConfigParser() + config.read(config_fp) + SANDBOX_META_URL = config["urls"]["sandbox_meta"] + PRODUCTION_META_URL = config["urls"]["production_meta"] + DEV_META_URL = config["urls"]["dev_meta"] + SANDBOX_FAMILY_DOWNLOAD = config["urls"]["sandbox_family_download"] + DEV_FAMILY_DOWNLOAD = config["urls"]["dev_family_download"] +else: + SANDBOX_META_URL = os.environ.get("SANDBOX_META_URL") + PRODUCTION_META_URL = os.environ.get("PRODUCTION_META_URL") + DEV_META_URL = os.environ.get("DEV_META_URL") + SANDBOX_FAMILY_DOWNLOAD = os.environ.get("SANDBOX_FAMILY_DOWNLOAD") + DEV_FAMILY_DOWNLOAD = os.environ.get("DEV_FAMILY_DOWNLOAD") + + +@cache +def gf_server_metadata(url: str): + """Get family json data from a Google Fonts metadata url""" + # can't do requests.get("url").json() since request text starts with ")]}'" + info = requests.get(url).json() + + return {i["family"]: i for i in info["familyMetadataList"]} + + +@cache +def gf_server_family_metadata(url: str, family: str): + """Get metadata for family on a server""" + # can't do requests.get("url").json() since request text starts with ")]}'" + url = url + f"/{family.replace(' ', '%20')}" + r = requests.get(url) + if r.status_code != 200: + return None + text = r.text + info = json.loads(text[4:]) + return info + + +class GFServer(Itemer): + def __init__(self, name: str, url: str=PRODUCTION_META_URL, dl_url: str=PROD_FAMILY_DOWNLOAD): + self.name = name + self.url = url + self.dl_url = dl_url + self.families: dict[str, Family] = {} + self.designers: dict[str, Designer] = {} + self.metadata: dict[str, FamilyMeta] = {} + self.axisregistry: dict[str, Axis] = {} + + def compare_push_item(self, item: Items): + server_item = self.find_item(item) + return server_item == item + + def find_item(self, item): + if isinstance(item, Family): + server_item = self.families.get(item.name) + elif isinstance(item, Designer): + server_item = self.designers.get(item.name) + elif isinstance(item, Axis): + server_item = self.axisregistry.get(item.tag) + elif isinstance(item, FamilyMeta): + server_item = self.metadata.get(item.name) + else: + return None + return server_item + + def update_axis_registry(self, axis_data): + for axis in axis_data: + self.axisregistry[axis["tag"]] = Axis.from_gf_json(axis) + + def update_family(self, name: str): + family = Family.from_gf(name, dl_url=self.dl_url) + if family: + self.families[name] = family + return True + return False + + def update_family_designers(self, name: str): + meta = gf_server_family_metadata(self.url, name) + for designer in meta["designers"]: + self.designers[designer["name"]] = Designer.from_gf_json(designer) + + def update_metadata(self, name: str): + meta = gf_server_family_metadata(self.url, name) + self.metadata[meta["family"]] = FamilyMeta.from_gf_json(meta) + + def update(self, last_checked: str): + meta = requests.get(self.url).json() + self.update_axis_registry(meta["axisRegistry"]) + + families_data = meta["familyMetadataList"] + for family_data in families_data: + family_name = family_data["family"] + last_modified = family_data["lastModified"] + if last_modified > last_checked: + log.info(f"Updating {family_name}") + if self.update_family(family_name): + self.update_family_designers(family_name) + self.update_metadata(family_name) + + +class GFServers(Itemer): + + DEV = "dev" + SANDBOX = "sandbox" + PRODUCTION = "production" + SERVERS = (DEV, SANDBOX, PRODUCTION) + + def __init__(self): + self.last_checked = datetime.fromordinal(1).isoformat().split("T")[0] + self.dev = GFServer(GFServers.DEV, DEV_META_URL, DEV_FAMILY_DOWNLOAD) + self.sandbox = GFServer(GFServers.SANDBOX, SANDBOX_META_URL, SANDBOX_FAMILY_DOWNLOAD) + self.production = GFServer( + GFServers.PRODUCTION, PRODUCTION_META_URL, PROD_FAMILY_DOWNLOAD + ) + + def __iter__(self): + for server in GFServers.SERVERS: + yield getattr(self, server) + + def update(self): + for server in self: + server.update(self.last_checked) + self.last_checked = datetime.now().isoformat().split("T")[0] + + def compare_item(self, item: Items): + res = item.to_json() + for server in self: + res[f"In {server.name}"] = server.compare_push_item(item) + return res + + def save(self, fp: str | Path): + data = self.to_json() + json.dump(data, open(fp, "w"), indent=4) + + @classmethod + def open(cls, fp: str | Path): + data = json.load(open(fp)) + return cls.from_dict(data) + + @classmethod + def from_dict(cls, data): + inst = cls() + inst.last_checked = data["last_checked"] + for server_name in GFServers.SERVERS: + server = getattr(inst, server_name) + + for item_type, item_value in data[server_name].items(): + if item_type == "families": + server.families = {k: Family(**v) for k, v in item_value.items()} + elif item_type == "designers": + server.designers = {k: Designer(**v) for k, v in item_value.items()} + elif item_type == "metadata": + server.metadata = { + k: FamilyMeta(**v) for k, v in item_value.items() + } + elif item_type == "axisregistry": + server.axisregistry = {k: Axis(**v) for k, v in item_value.items()} + for _, v in server.axisregistry.items(): + v.fallback = [AxisFallback(**a) for a in v.fallback] + else: + setattr(server, item_type, item_value) + return inst diff --git a/Lib/gftools/push.py b/Lib/gftools/push/trafficjam.py similarity index 66% rename from Lib/gftools/push.py rename to Lib/gftools/push/trafficjam.py index 6230f874d..3cb10b420 100644 --- a/Lib/gftools/push.py +++ b/Lib/gftools/push/trafficjam.py @@ -1,38 +1,60 @@ from __future__ import annotations -from pathlib import Path -from dataclasses import dataclass + +import logging import os -from gftools.utils import read_proto -import gftools.fonts_public_pb2 as fonts_pb2 -import requests # type: ignore[import] +from configparser import ConfigParser +from dataclasses import dataclass from enum import Enum from io import TextIOWrapper -import pygit2 -import subprocess - - -def _get_google_fonts_remote(repo): - for remote in repo.remotes: - if "google/fonts.git" in remote.url: - return remote.name - raise ValueError("Cannot find remote with url https://www.github.com/google/fonts") - - -def branch_matches_google_fonts_main(path): - repo = pygit2.Repository(path) - remote_name = _get_google_fonts_remote(repo) - - # fetch latest remote data from branch main - subprocess.run(["git", "fetch", remote_name, "main"]) - - # Check local is in sync with remote - diff = repo.diff(repo.head, f"{remote_name}/main") - if diff.stats.files_changed != 0: - raise ValueError( - "Your local branch is not in sync with the google/fonts " - "main branch. Please pull or remove any commits." - ) - return True +from pathlib import Path +from typing import Optional, Any + +from gftools.push.items import Axis, Designer, Family, FamilyMeta +from gftools.push.utils import google_path_to_repo_path, repo_path_to_google_path + +log = logging.getLogger("gftools.servers") + +# This module uses api endpoints which shouldn't be public. Ask +# Marc Foley for the .gf_push_config.ini file. Place this file in your +# home directory. Environment variables can also be used instead. +config_fp = os.path.join(os.path.expanduser("~"), ".gf_push_config.ini") +if os.path.exists(config_fp): + config = ConfigParser() + config.read(config_fp) + TRAFFIC_JAM_ID = config["board_meta"]["traffic_jam_id"] + STATUS_FIELD_ID = config["board_meta"]["status_field_id"] + LIST_FIELD_ID = config["board_meta"]["list_field_id"] + PR_GF_ID = config["board_meta"]["pr_gf_id"] + IN_DEV_ID = config["board_meta"]["in_dev_id"] + IN_SANDBOX_ID = config["board_meta"]["in_sandbox_id"] + LIVE_ID = config["board_meta"]["live_id"] + TO_SANDBOX_ID = config["board_meta"]["to_sandbox_id"] + TO_PRODUCTION_ID = config["board_meta"]["to_production_id"] + BLOCKED_ID = config["board_meta"]["blocked_id"] +else: + TRAFFIC_JAM_ID = os.environ.get("TRAFFIC_JAM_ID") + STATUS_FIELD_ID = os.environ.get("STATUS_FIELD_ID") + LIST_FIELD_ID = os.environ.get("LIST_FIELD_ID") + PR_GF_ID = os.environ.get("PR_GF_ID") + IN_DEV_ID = os.environ.get("IN_DEV_ID") + IN_SANDBOX_ID = os.environ.get("IN_SANDBOX_ID") + LIVE_ID = os.environ.get("LIVE_ID") + TO_SANDBOX_ID = os.environ.get("TO_SANDBOX_ID") + TO_PRODUCTION_ID = os.environ.get("TO_PRODUCTION_ID") + BLOCKED_ID = os.environ.get("BLOCKED_ID") + + +class STATUS_OPTION_IDS(Enum): + PR_GF = PR_GF_ID + IN_DEV = IN_DEV_ID + IN_SANDBOX = IN_SANDBOX_ID + LIVE = LIVE_ID + + +class LIST_OPTION_IDS(Enum): + TO_SANDBOX = TO_SANDBOX_ID + TO_PRODUCTION = TO_PRODUCTION_ID + BLOCKED = BLOCKED_ID class PushCategory(Enum): @@ -94,11 +116,13 @@ def from_string(string: str): # type: ignore[misc] status: fieldValueByName(name: "Status") { ... on ProjectV2ItemFieldSingleSelectValue { name + id } } list: fieldValueByName(name: "List") { ... on ProjectV2ItemFieldSingleSelectValue { name + id } } type @@ -116,6 +140,7 @@ def from_string(string: str): # type: ignore[misc] name } } + merged } } } @@ -125,6 +150,21 @@ def from_string(string: str): # type: ignore[misc] } """ +GOOGLE_FONTS_UPDATE_ITEM = """ +mutation { + updateProjectV2ItemFieldValue( + input: { + projectId: "%s", + itemId: "%s", + fieldId: "%s", + value: {singleSelectOptionId: "%s"}, + } + ) { + clientMutationId + } +} +""" + @dataclass class PushItem: @@ -132,7 +172,9 @@ class PushItem: category: PushCategory status: PushStatus url: str - push_list: PushList = None + push_list: Optional[PushList] = None + merged: Optional[bool] = None + id_: Optional[str] = None def __hash__(self) -> int: return hash(self.path) @@ -141,24 +183,12 @@ def __eq__(self, other): return self.path == other.path def exists(self) -> bool: + from gftools.push.utils import google_path_to_repo_path + path = google_path_to_repo_path(self.path) return path.exists() - def is_family(self) -> bool: - return any( - t - for t in ("ofl", "apache", "ufl") - if t in self.path.parts - if "article" not in str(self.path) - ) - - def family_name(self) -> str: - assert self.is_family() - metadata_file = self.path / "METADATA.pb" - assert metadata_file.exists(), f"no metadata for {self.path}" - return read_proto(metadata_file, fonts_pb2.FamilyProto()).name - - def to_json(self) -> dict[str, str]: + def to_json(self) -> dict[str, Any]: category = None if not self.category else self.category.value status = None if not self.status else self.status.value url = None if not self.url else self.url @@ -169,6 +199,61 @@ def to_json(self) -> dict[str, str]: "url": url, } + def item(self): + if self.category in [PushCategory.NEW, PushCategory.UPGRADE]: + return Family.from_fp(self.path) + elif self.category == PushCategory.DESIGNER_PROFILE: + return Designer.from_fp(self.path) + elif self.category == PushCategory.METADATA: + return FamilyMeta.from_fp(self.path) + elif self.category == PushCategory.AXIS_REGISTRY: + return Axis.from_fp(self.path) + return None + + def set_server(self, server: STATUS_OPTION_IDS): + from gftools.gfgithub import GitHubClient + + g = GitHubClient("google", "fonts") + mutation = GOOGLE_FONTS_UPDATE_ITEM % ( + TRAFFIC_JAM_ID, + self.id_, + STATUS_FIELD_ID, + server.value, + ) + g._run_graphql(mutation, {}) + + def set_pushlist(self, listt: LIST_OPTION_IDS): + from gftools.gfgithub import GitHubClient + + g = GitHubClient("google", "fonts") + mutation = GOOGLE_FONTS_UPDATE_ITEM % ( + TRAFFIC_JAM_ID, + self.id_, + LIST_FIELD_ID, + listt.value, + ) + g._run_graphql(mutation, {}) + if listt == LIST_OPTION_IDS.TO_SANDBOX: + self.push_list = PushList.TO_SANDBOX + elif listt == LIST_OPTION_IDS.TO_PRODUCTION: + self.push_list = PushList.TO_PRODUCTION + elif listt == LIST_OPTION_IDS.BLOCKED: + self.push_list = PushList.BLOCKED + + def block(self): + self.set_pushlist(LIST_OPTION_IDS.BLOCKED) + print(f"Blocked") + + def bump_pushlist(self): + if self.push_list == None: + self.set_pushlist(LIST_OPTION_IDS.TO_SANDBOX) + elif self.push_list == PushList.TO_SANDBOX: + self.set_pushlist(LIST_OPTION_IDS.TO_PRODUCTION) + elif self.push_list == PushList.TO_PRODUCTION: + print(f"No push list beyond to_production. Keeping item in to_production") + else: + raise ValueError(f"{self.push_list} is not supported") + class PushItems(list): def __add__(self, other): @@ -189,6 +274,12 @@ def __sub__(self, other): def to_sandbox(self): return PushItems([i for i in self if i.push_list == PushList.TO_SANDBOX]) + def in_sandbox(self): + return PushItems([i for i in self if i.status == PushStatus.IN_SANDBOX]) + + def in_dev(self): + return PushItems([i for i in self if i.status == PushStatus.IN_DEV]) + def to_production(self): return PushItems([i for i in self if i.push_list == PushList.TO_PRODUCTION]) @@ -234,7 +325,7 @@ def add(self, item: PushItem): (idx for idx, i in enumerate(self) if i.path == item.path), None ) if existing_idx != None: - self.pop(existing_idx) + self.pop(existing_idx) # type: ignore # Pop any push items which are a child of the item's path to_pop = None @@ -292,8 +383,8 @@ def to_server_file(self, fp: str | Path): def from_server_file( cls, fp: str | Path | TextIOWrapper, - status: PushStatus = None, - push_list: PushList = None, + status: Optional[PushStatus] = None, + push_list: Optional[PushList] = None, ): if isinstance(fp, (str, Path)): doc = open(fp) @@ -320,7 +411,7 @@ def from_server_file( item = PushItem( Path(path.strip()), category if not deleted else PushCategory.DELETED, - status, + status, # type: ignore url.strip(), push_list, ) @@ -330,7 +421,7 @@ def from_server_file( item = PushItem( Path(line.strip()), category if not deleted else PushCategory.DELETED, - status, + status, # type: ignore "", push_list, ) @@ -340,6 +431,7 @@ def from_server_file( @classmethod def from_traffic_jam(cls): + log.info("Getting push items from traffic jam board") from gftools.gfgithub import GitHubClient g = GitHubClient("google", "fonts") @@ -353,11 +445,17 @@ def from_traffic_jam(cls): ] item_count = data["data"]["organization"]["projectV2"]["items"]["totalCount"] while len(board_items) < item_count: - data = g._run_graphql(GOOGLE_FONTS_TRAFFIC_JAM_QUERY % last_item, {}) + data = None + while not data: + try: + data = g._run_graphql(GOOGLE_FONTS_TRAFFIC_JAM_QUERY % last_item, {}) + except: + data = None board_items += data["data"]["organization"]["projectV2"]["items"]["nodes"] last_item = data["data"]["organization"]["projectV2"]["items"]["edges"][-1][ "cursor" ] + log.info(f"Getting items up to {last_item}") # sort items by pr number board_items.sort(key=lambda k: k["content"]["url"]) @@ -378,6 +476,8 @@ def from_traffic_jam(cls): files = [Path(i["path"]) for i in item["content"]["files"]["nodes"]] url = item["content"]["url"] + merged = item["content"]["merged"] + id_ = item["id"] # get category if "--- blocked" in labels: @@ -400,113 +500,5 @@ def from_traffic_jam(cls): cat = PushCategory.OTHER for f in files: - results.add(PushItem(Path(f), cat, status, url, push_list)) + results.add(PushItem(Path(f), cat, status, url, push_list, merged, id_)) return results - - -# The internal Google fonts team store the axisregistry and lang directories -# in a different location. The two functions below tranform paths to -# whichever representation you need. -def repo_path_to_google_path(fp: Path): - """lang/Lib/gflanguages/data/languages/.*.textproto --> lang/languages/.*.textproto""" - # we rename lang paths due to: https://github.com/google/fonts/pull/4679 - if "gflanguages" in fp.parts: - return Path("lang") / fp.relative_to("lang/Lib/gflanguages/data") - # https://github.com/google/fonts/pull/5147 - elif "axisregistry" in fp.parts: - return Path("axisregistry") / fp.name - return fp - - -def google_path_to_repo_path(fp: Path) -> Path: - """lang/languages/.*.textproto --> lang/Lib/gflanguages/data/languages/.*.textproto""" - if "lang" in fp.parts: - return Path("lang/Lib/gflanguages/data/") / fp.relative_to("lang") - elif "axisregistry" in fp.parts: - return fp.parent / "Lib" / "axisregistry" / "data" / fp.name - return fp - - -def lint_server_files(fp: Path): - template = "{}: Following paths are not valid:\n{}\n\n" - footnote = ( - "lang and axisregistry dir paths need to be transformed.\n" - "See https://github.com/googlefonts/gftools/issues/603" - ) - - prod_path = fp / "to_production.txt" - production_file = PushItems.from_server_file(prod_path, PushStatus.IN_SANDBOX) - prod_missing = "\n".join(map(str, production_file.missing_paths())) - prod_msg = template.format("to_production.txt", prod_missing) - - sandbox_path = fp / "to_sandbox.txt" - sandbox_file = PushItems.from_server_file(sandbox_path, PushStatus.IN_DEV) - sandbox_missing = "\n".join(map(str, sandbox_file.missing_paths())) - sandbox_msg = template.format("to_sandbox.txt", sandbox_missing) - - if prod_missing and sandbox_missing: - raise ValueError(prod_msg + sandbox_msg + footnote) - elif prod_missing: - raise ValueError(prod_msg + footnote) - elif sandbox_missing: - raise ValueError(sandbox_msg + footnote) - else: - print("Server files have valid paths") - - -# TODO refactor below server code once backend team have implemented a -# tracking field to help us track prs through the servers - - -SANDBOX_URL = "https://fonts.sandbox.google.com/metadata/fonts" -PRODUCTION_URL = "https://fonts.google.com/metadata/fonts" - -PUSH_STATUS_TEMPLATE = """ -***{} Status*** -New families: -{} - -Existing families, last pushed: -{} -""" - - -def gf_server_metadata(url: str): - """Get family json data from a Google Fonts metadata url""" - # can't do requests.get("url").json() since request text starts with ")]}'" - info = requests.get(url).json() - return {i["family"]: i for i in info["familyMetadataList"]} - - -def server_push_status(fp: Path, url: str): - family_names = [ - i.family_name() - for i in PushItems.from_server_file(fp, None, None) - if i.is_family() - ] - - gf_meta = gf_server_metadata(url) - - new_families = [f for f in family_names if f not in gf_meta] - existing_families = [f for f in family_names if f in gf_meta] - - gf_families = sorted( - [gf_meta[f] for f in existing_families], key=lambda k: k["lastModified"] - ) - existing_families = [f"{f['family']}: {f['lastModified']}" for f in gf_families] - return new_families, existing_families - - -def server_push_report(name: str, fp: Path, server_url: str): - new_families, existing_families = server_push_status(fp, server_url) - new = "\n".join(new_families) if new_families else "N/A" - existing = "\n".join(existing_families) if existing_families else "N/A" - print(PUSH_STATUS_TEMPLATE.format(name, new, existing)) - - -def push_report(fp: Path): - prod_path = fp / "to_production.txt" - server_push_report("Production", prod_path, PRODUCTION_URL) - - sandbox_path = fp / "to_sandbox.txt" - server_push_report("Sandbox", sandbox_path, SANDBOX_URL) diff --git a/Lib/gftools/push/utils.py b/Lib/gftools/push/utils.py new file mode 100644 index 000000000..b4f5aa15a --- /dev/null +++ b/Lib/gftools/push/utils.py @@ -0,0 +1,53 @@ +import subprocess +from pathlib import Path + +import pygit2 # type: ignore + + +def _get_google_fonts_remote(repo): + for remote in repo.remotes: + if "google/fonts.git" in remote.url: + return remote.name + raise ValueError("Cannot find remote with url https://www.github.com/google/fonts") + + +def branch_matches_google_fonts_main(path): + repo = pygit2.Repository(path) + remote_name = _get_google_fonts_remote(repo) + + # fetch latest remote data from branch main + subprocess.run(["git", "fetch", remote_name, "main"]) + + # Check local is in sync with remote + diff = repo.diff(repo.head, f"{remote_name}/main") + if diff.stats.files_changed != 0: + raise ValueError( + "Your local branch is not in sync with the google/fonts " + "main branch. Please pull or remove any commits." + ) + return True + + +# The internal Google fonts team store the axisregistry and lang directories +# in a different location. The two functions below tranform paths to +# whichever representation you need. +def repo_path_to_google_path(fp: Path): + """lang/Lib/gflanguages/data/languages/.*.textproto --> lang/languages/.*.textproto""" + # we rename lang paths due to: https://github.com/google/fonts/pull/4679 + if "gflanguages" in fp.parts: + return Path("lang") / fp.relative_to("lang/Lib/gflanguages/data") + # https://github.com/google/fonts/pull/5147 + elif "axisregistry" in fp.parts: + return Path("axisregistry") / fp.name + return fp + + +def google_path_to_repo_path(fp: Path) -> Path: + """lang/languages/.*.textproto --> lang/Lib/gflanguages/data/languages/.*.textproto""" + if "fonts" not in fp.parts: + return fp + if "lang" in fp.parts: + return Path("lang/Lib/gflanguages/data/") / fp.relative_to("lang") + elif "axisregistry" in fp.parts: + return fp.parent / "Lib" / "axisregistry" / "data" / fp.name + return fp diff --git a/Lib/gftools/scripts/add_font.py b/Lib/gftools/scripts/add_font.py index 9ffd82f17..eb03b26dc 100755 --- a/Lib/gftools/scripts/add_font.py +++ b/Lib/gftools/scripts/add_font.py @@ -169,7 +169,7 @@ def _MakeMetadata(args, is_new): subsets = ['menu'] + subsets_in_font with ttLib.TTFont(file_family_style_weights[0][0]) as ttfont: script = primary_script(ttfont) - if script is not None and script not in ("Latn", "Cyrl", "Grek",): + if script not in ("Latn", "Cyrl", "Grek",): metadata.primary_script = script metadata.license = font_license diff --git a/Lib/gftools/scripts/manage_traffic_jam.py b/Lib/gftools/scripts/manage_traffic_jam.py new file mode 100644 index 000000000..af5e14455 --- /dev/null +++ b/Lib/gftools/scripts/manage_traffic_jam.py @@ -0,0 +1,212 @@ +""" +Google Fonts Traffic Jam manager + +Set the Status items in the Google Fonts Traffic Jam board. +https://github.com/orgs/google/projects/74 + +Users will need to have Github Hub installed. +https://hub.github.com/ + +""" +import subprocess +from rich.pretty import pprint +from gftools.push.utils import branch_matches_google_fonts_main +from gftools.push.servers import GFServers, Items +from gftools.push.trafficjam import ( + PushItem, + PushItems, + PushStatus, + PushCategory, + STATUS_OPTION_IDS, +) +import os +import argparse +from pathlib import Path +import tempfile +import json +import sys +import logging +from typing import Optional +from configparser import ConfigParser + +log = logging.getLogger("gftools.manage_traffic_jam") + +# This module uses api endpoints which shouldn't be public. Ask +# Marc Foley for the .gf_push_config.ini file. Place this file in your +# home directory. Environment variables can also be used instead. +config = ConfigParser() +config.read(os.path.join(os.path.expanduser("~"), ".gf_push_config.ini")) + + +DEV_URL = os.environ.get("DEV_META_URL") or config["urls"]["dev_url"] +SANDBOX_URL = os.environ.get("SANDBOX_URL") or config["urls"]["sandbox_url"] +PRODUCTION_URL = "https://fonts.google.com" + + +try: + subprocess.run("gh", stdout=subprocess.DEVNULL).returncode == 0 +except: + raise SystemError("GitHub CLI is not installed. https://github.com/cli/cli#installation") + + +class ItemChecker: + def __init__(self, push_items: PushItems, gf_fp: str | Path, servers: GFServers): + self.push_items = push_items + self.gf_fp = gf_fp + self.servers = servers + self.skip_pr: Optional[str] = None + + def __enter__(self): + return self + + def __exit__(self): + self.git_checkout_main() + + def user_input(self, item: PushItem): + user_input = input( + "Bump pushlist: [y/n], block: [b] skip pr: [s], inspect: [i], quit: [q]?: " + ) + + if "y" in user_input: + item.bump_pushlist() + if "b" in user_input: + item.block() + if "s" in user_input: + self.skip_pr = item.url + if "i" in user_input: + self.vim_diff(item.item()) + self.user_input(item) + if "q" in user_input: + self.__exit__() + sys.exit() + + def git_checkout_item(self, push_item: PushItem): + if not push_item.merged: + cmd = ["gh", "pr", "checkout", push_item.url.split("/")[-1], "-f"] + subprocess.call(cmd) + else: + self.git_checkout_main() + + def git_checkout_main(self): + cmd = ["git", "checkout", "main", "-f"] + subprocess.call(cmd) + + def vim_diff(self, item: Items): + items = [("local", item)] + for server in self.servers: + items.append((server.name, server.find_item(item))) + + files = [] + for server, item in items: + tmp = tempfile.NamedTemporaryFile(suffix=server, mode="w+") + if item: + json.dump(item.to_json(), tmp, indent=4) + tmp.flush() + files.append(tmp) + subprocess.call(["vimdiff"] + [f.name for f in files]) + for f in files: + f.close() + + def display_item(self, push_item: PushItem): + res = {} + item = push_item.item() + if item: + comparison = self.servers.compare_item(item) + if push_item.category in [PushCategory.UPGRADE, PushCategory.NEW]: + res.update({ + **comparison, + **push_item.__dict__, + **{ + "dev url": "{}/specimen/{}".format(DEV_URL, item.name.replace(" ", "+")), + "sandbox url": "{}/specimen/{}".format(SANDBOX_URL, item.name.replace(" ", "+")), + "prod url": "{}/specimen/{}".format(PRODUCTION_URL, item.name.replace(" ", "+")), + } + }) + else: + res.update({**comparison,**push_item.__dict__,}) + else: + res.update(push_item.__dict__) + pprint(res) + + def update_server(self, push_item: PushItem, servers: GFServers): + if not push_item.merged: + return + item = push_item.item() + if item == None: + log.warning(f"Cannot update server for {push_item}.") + return + if item == servers.production.find_item(item): + push_item.set_server(STATUS_OPTION_IDS.LIVE) + elif item == servers.sandbox.find_item(item): + push_item.set_server(STATUS_OPTION_IDS.IN_SANDBOX) + elif item == servers.dev.find_item(item): + push_item.set_server(STATUS_OPTION_IDS.IN_DEV) + + def run(self): + for push_item in self.push_items: + if any( + [ + push_item.status == PushStatus.LIVE, + not push_item.exists(), + push_item.url == self.skip_pr, + ] + ): + continue + + if push_item.category == PushCategory.OTHER: + print("no push category defined. Skipping") + continue + + self.git_checkout_item(push_item) + self.update_server(push_item, self.servers) + self.display_item(push_item) + self.user_input(push_item) + + +def main(args=None): + parser = argparse.ArgumentParser() + parser.add_argument("fonts_repo", type=Path) + parser.add_argument( + "-f", "--filter", choices=(None, "lists", "in_dev", "in_sandbox"), default=None + ) + parser.add_argument( + "-p", "--show-open-prs", action="store_true", default=False + ) + parser.add_argument("-s", "--server-data", default=(Path("~") / ".gf_server_data.json").expanduser()) + args = parser.parse_args(args) + + branch_matches_google_fonts_main(args.fonts_repo) + + if not args.server_data.exists(): + log.warn(f"{args.server_data} not found. Generating file. This may take a while") + servers = GFServers() + else: + servers = GFServers.open(args.server_data) + servers.update() + servers.save(args.server_data) + + os.chdir(args.fonts_repo) + + push_items = PushItems.from_traffic_jam() + if not args.show_open_prs: + push_items = PushItems(i for i in push_items if i.merged == True) + if args.filter == "lists": + prod_path = args.fonts_repo / "to_production.txt" + production_file = PushItems.from_server_file(prod_path, PushStatus.IN_SANDBOX) + + sandbox_path = args.fonts_repo / "to_sandbox.txt" + sandbox_file = PushItems.from_server_file(sandbox_path, PushStatus.IN_DEV) + + urls = [i.url for i in production_file + sandbox_file] + push_items = PushItems(i for i in push_items if i.url in urls) + elif args.filter == "in_dev": + push_items = push_items.in_dev() + elif args.filter == "in_sandbox": + push_items = push_items.in_sandbox() + + with ItemChecker(push_items[::-1], args.fonts_repo, servers) as checker: + checker.run() + + +if __name__ == "__main__": + main(None) diff --git a/Lib/gftools/scripts/push_stats.py b/Lib/gftools/scripts/push_stats.py index 219990edb..be75324c3 100755 --- a/Lib/gftools/scripts/push_stats.py +++ b/Lib/gftools/scripts/push_stats.py @@ -9,7 +9,7 @@ Usage: gftools push-stats path/to/google/fonts/repo out.html """ -from gftools.push import PushItems +from gftools.push.trafficjam import PushItems from jinja2 import Environment, FileSystemLoader, select_autoescape from pkg_resources import resource_filename from datetime import datetime diff --git a/Lib/gftools/scripts/push_status.py b/Lib/gftools/scripts/push_status.py index 7f05f2a56..a8646ca83 100755 --- a/Lib/gftools/scripts/push_status.py +++ b/Lib/gftools/scripts/push_status.py @@ -31,9 +31,82 @@ """ import argparse from pathlib import Path -from gftools.push import push_report, lint_server_files +from gftools.push.trafficjam import PushItems, PushStatus +from gftools.push.servers import gf_server_metadata, PRODUCTION_META_URL, SANDBOX_META_URL +from gftools.push.items import Family import os + +PUSH_STATUS_TEMPLATE = """ +***{} Status*** +New families: +{} + +Existing families, last pushed: +{} +""" + + +def lint_server_files(fp: Path): + template = "{}: Following paths are not valid:\n{}\n\n" + footnote = ( + "lang and axisregistry dir paths need to be transformed.\n" + "See https://github.com/googlefonts/gftools/issues/603" + ) + + prod_path = fp / "to_production.txt" + production_file = PushItems.from_server_file(prod_path, PushStatus.IN_SANDBOX) + prod_missing = "\n".join(map(str, production_file.missing_paths())) + prod_msg = template.format("to_production.txt", prod_missing) + + sandbox_path = fp / "to_sandbox.txt" + sandbox_file = PushItems.from_server_file(sandbox_path, PushStatus.IN_DEV) + sandbox_missing = "\n".join(map(str, sandbox_file.missing_paths())) + sandbox_msg = template.format("to_sandbox.txt", sandbox_missing) + + if prod_missing and sandbox_missing: + raise ValueError(prod_msg + sandbox_msg + footnote) + elif prod_missing: + raise ValueError(prod_msg + footnote) + elif sandbox_missing: + raise ValueError(sandbox_msg + footnote) + else: + print("Server files have valid paths") + + +def server_push_status(fp: Path, url: str): + families = [i for i in PushItems.from_server_file(fp, None, None) if isinstance(i.item(), Family)] + family_names = [i.item().name for i in families] + + gf_meta = gf_server_metadata(url) + + new_families = [f for f in family_names if f not in gf_meta] + existing_families = [f for f in family_names if f in gf_meta] + + gf_families = sorted( + [gf_meta[f] for f in existing_families], key=lambda k: k["lastModified"] + ) + existing_families = [f"{f['family']}: {f['lastModified']}" for f in gf_families] + return new_families, existing_families + + +def server_push_report(name: str, fp: Path, server_url: str): + new_families, existing_families = server_push_status(fp, server_url) + new = "\n".join(new_families) if new_families else "N/A" + existing = "\n".join(existing_families) if existing_families else "N/A" + print(PUSH_STATUS_TEMPLATE.format(name, new, existing)) + + +def push_report(fp: Path): + prod_path = fp / "to_production.txt" + server_push_report("Production", prod_path, PRODUCTION_META_URL) + + sandbox_path = fp / "to_sandbox.txt" + server_push_report("Sandbox", sandbox_path, SANDBOX_META_URL) + + + + def main(args=None): parser = argparse.ArgumentParser() parser.add_argument("path", type=Path, help="Path to google/fonts repo") diff --git a/Lib/gftools/utils.py b/Lib/gftools/utils.py index d8059bb85..08593c306 100644 --- a/Lib/gftools/utils.py +++ b/Lib/gftools/utils.py @@ -30,8 +30,10 @@ from PIL import Image import re from fontTools import unicodedata as ftunicodedata +from fontTools.ttLib import TTFont from ufo2ft.util import classifyGlyphs from collections import Counter +from collections import defaultdict if sys.version_info[0] == 3: from configparser import ConfigParser else: @@ -40,17 +42,16 @@ # ===================================== # HELPER FUNCTIONS -def download_family_from_Google_Fonts(family, dst=None): +PROD_FAMILY_DOWNLOAD = 'https://fonts.google.com/download?family={}' + + +def download_family_from_Google_Fonts(family, dst=None, dl_url=PROD_FAMILY_DOWNLOAD, ignore_static=True): """Download a font family from Google Fonts""" - url = 'https://fonts.google.com/download?family={}'.format( + url = dl_url.format( family.replace(' ', '%20') ) fonts_zip = ZipFile(download_file(url)) - if dst: - fonts = fonts_from_zip(fonts_zip, dst) - # Remove static fonts if the family is a variable font - return [f for f in fonts if "static" not in f] - return fonts_from_zip(fonts_zip) + return fonts_from_zip(fonts_zip, dst, ignore_static) def Google_Fonts_has_family(name): @@ -223,18 +224,21 @@ def download_file(url, dst_path=None): downloaded_file.write(request.content) -def fonts_from_zip(zipfile, dst=None): +def fonts_from_zip(zipfile, dst=None, ignore_static=True): """Unzip fonts. If not dst is given unzip as BytesIO objects""" - fonts = [] + res = [] for filename in zipfile.namelist(): - if filename.endswith((".ttf", ".otf")): - if dst: - target = os.path.join(dst, filename) - zipfile.extract(filename, dst) - fonts.append(target) - else: - fonts.append(BytesIO(zipfile.read(filename))) - return fonts + if ignore_static and filename.startswith("static"): + continue + if not filename.endswith(("otf", "ttf")): + continue + if dst: + target = os.path.join(dst, filename) + zipfile.extract(filename, dst) + res.append(target) + else: + res.append(BytesIO(zipfile.read(filename))) + return res def cmp(x, y): @@ -536,3 +540,24 @@ def primary_script(ttFont, ignore_latin=True): most_common = script_count.most_common(1) if most_common: return most_common[0][0] + + +def autovivification(items): + if items == None: + return None + if isinstance(items, (list, tuple)): + return [autovivification(v) for v in items] + if isinstance(items, (float, int, str, bool)): + return items + d = defaultdict(lambda: defaultdict(defaultdict)) + d.update({k: autovivification(v) for k,v in items.items()}) + return d + + +def font_version(font: TTFont): + version_id = font["name"].getName(5, 3, 1, 0x409) + if not version_id: + version = str(font["head"].fontRevision) + else: + version = version_id.toUnicode() + return version \ No newline at end of file diff --git a/data/test/servers/family.json b/data/test/servers/family.json new file mode 100644 index 000000000..5e3b6d734 --- /dev/null +++ b/data/test/servers/family.json @@ -0,0 +1,685 @@ +{ + "family": "Maven Pro", + "displayName": null, + "coverage": { + "latin": "0,13,32-126,160-255,305,338-339,710,730,732,768-769,771-772,776-777,803,8211-8212,8216-8218,8220-8222,8226,8230,8249-8250,8260,8308,8364,8482,8722,8725", + "latin-ext": "256-304,306-337,340-382,399,402,413,416-417,431-432,452-468,486-487,490-491,498,500,506-537,539,550,554-557,560-563,567,601,626,768-769,771-772,776-777,803,7689,7695,7700-7703,7708-7710,7712-7713,7722-7723,7726-7727,7734-7735,7738-7739,7746-7747,7749-7753,7756-7763,7774-7785,7789-7791,7800-7803,7808-7813,7822-7823,7831,7838,7922-7929,8224,8353,8355-8356,8358-8359,8361,8363,8365,8369-8370,8373,8377-8378,8380-8381", + "vietnamese": "258-259,272-273,296-297,360-361,416-417,431-432,768-769,771-772,776-777,803,7840-7929,8363" + }, + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.175 + }, + "500": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.175 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.175 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.175 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.175 + }, + "900": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.175 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400.0, + "max": 900.0, + "defaultValue": 400.0 + } + ], + "stats": { + "requests": { + "2023-07-03": 36727339, + "2023-07-04": 36210581, + "2023-07-05": 35533442, + "2023-07-06": 38336063, + "2023-07-07": 35857338, + "2023-07-08": 36264348, + "2023-07-09": 37793807, + "2023-07-10": 37303643, + "2023-07-11": 37826489, + "2023-07-12": 39344048, + "2023-07-13": 39796109, + "2023-07-14": 36711567, + "2023-07-15": 35530937, + "2023-07-16": 38796584, + "2023-07-17": 38106541, + "2023-07-18": 35869736, + "2023-07-19": 34162252, + "2023-07-20": 35740224, + "2023-07-21": 33562260, + "2023-07-22": 32763393, + "2023-07-23": 36467387, + "2023-07-24": 36430231, + "2023-07-25": 36970204, + "2023-07-26": 36159479, + "2023-07-27": 35583286, + "2023-07-28": 33669838, + "2023-07-29": 33569237, + "2023-07-30": 37163096, + "2023-07-31": 36932651, + "2023-08-01": 38524394, + "2023-08-02": 38785803, + "2023-08-03": 37788487, + "2023-08-04": 34967181, + "2023-08-05": 34144334, + "2023-08-06": 37166110, + "2023-08-07": 38061819, + "2023-08-08": 37338097, + "2023-08-09": 38135493, + "2023-08-10": 37629933, + "2023-08-11": 35318855, + "2023-08-12": 34797625, + "2023-08-13": 36707034, + "2023-08-14": 37017633, + "2023-08-15": 38387475, + "2023-08-16": 38738553, + "2023-08-17": 37320096, + "2023-08-18": 34970040, + "2023-08-19": 35323292, + "2023-08-20": 37357991, + "2023-08-21": 37274026, + "2023-08-22": 39068389, + "2023-08-23": 38511887, + "2023-08-24": 36980480, + "2023-08-25": 32939746, + "2023-08-26": 32376590, + "2023-08-27": 35389007, + "2023-08-28": 33758485, + "2023-08-29": 32924210, + "2023-08-30": 33310929, + "2023-08-31": 32878524, + "2023-09-01": 30861050, + "2023-09-02": 30777715, + "2023-09-03": 31164573, + "2023-09-04": 29010001, + "2023-09-05": 27973912, + "2023-09-06": 27697218, + "2023-09-07": 28183013, + "2023-09-08": 25659087, + "2023-09-09": 26090852, + "2023-09-10": 28925616, + "2023-09-11": 29189968, + "2023-09-12": 29418287, + "2023-09-13": 29509481, + "2023-09-14": 27978232, + "2023-09-15": 25916747, + "2023-09-16": 25609815, + "2023-09-17": 28066843, + "2023-09-18": 27518782, + "2023-09-19": 27871900, + "2023-09-20": 28201869, + "2023-09-21": 28307255, + "2023-09-22": 25708277, + "2023-09-23": 25077867, + "2023-09-24": 28057472, + "2023-09-25": 27926898, + "2023-09-26": 27553286, + "2023-09-27": 28291171, + "2023-09-28": 27353252, + "2023-09-29": 25558912, + "2023-09-30": 25981237 + }, + "country_breakdown": { + "AR": 8.024265707859265E-4, + "AU": 0.0011472032047809026, + "BD": 0.005840680359224418, + "BR": 0.15028156758442923, + "CA": 0.0023149288282519826, + "CL": 0.04154558439639462, + "CO": 3.8376922950631267E-4, + "DE": 0.013581736689159239, + "EG": 0.0029983253706348818, + "ES": 0.035984008931356615, + "FR": 0.03282355645306933, + "GB": 0.058306243740662296, + "ID": 0.0482153704707022, + "IN": 0.12236492144018125, + "IQ": 5.807844489320133E-4, + "IT": 0.056873778916087935, + "JP": 0.08434508857475906, + "MA": 4.3507527623175556E-4, + "MX": 0.001820338537818713, + "NL": 0.0465366366218457, + "NO": 3.8376922950631267E-4, + "PH": 0.011346845293798946, + "SG": 2.2164212185391322E-4, + "TR": 3.24254215304799E-4, + "US": 0.28054146349472164 + }, + "integrations_count": 280000 + }, + "description": "\u003cp\u003e Maven Pro is a sans-serif typeface with unique curvature and flowing rhythm. Its forms make it very distinguishable and legible when in context. It blends styles of many great typefaces and is suitable for any design medium. Maven Pro’s modern design is great for the web and fits in any environment. \u003c/p\u003e \n\u003cp\u003e Updated in January 2019 with a Variable Font \"Weight\" axis. \u003c/p\u003e \n\u003cp\u003e The Maven Pro project was initiated by Joe Price, a type designer based in the USA. To contribute, see \u003ca href\u003d\"https://github.com/googlefonts/mavenproFont\"\u003egithub.com/googlefonts/mavenproFont\u003c/a\u003e \u003c/p\u003e", + "license": "ofl", + "designers": [ + { + "name": "Joe Prince", + "bio": null, + "imageUrl": "https://lh3.googleusercontent.com/h4S5jIAfbakt1Wyib8R-zRvIHYEgwIYbIchVY_eIoKZPyO8fZExsqtazdw" + } + ], + "fontUses": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "lastModified": "2023-09-14", + "size": 90712, + "updateNotes": [], + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "", + "article": null, + "languages": [ + "aa_Latn", + "ace_Latn", + "acf_Latn", + "acu_Latn", + "adl_Latn", + "af_Latn", + "agr_Latn", + "aii_Latn", + "ala_Latn", + "ale_Latn", + "aln_Latn", + "amc_Latn", + "ame_Latn", + "ami_Latn", + "amr_Latn", + "an_Latn", + "ang_Latn", + "aoz_Latn", + "arl_Latn", + "arn_Latn", + "arp_Latn", + "art_Latn", + "asa_Latn", + "atg_Latn", + "auc_Latn", + "awo_Latn", + "ay_Latn", + "az_Latn", + "ba_Latn", + "ban_Latn", + "bax_Latn", + "bba_Latn", + "bbc_Latn", + "bbp_Latn", + "bcq_Latn", + "be_Latn", + "beh_Latn", + "bej_Latn", + "bem_Latn", + "bew_Latn", + "bez_Latn", + "bfa_Latn", + "bi_Latn", + "bik_Latn", + "bin_Latn", + "bng_Latn", + "bnm_Latn", + "br_Latn", + "brh_Latn", + "brx_Latn", + "bs_Latn", + "bsj_Latn", + "bto_Latn", + "btt_Latn", + "bug_Latn", + "bum_Latn", + "bus_Latn", + "bvi_Latn", + "byn_Latn", + "ca_Latn", + "cab_Latn", + "cak_Latn", + "cbi_Latn", + "cbk_Latn", + "cbr_Latn", + "cbs_Latn", + "cbt_Latn", + "cbu_Latn", + "ceb_Latn", + "cfa_Latn", + "cfm_Latn", + "cgg_Latn", + "ch_Latn", + "chj_Latn", + "chk_Latn", + "cic_Latn", + "cjk_Latn", + "cnh_Latn", + "cni_Latn", + "co_Latn", + "cof_Latn", + "con_Latn", + "cot_Latn", + "cpu_Latn", + "crh_Latn", + "cri_Latn", + "crs_Latn", + "cs_Latn", + "csa_Latn", + "csb_Latn", + "csk_Latn", + "ctd_Latn", + "cwe_Latn", + "cy_Latn", + "cyo_Latn", + "da_Latn", + "dag_Latn", + "dav_Latn", + "ddn_Latn", + "de_Latn", + "del_Latn", + "dga_Latn", + "dip_Latn", + "dje_Latn", + "dri_Latn", + "dsb_Latn", + "dtp_Latn", + "dts_Latn", + "dug_Latn", + "duu_Latn", + "dwr_Latn", + "dyo_Latn", + "ebu_Latn", + "ema_Latn", + "emk_Latn", + "en_Latn", + "eo_Latn", + "es_Latn", + "ese_Latn", + "et_Latn", + "etx_Latn", + "eu_Latn", + "ext_Latn", + "eza_Latn", + "fbl_Latn", + "fi_Latn", + "fil_Latn", + "fj_Latn", + "fkv_Latn", + "flr_Latn", + "fo_Latn", + "fr_Latn", + "fro_Latn", + "frp_Latn", + "frr_Latn", + "fuf_Latn", + "fur_Latn", + "fvr_Latn", + "fy_Latn", + "ga_Latn", + "gcf_Latn", + "gcr_Latn", + "gd_Latn", + "gel_Latn", + "gem_Latn", + "gil_Latn", + "giw_Latn", + "gjn_Latn", + "gl_Latn", + "gmh_Latn", + "gmv_Latn", + "gof_Latn", + "goh_Latn", + "gsw_Latn", + "guc_Latn", + "guu_Latn", + "guz_Latn", + "gv_Latn", + "gwi_Latn", + "gyi_Latn", + "gyr_Latn", + "hag_Latn", + "hea_Latn", + "hil_Latn", + "hlt_Latn", + "hmn_Latn", + "hms_Latn", + "hni_Latn", + "hnj_Latn", + "hns_Latn", + "hop_Latn", + "hr_Latn", + "hsb_Latn", + "ht_Latn", + "hu_Latn", + "hus_Latn", + "huu_Latn", + "ia_Latn", + "id_Latn", + "ie_Latn", + "igb_Latn", + "ige_Latn", + "ijs_Latn", + "ikw_Latn", + "ilo_Latn", + "io_Latn", + "iqw_Latn", + "iri_Latn", + "is_Latn", + "it_Latn", + "izr_Latn", + "jab_Latn", + "jam_Latn", + "jbo_Latn", + "jiv_Latn", + "jmc_Latn", + "jv_Latn", + "kad_Latn", + "kam_Latn", + "kdc_Latn", + "kde_Latn", + "kea_Latn", + "kek_Latn", + "kg_Latn", + "kgp_Latn", + "kha_Latn", + "khq_Latn", + "ki_Latn", + "kiu_Latn", + "kj_Latn", + "kk_Latn", + "kl_Latn", + "kln_Latn", + "kmb_Latn", + "knc_Latn", + "knf_Latn", + "koo_Latn", + "kqn_Latn", + "kqs_Latn", + "krl_Latn", + "krs_Latn", + "ksb_Latn", + "ksh_Latn", + "ktu_Latn", + "ku_Latn", + "kuj_Latn", + "kun_Latn", + "kus_Latn", + "kw_Latn", + "kwi_Latn", + "la_Latn", + "lad_Latn", + "lb_Latn", + "lfn_Latn", + "lg_Latn", + "lia_Latn", + "lij_Latn", + "liv_Latn", + "lld_Latn", + "lln_Latn", + "lmo_Latn", + "lns_Latn", + "lnu_Latn", + "lot_Latn", + "lt_Latn", + "ltg_Latn", + "lua_Latn", + "lue_Latn", + "lun_Latn", + "luo_Latn", + "lus_Latn", + "luy_Latn", + "lv_Latn", + "lwo_Latn", + "mam_Latn", + "mcd_Latn", + "mcf_Latn", + "mer_Latn", + "mfe_Latn", + "mfq_Latn", + "mfv_Latn", + "mg_Latn", + "mgh_Latn", + "mh_Latn", + "mi_Latn", + "min_Latn", + "miq_Latn", + "mlt_Latn", + "moe_Latn", + "moh_Latn", + "mrw_Latn", + "ms_Latn", + "mt_Latn", + "mto_Latn", + "mui_Latn", + "mus_Latn", + "mwl_Latn", + "mxi_Latn", + "mxv_Latn", + "mzi_Latn", + "mzk_Latn", + "nap_Latn", + "nat_Latn", + "nb_Latn", + "nba_Latn", + "nd_Latn", + "ndj_Latn", + "nds_Latn", + "ng_Latn", + "ngp_Latn", + "nhn_Latn", + "niu_Latn", + "njo_Latn", + "nku_Latn", + "nl_Latn", + "nn_Latn", + "nnp_Latn", + "nnq_Latn", + "no_Latn", + "not_Latn", + "nov_Latn", + "nr_Latn", + "nrb_Latn", + "nrf_Latn", + "nso_Latn", + "nui_Latn", + "nup_Latn", + "ny_Latn", + "nyn_Latn", + "oc_Latn", + "ogc_Latn", + "oki_Latn", + "om_Latn", + "orh_Latn", + "ote_Latn", + "otn_Latn", + "owl_Latn", + "pam_Latn", + "pap_Latn", + "pau_Latn", + "pbb_Latn", + "pcd_Latn", + "pck_Latn", + "pcm_Latn", + "pis_Latn", + "piu_Latn", + "pko_Latn", + "pl_Latn", + "pms_Latn", + "pon_Latn", + "pov_Latn", + "poy_Latn", + "ppl_Latn", + "pro_Latn", + "prq_Latn", + "pt_Latn", + "qu_Latn", + "quc_Latn", + "qud_Latn", + "qug_Latn", + "quh_Latn", + "quy_Latn", + "quz_Latn", + "qva_Latn", + "qvc_Latn", + "qvh_Latn", + "qvm_Latn", + "qvn_Latn", + "qwh_Latn", + "qxn_Latn", + "qxu_Latn", + "rar_Latn", + "ray_Latn", + "rcf_Latn", + "rej_Latn", + "rel_Latn", + "res_Latn", + "rgn_Latn", + "rhg_Latn", + "rm_Latn", + "rmn_Latn", + "rn_Latn", + "ro_Latn", + "rof_Latn", + "rub_Latn", + "ruf_Latn", + "rw_Latn", + "rwk_Latn", + "saq_Latn", + "sas_Latn", + "sbp_Latn", + "sc_Latn", + "scn_Latn", + "sdc_Latn", + "se_Latn", + "seh_Latn", + "sei_Latn", + "ses_Latn", + "sey_Latn", + "sg_Latn", + "sga_Latn", + "she_Latn", + "shk_Latn", + "shp_Latn", + "shu_Latn", + "sk_Latn", + "sl_Latn", + "sla_Latn", + "slr_Latn", + "sm_Latn", + "sma_Latn", + "smj_Latn", + "smn_Latn", + "sn_Latn", + "snk_Latn", + "snn_Latn", + "so_Latn", + "sq_Latn", + "sr_Latn", + "srn_Latn", + "ss_Latn", + "st_Latn", + "stq_Latn", + "su_Latn", + "sv_Latn", + "sw_Latn", + "swb_Latn", + "swc_Latn", + "sxb_Latn", + "szl_Latn", + "taq_Latn", + "tca_Latn", + "tdt_Latn", + "teo_Latn", + "tet_Latn", + "tg_Latn", + "tiv_Latn", + "tiw_Latn", + "tjs_Latn", + "tk_Latn", + "tke_Latn", + "tkl_Latn", + "tlj_Latn", + "tn_Latn", + "tob_Latn", + "toi_Latn", + "toj_Latn", + "top_Latn", + "toq_Latn", + "tpi_Latn", + "tr_Latn", + "ts_Latn", + "tsz_Latn", + "tt_Latn", + "tul_Latn", + "tum_Latn", + "tvd_Latn", + "tvl_Latn", + "twq_Latn", + "ty_Latn", + "tzh_Latn", + "tzo_Latn", + "ug_Latn", + "umb_Latn", + "ura_Latn", + "vec_Latn", + "vep_Latn", + "vi_Latn", + "vid_Latn", + "vmw_Latn", + "vo_Latn", + "vro_Latn", + "vun_Latn", + "wa_Latn", + "wae_Latn", + "wal_Latn", + "war_Latn", + "wbp_Latn", + "wmw_Latn", + "wo_Latn", + "wwa_Latn", + "xav_Latn", + "xh_Latn", + "xog_Latn", + "xsm_Latn", + "yad_Latn", + "yao_Latn", + "yap_Latn", + "yaz_Latn", + "yko_Latn", + "yua_Latn", + "za_Latn", + "zam_Latn", + "zap_Latn", + "zay_Latn", + "zdj_Latn", + "ziw_Latn", + "zlm_Latn", + "zne_Latn", + "zro_Latn", + "ztu_Latn", + "zu_Latn", + "zul_Latn", + "zza_Latn" + ], + "minisiteUrl": "" +} \ No newline at end of file diff --git a/data/test/servers/fonts.json b/data/test/servers/fonts.json new file mode 100644 index 000000000..04503ce41 --- /dev/null +++ b/data/test/servers/fonts.json @@ -0,0 +1,89064 @@ +{ + "axisRegistry": [ + { + "tag": "ZROT", + "displayName": "Rotation in Z", + "min": -180, + "defaultValue": 0, + "max": 180, + "precision": 0, + "description": "Glyphs rotate left and right, negative values to the left and positive values to the right, in the Z dimension.", + "fallbackOnly": false, + "fallbacks": [ + { + "name": "Default", + "value": 0, + "displayName": "" + } + ] + }, + { + "tag": "ARRR", + "displayName": "AR Retinal Resolution", + "min": 10, + "defaultValue": 10, + "max": 60, + "precision": 0, + "description": " Resolution-specific enhancements in AR/VR typefaces to optimize rendering across the different resolutions of the headsets making designs accessible and easy to read.", + "fallbackOnly": false, + "fallbacks": [ + { + "name": "Default", + "value": 10, + "displayName": "" + } + ] + }, + { + "tag": "BNCE", + "displayName": "Bounce", + "min": -100, + "defaultValue": 0, + "max": 100, + "precision": 0, + "description": "Shift glyphs up and down in the Y dimension, resulting in an uneven, bouncy baseline.", + "fallbackOnly": false, + "fallbacks": [ + { + "name": "Default", + "value": 0, + "displayName": "" + } + ] + }, + { + "tag": "CASL", + "displayName": "Casual", + "min": 0, + "defaultValue": 0, + "max": 1, + "precision": -2, + "description": "Adjust stroke curvature, contrast, and terminals from a sturdy, rational Linear style to a friendly, energetic Casual style.", + "fallbackOnly": false, + "illustrationUrl": "https://fonts.gstatic.com/s/img/axisregistry/casual_445408692.svg", + "fallbacks": [ + { + "name": "Linear", + "value": 0, + "displayName": "" + }, + { + "name": "Casual", + "value": 1, + "displayName": "" + } + ] + }, + { + "tag": "CRSV", + "displayName": "Cursive", + "min": 0, + "defaultValue": 0.5, + "max": 1, + "precision": -1, + "description": "Control the substitution of cursive forms along the Slant axis. 'Off' (0) maintains Roman letterforms such as a double-storey a and g, 'Auto' (0.5) allows for Cursive substitution, and 'On' (1) asserts cursive forms even in upright text with a Slant of 0.", + "fallbackOnly": true, + "illustrationUrl": "https://fonts.gstatic.com/s/img/axisregistry/cursive_445408692.svg", + "fallbacks": [ + { + "name": "Roman", + "value": 0, + "displayName": "Off" + }, + { + "name": "Auto", + "value": 0.5, + "displayName": "" + }, + { + "name": "Cursive", + "value": 1, + "displayName": "On" + } + ] + }, + { + "tag": "EDPT", + "displayName": "Extrusion Depth", + "min": 0, + "defaultValue": 100, + "max": 1000, + "precision": 0, + "description": "Controls the 3D depth on contours.", + "fallbackOnly": false, + "fallbacks": [ + { + "name": "Default", + "value": 100, + "displayName": "" + } + ] + }, + { + "tag": "EHLT", + "displayName": "Edge Highlight", + "min": 0, + "defaultValue": 12, + "max": 1000, + "precision": 0, + "description": "Controls thickness of edge highlight details.", + "fallbackOnly": false, + "fallbacks": [ + { + "name": "Default", + "value": 12, + "displayName": "" + } + ] + }, + { + "tag": "ELGR", + "displayName": "Element Grid", + "min": 1, + "defaultValue": 1, + "max": 2, + "precision": -1, + "description": "In modular fonts, where glyphs are composed using multiple copies of the same element, this axis controls how many elements are used per one grid unit.", + "fallbackOnly": false, + "fallbacks": [ + { + "name": "Default", + "value": 1, + "displayName": "" + } + ] + }, + { + "tag": "ELSH", + "displayName": "Element Shape", + "min": 0, + "defaultValue": 0, + "max": 100, + "precision": -1, + "description": "In modular fonts, where glyphs are composed using multiple copies of the same element, this axis controls the shape of the element", + "fallbackOnly": false, + "fallbacks": [ + { + "name": "Default", + "value": 0, + "displayName": "" + } + ] + }, + { + "tag": "FILL", + "displayName": "Fill", + "min": 0, + "defaultValue": 0, + "max": 1, + "precision": -2, + "description": "Fill in transparent forms with opaque ones. Sometimes interior opaque forms become transparent, to maintain contrasting shapes. This can be useful in animation or interaction to convey a state transition. Ranges from 0 (no treatment) to 1 (completely filled).", + "fallbackOnly": false, + "illustrationUrl": "https://fonts.gstatic.com/s/img/axisregistry/fill_445408692.svg", + "fallbacks": [ + { + "name": "Normal", + "value": 0, + "displayName": "" + }, + { + "name": "Filled", + "value": 1, + "displayName": "" + } + ] + }, + { + "tag": "FLAR", + "displayName": "Flare", + "min": 0, + "defaultValue": 0, + "max": 100, + "precision": 0, + "description": "As the flare axis grows, the stem terminals go from straight (0%) to develop a swelling (100%).", + "fallbackOnly": false, + "fallbacks": [ + { + "name": "Default", + "value": 0, + "displayName": "" + } + ] + }, + { + "tag": "GRAD", + "displayName": "Grade", + "min": -1000, + "defaultValue": 0, + "max": 1000, + "precision": 0, + "description": "Finesse the style from lighter to bolder in typographic color, without any changes overall width, line breaks or page layout. Negative grade makes the style lighter, while positive grade makes it bolder. The units are the same as in the Weight axis.", + "fallbackOnly": false, + "illustrationUrl": "https://fonts.gstatic.com/s/img/axisregistry/grade_445408692.svg", + "fallbacks": [ + { + "name": "Normal", + "value": 0, + "displayName": "" + } + ] + }, + { + "tag": "HEXP", + "displayName": "Hyper Expansion", + "min": 0, + "defaultValue": 0, + "max": 100, + "precision": -1, + "description": "Expansion of inner and outer space of glyphs.", + "fallbackOnly": false, + "fallbacks": [ + { + "name": "Default", + "value": 0, + "displayName": "" + } + ] + }, + { + "tag": "INFM", + "displayName": "Informality", + "min": 0, + "defaultValue": 0, + "max": 100, + "precision": 0, + "description": "Adjusts overall design from formal and traditional (0%) to informal and unconventional (up to 100%).", + "fallbackOnly": false, + "fallbacks": [ + { + "name": "Default", + "value": 0, + "displayName": "" + } + ] + }, + { + "tag": "MONO", + "displayName": "Monospace", + "min": 0, + "defaultValue": 0, + "max": 1, + "precision": -2, + "description": "Adjust the style from Proportional (natural widths, default) to Monospace (fixed width). With proportional spacing, each glyph takes up a unique amount of space on a line, while monospace is when all glyphs have the same total character width.", + "fallbackOnly": false, + "illustrationUrl": "https://fonts.gstatic.com/s/img/axisregistry/monospace_445408692.svg", + "fallbacks": [ + { + "name": "Proportional", + "value": 0, + "displayName": "" + }, + { + "name": "Monospace", + "value": 1, + "displayName": "" + } + ] + }, + { + "tag": "MORF", + "displayName": "Morph", + "min": 0, + "defaultValue": 0, + "max": 60, + "precision": 0, + "description": "Letterforms morph: Changing in unconventional ways, that don't alter other attributes, like width or weight. The range from 0 to 60 can be understood as seconds.", + "fallbackOnly": false, + "fallbacks": [ + { + "name": "Default", + "value": 0, + "displayName": "" + } + ] + }, + { + "tag": "ROND", + "displayName": "Roundness", + "min": 0, + "defaultValue": 0, + "max": 100, + "precision": 0, + "description": "Adjust shapes from angular defaults (0%) to become increasingly rounded (up to 100%).", + "fallbackOnly": false, + "fallbacks": [ + { + "name": "Default", + "value": 0, + "displayName": "" + } + ] + }, + { + "tag": "SHRP", + "displayName": "Sharpness", + "min": 0, + "defaultValue": 0, + "max": 100, + "precision": 0, + "description": "Adjust shapes from angular or blunt default shapes (0%) to become increasingly sharped forms (up to 100%).", + "fallbackOnly": false, + "fallbacks": [ + { + "name": "Default", + "value": 0, + "displayName": "" + } + ] + }, + { + "tag": "SOFT", + "displayName": "Softness", + "min": 0, + "defaultValue": 0, + "max": 100, + "precision": -1, + "description": "Adjust letterforms to become more and more soft and rounded.", + "fallbackOnly": false, + "illustrationUrl": "https://fonts.gstatic.com/s/img/axisregistry/softness_445408692.svg", + "fallbacks": [ + { + "name": "Sharp", + "value": 0, + "displayName": "" + }, + { + "name": "Soft", + "value": 50, + "displayName": "" + }, + { + "name": "SuperSoft", + "value": 100, + "displayName": "" + } + ] + }, + { + "tag": "SPAC", + "displayName": "Spacing", + "min": -100, + "defaultValue": 0, + "max": 100, + "precision": -1, + "description": "Adjusts the overall letter spacing of a font. The range is a relative percentage change from the family\u2019s default spacing, so the default value is 0.", + "fallbackOnly": false, + "fallbacks": [ + { + "name": "Default", + "value": 0, + "displayName": "" + } + ] + }, + { + "tag": "VOLM", + "displayName": "Volume", + "min": 0, + "defaultValue": 0, + "max": 100, + "precision": 0, + "description": "Expands and exaggerates details of a typeface to emphasize the personality. Understood in a percentage amount, it goes from a neutral state (0%) to a maximum level (100%).", + "fallbackOnly": false, + "fallbacks": [ + { + "name": "Default", + "value": 0, + "displayName": "" + } + ] + }, + { + "tag": "WONK", + "displayName": "Wonky", + "min": 0, + "defaultValue": 0, + "max": 1, + "precision": 0, + "description": "Toggle the substitution of wonky forms. 'Off' (0) maintains more conventional letterforms, while 'On' (1) maintains wonky letterforms, such as leaning stems in roman, or flagged ascenders in italic. These forms are also controlled by Optical Size.", + "fallbackOnly": true, + "illustrationUrl": "https://fonts.gstatic.com/s/img/axisregistry/wonky_445408692.svg", + "fallbacks": [ + { + "name": "NonWonky", + "value": 0, + "displayName": "" + }, + { + "name": "Wonky", + "value": 1, + "displayName": "" + } + ] + }, + { + "tag": "XOPQ", + "displayName": "Thick Stroke", + "min": -1000, + "defaultValue": 88, + "max": 2000, + "precision": 0, + "description": "A parametric axis for varying thick stroke weights, such as stems.", + "fallbackOnly": false, + "illustrationUrl": "https://fonts.gstatic.com/s/img/axisregistry/x_opaque_445408692.svg", + "fallbacks": [ + { + "name": "Normal", + "value": 88, + "displayName": "" + } + ] + }, + { + "tag": "XROT", + "displayName": "Rotation in X", + "min": -180, + "defaultValue": 0, + "max": 180, + "precision": 0, + "description": "Glyphs rotate left and right, negative values to the left and positive values to the right, in the X dimension.", + "fallbackOnly": false, + "fallbacks": [ + { + "name": "Default", + "value": 0, + "displayName": "" + } + ] + }, + { + "tag": "XTRA", + "displayName": "Counter Width", + "min": -1000, + "defaultValue": 400, + "max": 2000, + "precision": 0, + "description": "A parametric axis for varying counter widths in the X dimension.", + "fallbackOnly": false, + "illustrationUrl": "https://fonts.gstatic.com/s/img/axisregistry/x_transparent_445408692.svg", + "fallbacks": [ + { + "name": "Normal", + "value": 400, + "displayName": "" + } + ] + }, + { + "tag": "YEAR", + "displayName": "Year", + "min": -4000, + "defaultValue": 2000, + "max": 4000, + "precision": 0, + "description": "Axis that shows in a metaphoric way the effect of time on a chosen topic.", + "fallbackOnly": false, + "fallbacks": [ + { + "name": "Default", + "value": 2000, + "displayName": "" + } + ] + }, + { + "tag": "YELA", + "displayName": "Vertical Element Alignment", + "min": -100, + "defaultValue": 0, + "max": 100, + "precision": 0, + "description": "Align glyphs from their default position (0%), usually the baseline, to an upper (100%) or lower (-100%) position.", + "fallbackOnly": false, + "fallbacks": [ + { + "name": "Default", + "value": 0, + "displayName": "" + } + ] + }, + { + "tag": "YOPQ", + "displayName": "Thin Stroke", + "min": -1000, + "defaultValue": 116, + "max": 2000, + "precision": 0, + "description": "A parametric axis for varying thin stroke weights, such as bars and hairlines.", + "fallbackOnly": false, + "illustrationUrl": "https://fonts.gstatic.com/s/img/axisregistry/y_opaque_445408692.svg", + "fallbacks": [ + { + "name": "Normal", + "value": 116, + "displayName": "" + } + ] + }, + { + "tag": "YROT", + "displayName": "Rotation in Y", + "min": -180, + "defaultValue": 0, + "max": 180, + "precision": 0, + "description": "Glyphs rotate up and down, negative values tilt down and positive values tilt up, in the Y dimension.", + "fallbackOnly": false, + "fallbacks": [ + { + "name": "Default", + "value": 0, + "displayName": "" + } + ] + }, + { + "tag": "YTAS", + "displayName": "Ascender Height", + "min": 0, + "defaultValue": 750, + "max": 1000, + "precision": 0, + "description": "A parametric axis for varying the height of lowercase ascenders.", + "fallbackOnly": false, + "illustrationUrl": "https://fonts.gstatic.com/s/img/axisregistry/y_transparent_ascender_445408692.svg", + "fallbacks": [ + { + "name": "Normal", + "value": 750, + "displayName": "" + } + ] + }, + { + "tag": "YTDE", + "displayName": "Descender Depth", + "min": -1000, + "defaultValue": -250, + "max": 0, + "precision": 0, + "description": "A parametric axis for varying the depth of lowercase descenders.", + "fallbackOnly": false, + "illustrationUrl": "https://fonts.gstatic.com/s/img/axisregistry/y_transparent_descender_445408692.svg", + "fallbacks": [ + { + "name": "Normal", + "value": -250, + "displayName": "" + } + ] + }, + { + "tag": "YTFI", + "displayName": "Figure Height", + "min": -1000, + "defaultValue": 600, + "max": 2000, + "precision": 0, + "description": "A parametric axis for varying the height of figures.", + "fallbackOnly": false, + "illustrationUrl": "https://fonts.gstatic.com/s/img/axisregistry/y_transparent_figures_445408692.svg", + "fallbacks": [ + { + "name": "Normal", + "value": 600, + "displayName": "" + } + ] + }, + { + "tag": "YTLC", + "displayName": "Lowercase Height", + "min": 0, + "defaultValue": 500, + "max": 1000, + "precision": 0, + "description": "A parametric axis for varying the height of the lowercase.", + "fallbackOnly": false, + "illustrationUrl": "https://fonts.gstatic.com/s/img/axisregistry/y_transparent_lowercase_445408692.svg", + "fallbacks": [ + { + "name": "Normal", + "value": 500, + "displayName": "" + } + ] + }, + { + "tag": "YTUC", + "displayName": "Uppercase Height", + "min": 0, + "defaultValue": 725, + "max": 1000, + "precision": 0, + "description": "A parametric axis for varying the heights of uppercase letterforms.", + "fallbackOnly": false, + "illustrationUrl": "https://fonts.gstatic.com/s/img/axisregistry/y_transparent_uppercase_445408692.svg", + "fallbacks": [ + { + "name": "Normal", + "value": 725, + "displayName": "" + } + ] + }, + { + "tag": "ital", + "displayName": "Italic", + "min": 0, + "defaultValue": 0, + "max": 1, + "precision": 0, + "description": "Adjust the style from roman to italic. This can be provided as a continuous range within a single font file, like most axes, or as a toggle between two roman and italic files that form a family as a pair.", + "fallbackOnly": true, + "illustrationUrl": "https://fonts.gstatic.com/s/img/axisregistry/italic_445408692.svg", + "fallbacks": [ + { + "name": "Roman", + "value": 0, + "displayName": "" + }, + { + "name": "Italic", + "value": 1, + "displayName": "" + } + ] + }, + { + "tag": "opsz", + "displayName": "Optical Size", + "min": 5, + "defaultValue": 14, + "max": 1200, + "precision": -1, + "description": "Adapt the style to specific text sizes. At smaller sizes, letters typically become optimized for more legibility. At larger sizes, optimized for headlines, with more extreme weights and widths. In CSS this axis is activated automatically when it is available.", + "fallbackOnly": false, + "illustrationUrl": "https://fonts.gstatic.com/s/img/axisregistry/optical_size_445408692.svg", + "fallbacks": [ + { + "name": "6pt", + "value": 6, + "displayName": "" + }, + { + "name": "7pt", + "value": 7, + "displayName": "" + }, + { + "name": "8pt", + "value": 8, + "displayName": "" + }, + { + "name": "9pt", + "value": 9, + "displayName": "" + }, + { + "name": "10pt", + "value": 10, + "displayName": "" + }, + { + "name": "11pt", + "value": 11, + "displayName": "" + }, + { + "name": "12pt", + "value": 12, + "displayName": "" + }, + { + "name": "14pt", + "value": 14, + "displayName": "" + }, + { + "name": "16pt", + "value": 16, + "displayName": "" + }, + { + "name": "17pt", + "value": 17, + "displayName": "" + }, + { + "name": "18pt", + "value": 18, + "displayName": "" + }, + { + "name": "20pt", + "value": 20, + "displayName": "" + }, + { + "name": "24pt", + "value": 24, + "displayName": "" + }, + { + "name": "28pt", + "value": 28, + "displayName": "" + }, + { + "name": "36pt", + "value": 36, + "displayName": "" + }, + { + "name": "48pt", + "value": 48, + "displayName": "" + }, + { + "name": "60pt", + "value": 60, + "displayName": "" + }, + { + "name": "72pt", + "value": 72, + "displayName": "" + }, + { + "name": "96pt", + "value": 96, + "displayName": "" + }, + { + "name": "120pt", + "value": 120, + "displayName": "" + }, + { + "name": "144pt", + "value": 144, + "displayName": "" + } + ] + }, + { + "tag": "slnt", + "displayName": "Slant", + "min": -90, + "defaultValue": 0, + "max": 90, + "precision": 0, + "description": "Adjust the style from upright to slanted, also known to typographers as an 'oblique' style. Rarely, slant can work in the other direction, called a 'backslanted' or 'reverse oblique' style.", + "fallbackOnly": false, + "illustrationUrl": "https://fonts.gstatic.com/s/img/axisregistry/slant_445408692.svg", + "fallbacks": [ + { + "name": "Default", + "value": 0, + "displayName": "" + } + ] + }, + { + "tag": "wdth", + "displayName": "Width", + "min": 25, + "defaultValue": 100, + "max": 200, + "precision": -1, + "description": "Adjust the style from narrower to wider, by varying the proportions of counters, strokes, spacing and kerning, and other aspects of the type. This typically changes the typographic color in a subtle way, and so may be used in conjunction with Weight and Grade axes.", + "fallbackOnly": false, + "illustrationUrl": "https://fonts.gstatic.com/s/img/axisregistry/width_440161844.svg", + "fallbacks": [ + { + "name": "SuperCondensed", + "value": 25, + "displayName": "" + }, + { + "name": "UltraCondensed", + "value": 50, + "displayName": "" + }, + { + "name": "ExtraCondensed", + "value": 62.5, + "displayName": "" + }, + { + "name": "Condensed", + "value": 75, + "displayName": "" + }, + { + "name": "SemiCondensed", + "value": 87.5, + "displayName": "" + }, + { + "name": "Normal", + "value": 100, + "displayName": "" + }, + { + "name": "SemiExpanded", + "value": 112.5, + "displayName": "" + }, + { + "name": "Expanded", + "value": 125, + "displayName": "" + }, + { + "name": "ExtraExpanded", + "value": 150, + "displayName": "" + }, + { + "name": "UltraExpanded", + "value": 200, + "displayName": "" + } + ] + }, + { + "tag": "wght", + "displayName": "Weight", + "min": 1, + "defaultValue": 400, + "max": 1000, + "precision": 0, + "description": "Adjust the style from lighter to bolder in typographic color, by varying stroke weights, spacing and kerning, and other aspects of the type. This typically changes overall width, and so may be used in conjunction with Width and Grade axes.", + "fallbackOnly": false, + "illustrationUrl": "https://fonts.gstatic.com/s/img/axisregistry/weight_445408692.svg", + "fallbacks": [ + { + "name": "Thin", + "value": 100, + "displayName": "" + }, + { + "name": "ExtraLight", + "value": 200, + "displayName": "" + }, + { + "name": "Light", + "value": 300, + "displayName": "" + }, + { + "name": "Regular", + "value": 400, + "displayName": "" + }, + { + "name": "Medium", + "value": 500, + "displayName": "" + }, + { + "name": "SemiBold", + "value": 600, + "displayName": "" + }, + { + "name": "Bold", + "value": 700, + "displayName": "" + }, + { + "name": "ExtraBold", + "value": 800, + "displayName": "" + }, + { + "name": "Black", + "value": 900, + "displayName": "" + } + ] + } + ], + "familyMetadataList": [ + { + "family": "ABeeZee", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 46514, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.182 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.182 + } + }, + "axes": [], + "designers": [ + "Anja Meiners" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-09-30", + "popularity": 171, + "trending": 1313, + "defaultSort": 163, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "ADLaM Display", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 97228, + "subsets": [ + "menu", + "adlam", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3046875 + } + }, + "axes": [], + "designers": [ + "Mark Jamra", + "Neil Patel", + "Andrew Footit" + ], + "lastModified": "2023-08-17", + "dateAdded": "2023-08-14", + "popularity": 853, + "trending": 179, + "defaultSort": 238, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Adlm", + "primaryLanguage": "" + }, + { + "family": "AR One Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 187856, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + } + }, + "axes": [ + { + "tag": "ARRR", + "min": 10, + "max": 60, + "defaultValue": 10 + }, + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Niteesh Yadav" + ], + "lastModified": "2023-09-27", + "dateAdded": "2023-09-26", + "popularity": 1033, + "trending": 3, + "defaultSort": 4, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Abel", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 35220, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 2, + "lineHeight": 1.2744140625 + } + }, + "axes": [], + "designers": [ + "MADType" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-08-03", + "popularity": 69, + "trending": 999, + "defaultSort": 64, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Abhaya Libre", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 536189, + "subsets": [ + "menu", + "latin", + "latin-ext", + "sinhala" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1796875 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1796875 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1796875 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1796875 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1796875 + } + }, + "axes": [], + "designers": [ + "Mooniak" + ], + "lastModified": "2023-05-02", + "dateAdded": "2016-08-30", + "popularity": 312, + "trending": 361, + "defaultSort": 310, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Aboreto", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 48356, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.16 + } + }, + "axes": [], + "designers": [ + "Dominik J\u00E1ger" + ], + "lastModified": "2022-09-21", + "dateAdded": "2022-05-26", + "popularity": 788, + "trending": 238, + "defaultSort": 787, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Abril Fatface", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 67364, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.349 + } + }, + "axes": [], + "designers": [ + "TypeTogether" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-08-31", + "popularity": 109, + "trending": 816, + "defaultSort": 104, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Abyssinica SIL", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 312804, + "subsets": [ + "menu", + "ethiopic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.326171875 + } + }, + "axes": [], + "designers": [ + "SIL International" + ], + "lastModified": "2022-12-07", + "dateAdded": "2016-01-20", + "popularity": 991, + "trending": 1808, + "defaultSort": 980, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Ethi", + "primaryLanguage": "" + }, + { + "family": "Aclonica", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 68732, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 1, + "width": 8, + "lineHeight": 1.13330078125 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-04-27", + "popularity": 443, + "trending": 1581, + "defaultSort": 446, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Acme", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 23292, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.266 + } + }, + "axes": [], + "designers": [ + "Juan Pablo del Peral", + "Huerta Tipogr\u00E1fica" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 148, + "trending": 1223, + "defaultSort": 141, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Actor", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 32863, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.203 + } + }, + "axes": [], + "designers": [ + "Thomas Junold" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-08-03", + "popularity": 411, + "trending": 1073, + "defaultSort": 414, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Adamina", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 114460, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2022-04-20", + "dateAdded": "2011-09-07", + "popularity": 300, + "trending": 414, + "defaultSort": 298, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Advent Pro", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 254866, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": 1, + "slant": 1, + "width": 6, + "lineHeight": 1.196 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.196 + }, + "200": { + "thickness": 2, + "slant": 1, + "width": 6, + "lineHeight": 1.196 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.196 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 6, + "lineHeight": 1.196 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.196 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.196 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.196 + }, + "500": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.196 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.196 + }, + "600": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.196 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.196 + }, + "700": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.196 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.196 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.196 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.196 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.196 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.196 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 100, + "max": 200, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Andreas Kalpakidis" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-02-29", + "popularity": 231, + "trending": 141, + "defaultSort": 225, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Agdasima", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 23082, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.18408203125 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197265625 + } + }, + "axes": [], + "designers": [ + "The DocRepair Project", + "Patric King" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-06-21", + "popularity": 1292, + "trending": 50, + "defaultSort": 536, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Aguafina Script", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 47252, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 8, + "width": 5, + "lineHeight": 1.547 + } + }, + "axes": [], + "designers": [ + "Sudtipos" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-30", + "popularity": 782, + "trending": 209, + "defaultSort": 781, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Akatab", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 105286, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tifinagh" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.369140625 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.369140625 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.369140625 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.369140625 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.369140625 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.369140625 + } + }, + "axes": [], + "designers": [ + "SIL International" + ], + "lastModified": "2023-07-24", + "dateAdded": "2023-06-21", + "popularity": 840, + "trending": 95, + "defaultSort": 482, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Tfng", + "primaryLanguage": "" + }, + { + "family": "Akaya Kanadaka", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 341876, + "subsets": [ + "menu", + "kannada", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.196 + } + }, + "axes": [], + "designers": [ + "Vaishnavi Murthy", + "Juan Luis Blanco" + ], + "lastModified": "2022-09-21", + "dateAdded": "2021-01-14", + "popularity": 1075, + "trending": 450, + "defaultSort": 1058, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Akaya Telivigala", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 561640, + "subsets": [ + "menu", + "latin", + "latin-ext", + "telugu" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.196 + } + }, + "axes": [], + "designers": [ + "Vaishnavi Murthy", + "Juan Luis Blanco" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-06-15", + "popularity": 979, + "trending": 1367, + "defaultSort": 969, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Akronim", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 109592, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 5, + "width": 5, + "lineHeight": 1.142 + } + }, + "axes": [], + "designers": [ + "Grzegorz Klimczewski" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-09-23", + "popularity": 1019, + "trending": 914, + "defaultSort": 1005, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Akshar", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 246008, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.38 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.38 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.38 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.38 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.38 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Tall Chai" + ], + "lastModified": "2023-03-21", + "dateAdded": "2022-03-21", + "popularity": 631, + "trending": 490, + "defaultSort": 641, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Aladin", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 42180, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 5, + "lineHeight": 1.226 + } + }, + "axes": [], + "designers": [ + "Sudtipos" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-30", + "popularity": 578, + "trending": 1185, + "defaultSort": 587, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Alata", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 103312, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.38 + } + }, + "axes": [], + "designers": [ + "Spyros Zevelakis", + "Eben Sorkin" + ], + "lastModified": "2022-09-21", + "dateAdded": "2019-11-08", + "popularity": 197, + "trending": 510, + "defaultSort": 190, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Alatsi", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 139444, + "subsets": [ + "menu", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.28 + } + }, + "axes": [], + "designers": [ + "Spyros Zevelakis", + "Eben Sorkin" + ], + "lastModified": "2023-05-02", + "dateAdded": "2019-11-07", + "popularity": 390, + "trending": 156, + "defaultSort": 393, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Albert Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 135578, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Andreas Rasmussen" + ], + "lastModified": "2022-09-21", + "dateAdded": "2022-06-08", + "popularity": 314, + "trending": 187, + "defaultSort": 312, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Aldrich", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 56548, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 0.97802734375 + } + }, + "axes": [], + "designers": [ + "MADType" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-08-17", + "popularity": 501, + "trending": 463, + "defaultSort": 507, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Alef", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 91654, + "subsets": [ + "menu", + "hebrew", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.36181640625 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.36181640625 + } + }, + "axes": [], + "designers": [ + "Hagilda", + "Mushon Zer-Aviv" + ], + "lastModified": "2022-09-21", + "dateAdded": "2013-05-21", + "popularity": 381, + "trending": 650, + "defaultSort": 383, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Alegreya", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 425570, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.361 + }, + "400i": { + "thickness": 4, + "slant": 4, + "width": 6, + "lineHeight": 1.361 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.361 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.361 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.361 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.361 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.361 + }, + "700i": { + "thickness": 6, + "slant": 4, + "width": 6, + "lineHeight": 1.361 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.361 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.361 + }, + "900": { + "thickness": 8, + "slant": 1, + "width": 7, + "lineHeight": 1.361 + }, + "900i": { + "thickness": 8, + "slant": 4, + "width": 6, + "lineHeight": 1.361 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Juan Pablo del Peral", + "Huerta Tipogr\u00E1fica" + ], + "lastModified": "2023-03-21", + "dateAdded": "2011-12-19", + "popularity": 156, + "trending": 1346, + "defaultSort": 149, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Alegreya SC", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 381295, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.361 + }, + "400i": { + "thickness": 4, + "slant": 4, + "width": 7, + "lineHeight": 1.361 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.361 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.361 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.361 + }, + "700i": { + "thickness": 6, + "slant": 3, + "width": 7, + "lineHeight": 1.361 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.361 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.361 + }, + "900": { + "thickness": 8, + "slant": 1, + "width": 7, + "lineHeight": 1.361 + }, + "900i": { + "thickness": 8, + "slant": 3, + "width": 7, + "lineHeight": 1.361 + } + }, + "axes": [], + "designers": [ + "Juan Pablo del Peral", + "Huerta Tipogr\u00E1fica" + ], + "lastModified": "2022-12-07", + "dateAdded": "2011-12-19", + "popularity": 556, + "trending": 561, + "defaultSort": 567, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Alegreya Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 267803, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": 1, + "slant": 1, + "width": 6, + "lineHeight": 1.2 + }, + "100i": { + "thickness": 1, + "slant": 4, + "width": 5, + "lineHeight": 1.2 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 6, + "lineHeight": 1.2 + }, + "300i": { + "thickness": 3, + "slant": 4, + "width": 6, + "lineHeight": 1.2 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.2 + }, + "400i": { + "thickness": 4, + "slant": 4, + "width": 6, + "lineHeight": 1.2 + }, + "500": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.2 + }, + "500i": { + "thickness": 5, + "slant": 4, + "width": 6, + "lineHeight": 1.2 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.2 + }, + "700i": { + "thickness": 6, + "slant": 4, + "width": 6, + "lineHeight": 1.2 + }, + "800": { + "thickness": 7, + "slant": 1, + "width": 6, + "lineHeight": 1.2 + }, + "800i": { + "thickness": 7, + "slant": 4, + "width": 6, + "lineHeight": 1.2 + }, + "900": { + "thickness": 8, + "slant": 1, + "width": 6, + "lineHeight": 1.2 + }, + "900i": { + "thickness": 8, + "slant": 4, + "width": 6, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Juan Pablo del Peral", + "Huerta Tipogr\u00E1fica" + ], + "lastModified": "2022-12-07", + "dateAdded": "2013-12-04", + "popularity": 166, + "trending": 779, + "defaultSort": 158, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Alegreya Sans SC", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 270500, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": 1, + "slant": 1, + "width": 7, + "lineHeight": 1.2 + }, + "100i": { + "thickness": 1, + "slant": 4, + "width": 6, + "lineHeight": 1.2 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 7, + "lineHeight": 1.2 + }, + "300i": { + "thickness": 3, + "slant": 3, + "width": 6, + "lineHeight": 1.2 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.2 + }, + "400i": { + "thickness": 4, + "slant": 3, + "width": 6, + "lineHeight": 1.2 + }, + "500": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.2 + }, + "500i": { + "thickness": 5, + "slant": 3, + "width": 7, + "lineHeight": 1.2 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.2 + }, + "700i": { + "thickness": 6, + "slant": 4, + "width": 7, + "lineHeight": 1.2 + }, + "800": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.2 + }, + "800i": { + "thickness": 7, + "slant": 3, + "width": 7, + "lineHeight": 1.2 + }, + "900": { + "thickness": 8, + "slant": 1, + "width": 7, + "lineHeight": 1.2 + }, + "900i": { + "thickness": 8, + "slant": 3, + "width": 7, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Juan Pablo del Peral", + "Huerta Tipogr\u00E1fica" + ], + "lastModified": "2022-12-07", + "dateAdded": "2013-12-04", + "popularity": 206, + "trending": 545, + "defaultSort": 199, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Aleo", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [], + "size": 151930, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Alessio Laiso" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-12-11", + "popularity": 293, + "trending": 538, + "defaultSort": 290, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Alex Brush", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 116244, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 9, + "width": 5, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-05-02", + "dateAdded": "2011-12-19", + "popularity": 356, + "trending": 978, + "defaultSort": 357, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Alexandria", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 332488, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Mohamed Gaber", + "Julieta Ulanovsky" + ], + "lastModified": "2023-03-21", + "dateAdded": "2022-11-03", + "popularity": 424, + "trending": 508, + "defaultSort": 429, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Alfa Slab One", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 97376, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 1, + "width": 8, + "lineHeight": 1.369 + } + }, + "axes": [], + "designers": [ + "JM Sol\u00E9" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 187, + "trending": 1129, + "defaultSort": 179, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Alice", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 129200, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.143 + } + }, + "axes": [], + "designers": [ + "Ksenya Erulevich", + "Cyreal" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-08-10", + "popularity": 213, + "trending": 1604, + "defaultSort": 207, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Alike", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 97452, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.254 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2022-04-20", + "dateAdded": "2011-08-24", + "popularity": 545, + "trending": 806, + "defaultSort": 556, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Alike Angular", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 122512, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.254 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-09-28", + "popularity": 617, + "trending": 144, + "defaultSort": 627, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Alkalami", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 145540, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.892 + } + }, + "axes": [], + "designers": [ + "SIL International" + ], + "lastModified": "2023-05-02", + "dateAdded": "2022-06-09", + "popularity": 1003, + "trending": 1106, + "defaultSort": 991, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Alkatra", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 949464, + "subsets": [ + "menu", + "bengali", + "devanagari", + "latin", + "latin-ext", + "oriya" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.684 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.684 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.684 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.684 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Suman Bhandary" + ], + "lastModified": "2023-03-21", + "dateAdded": "2023-03-14", + "popularity": 1243, + "trending": 211, + "defaultSort": 908, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Allan", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 85912, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 5, + "width": 5, + "lineHeight": 1.142578125 + }, + "700": { + "thickness": 6, + "slant": 5, + "width": 5, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Anton Koovit" + ], + "lastModified": "2023-08-25", + "dateAdded": "2010-12-15", + "popularity": 801, + "trending": 1126, + "defaultSort": 799, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Allerta", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 12255, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.2783203125 + } + }, + "axes": [], + "designers": [ + "Matt McInerney" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-11-30", + "popularity": 536, + "trending": 794, + "defaultSort": 547, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Allerta Stencil", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 20260, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.2783203125 + } + }, + "axes": [], + "designers": [ + "Matt McInerney" + ], + "lastModified": "2023-08-25", + "dateAdded": "2010-11-30", + "popularity": 395, + "trending": 243, + "defaultSort": 399, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Allison", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 143700, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.27 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-07-02", + "popularity": 675, + "trending": 204, + "defaultSort": 685, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Allura", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 246632, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 7, + "width": 5, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-02-08", + "popularity": 295, + "trending": 1098, + "defaultSort": 292, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Almarai", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 156817, + "subsets": [ + "menu", + "arabic" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.116 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.116 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.116 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.116 + } + }, + "axes": [], + "designers": [ + "Boutros Fonts" + ], + "lastModified": "2022-09-21", + "dateAdded": "2019-06-04", + "popularity": 133, + "trending": 539, + "defaultSort": 128, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Almendra", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 43976, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.296 + }, + "400i": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.296 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.296 + }, + "700i": { + "thickness": 7, + "slant": 1, + "width": 6, + "lineHeight": 1.296 + } + }, + "axes": [], + "designers": [ + "Ana Sanfelippo" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 831, + "trending": 1553, + "defaultSort": 825, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Almendra Display", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 39264, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 1, + "slant": 1, + "width": 6, + "lineHeight": 1.296 + } + }, + "axes": [], + "designers": [ + "Ana Sanfelippo" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-11-12", + "popularity": 1332, + "trending": 1421, + "defaultSort": 1289, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Almendra SC", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 35988, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.19 + } + }, + "axes": [], + "designers": [ + "Ana Sanfelippo" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 1277, + "trending": 640, + "defaultSort": 1240, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Alumni Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 138102, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-06-19", + "popularity": 590, + "trending": 1155, + "defaultSort": 598, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Alumni Sans Collegiate One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 168620, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-04-09", + "popularity": 1418, + "trending": 396, + "defaultSort": 1363, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Alumni Sans Inline One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 133842, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-02-24", + "popularity": 1286, + "trending": 1384, + "defaultSort": 1253, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Alumni Sans Pinstripe", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 107670, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-06-08", + "popularity": 1476, + "trending": 1321, + "defaultSort": 1403, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Amarante", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 148116, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Karolina Lach" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-07-10", + "popularity": 761, + "trending": 509, + "defaultSort": 766, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Amaranth", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 88842, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.212 + }, + "400i": { + "thickness": 6, + "slant": 5, + "width": 7, + "lineHeight": 1.212 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.212 + }, + "700i": { + "thickness": 7, + "slant": 5, + "width": 7, + "lineHeight": 1.211 + } + }, + "axes": [], + "designers": [ + "Gesine Todt" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-05-04", + "popularity": 318, + "trending": 935, + "defaultSort": 317, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Amatic SC", + "displayName": null, + "category": "Handwriting", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 153902, + "subsets": [ + "menu", + "cyrillic", + "hebrew", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 2, + "slant": 1, + "width": 4, + "lineHeight": 1.261 + }, + "700": { + "thickness": 3, + "slant": 1, + "width": 2, + "lineHeight": 1.261 + } + }, + "axes": [], + "designers": [ + "Vernon Adams", + "Ben Nathan", + "Thomas Jockin" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-10-12", + "popularity": 159, + "trending": 1420, + "defaultSort": 152, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Amethysta", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 66348, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.26220703125 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2022-04-20", + "dateAdded": "2012-01-18", + "popularity": 627, + "trending": 827, + "defaultSort": 637, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Amiko", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 193692, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 5, + "lineHeight": 1.334 + }, + "600": { + "thickness": 4, + "slant": 1, + "width": 5, + "lineHeight": 1.334 + }, + "700": { + "thickness": 5, + "slant": 1, + "width": 5, + "lineHeight": 1.334 + } + }, + "axes": [], + "designers": [ + "Impallari Type" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-03-01", + "popularity": 614, + "trending": 1720, + "defaultSort": 625, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Amiri", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 439402, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 4, + "lineHeight": 1.758 + }, + "400i": { + "thickness": 3, + "slant": 5, + "width": 4, + "lineHeight": 1.758 + }, + "700": { + "thickness": 5, + "slant": 1, + "width": 4, + "lineHeight": 1.758 + }, + "700i": { + "thickness": 5, + "slant": 5, + "width": 4, + "lineHeight": 1.758 + } + }, + "axes": [], + "designers": [ + "Khaled Hosny", + "Sebastian Kosch" + ], + "lastModified": "2023-01-10", + "dateAdded": "2012-07-30", + "popularity": 174, + "trending": 343, + "defaultSort": 166, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Amiri Quran", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 205188, + "subsets": [ + "menu", + "arabic", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.449 + } + }, + "axes": [], + "designers": [ + "Khaled Hosny", + "Sebastian Kosch" + ], + "lastModified": "2022-09-14", + "dateAdded": "2022-08-10", + "popularity": 1298, + "trending": 1714, + "defaultSort": 1262, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [ + "COLRV0" + ], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Amita", + "displayName": null, + "category": "Handwriting", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 218394, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 2, + "width": 4, + "lineHeight": 1.942 + }, + "700": { + "thickness": 3, + "slant": 2, + "width": 4, + "lineHeight": 1.942 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni", + "Brian Bonislawsky" + ], + "lastModified": "2023-08-25", + "dateAdded": "2015-05-20", + "popularity": 429, + "trending": 614, + "defaultSort": 433, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Anaheim", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 34740, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.2890625 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-10-31", + "popularity": 852, + "trending": 377, + "defaultSort": 842, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Andada Pro", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 270086, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.177 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.177 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.177 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.177 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.177 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.177 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.177 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.177 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.177 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.177 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 840, + "defaultValue": 400 + } + ], + "designers": [ + "Huerta Tipogr\u00E1fica", + "Carolina Giovagnoli" + ], + "lastModified": "2023-03-21", + "dateAdded": "2021-05-19", + "popularity": 786, + "trending": 1081, + "defaultSort": 785, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Andika", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 690265, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.611328125 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.611328125 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.611328125 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.611328125 + } + }, + "axes": [], + "designers": [ + "SIL International" + ], + "lastModified": "2023-05-31", + "dateAdded": "2011-08-10", + "popularity": 732, + "trending": 976, + "defaultSort": 740, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Anek Bangla", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 1344456, + "subsets": [ + "menu", + "bengali", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.866 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.866 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.866 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.866 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.866 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.866 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.866 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.866 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 125, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Ek Type" + ], + "lastModified": "2023-09-14", + "dateAdded": "2022-02-08", + "popularity": 1097, + "trending": 525, + "defaultSort": 1079, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Anek Devanagari", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 2190532, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.7055 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.7055 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.7055 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.7055 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.7055 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.7055 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.7055 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.7055 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 125, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Ek Type" + ], + "lastModified": "2023-03-21", + "dateAdded": "2022-02-08", + "popularity": 1184, + "trending": 219, + "defaultSort": 1160, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Anek Gujarati", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 1621452, + "subsets": [ + "menu", + "gujarati", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5195 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5195 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5195 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5195 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5195 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5195 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5195 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5195 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 125, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Ek Type" + ], + "lastModified": "2023-05-02", + "dateAdded": "2022-02-08", + "popularity": 1240, + "trending": 133, + "defaultSort": 1206, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Anek Gurmukhi", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 357420, + "subsets": [ + "menu", + "gurmukhi", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 125, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Ek Type" + ], + "lastModified": "2023-03-09", + "dateAdded": "2022-02-15", + "popularity": 1406, + "trending": 1747, + "defaultSort": 1353, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Anek Kannada", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 1346860, + "subsets": [ + "menu", + "kannada", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.67 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.67 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.67 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.67 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.67 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.67 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.67 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.67 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 125, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Ek Type" + ], + "lastModified": "2023-09-14", + "dateAdded": "2022-02-15", + "popularity": 1411, + "trending": 1771, + "defaultSort": 1357, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Anek Latin", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 404880, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 125, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Ek Type" + ], + "lastModified": "2023-09-14", + "dateAdded": "2022-02-15", + "popularity": 1086, + "trending": 146, + "defaultSort": 1068, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Anek Malayalam", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 668244, + "subsets": [ + "menu", + "latin", + "latin-ext", + "malayalam" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4325 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4325 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4325 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4325 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4325 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4325 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4325 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4325 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 125, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Ek Type" + ], + "lastModified": "2023-09-14", + "dateAdded": "2022-02-15", + "popularity": 775, + "trending": 1583, + "defaultSort": 775, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Anek Odia", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 858180, + "subsets": [ + "menu", + "latin", + "latin-ext", + "oriya" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.68 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.68 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.68 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.68 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.68 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.68 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.68 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.68 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 125, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Ek Type" + ], + "lastModified": "2023-09-14", + "dateAdded": "2022-02-08", + "popularity": 1425, + "trending": 904, + "defaultSort": 1368, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Anek Tamil", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 899668, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tamil" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.408 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.408 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.408 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.408 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.408 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.408 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.408 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.408 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 125, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Ek Type" + ], + "lastModified": "2023-05-02", + "dateAdded": "2022-02-08", + "popularity": 781, + "trending": 512, + "defaultSort": 780, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Anek Telugu", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 1806540, + "subsets": [ + "menu", + "latin", + "latin-ext", + "telugu" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 125, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Ek Type" + ], + "lastModified": "2023-03-21", + "dateAdded": "2022-02-15", + "popularity": 1028, + "trending": 165, + "defaultSort": 1016, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Angkor", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 79720, + "subsets": [ + "menu", + "khmer", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.806640625 + } + }, + "axes": [], + "designers": [ + "Danh Hong" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-03-02", + "popularity": 1090, + "trending": 1695, + "defaultSort": 1072, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Annie Use Your Telescope", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 51068, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 6, + "lineHeight": 1.43359375 + } + }, + "axes": [], + "designers": [ + "Kimberly Geswein" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-04-14", + "popularity": 542, + "trending": 1584, + "defaultSort": 553, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Anonymous Pro", + "displayName": null, + "category": "Monospace", + "stroke": null, + "classifications": [ + "Monospace" + ], + "size": 149516, + "subsets": [ + "menu", + "cyrillic", + "greek", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1 + }, + "400i": { + "thickness": 4, + "slant": 5, + "width": 8, + "lineHeight": 1 + }, + "700": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1 + }, + "700i": { + "thickness": 5, + "slant": 5, + "width": 8, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Mark Simonson" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-12-15", + "popularity": 335, + "trending": 1428, + "defaultSort": 334, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Antic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 39240, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.191 + } + }, + "axes": [], + "designers": [ + "Santiago Orozco" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-08-31", + "popularity": 434, + "trending": 1314, + "defaultSort": 438, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Antic Didone", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 39668, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.19 + } + }, + "axes": [], + "designers": [ + "Santiago Orozco" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-03-14", + "popularity": 752, + "trending": 1141, + "defaultSort": 758, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Antic Slab", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 36948, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.19 + } + }, + "axes": [], + "designers": [ + "Santiago Orozco" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-03-14", + "popularity": 266, + "trending": 1123, + "defaultSort": 265, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Anton", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 170812, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.50537109375 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-02-23", + "popularity": 65, + "trending": 464, + "defaultSort": 61, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Antonio", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 74104, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2939453125 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2939453125 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2939453125 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2939453125 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2939453125 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2939453125 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2939453125 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-08-25", + "dateAdded": "2013-03-05", + "popularity": 330, + "trending": 1718, + "defaultSort": 328, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Anuphan", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 232008, + "subsets": [ + "menu", + "cyrillic-ext", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2023-04-27", + "dateAdded": "2023-03-31", + "popularity": 749, + "trending": 40, + "defaultSort": 530, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Thai", + "primaryLanguage": "" + }, + { + "family": "Anybody", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 205206, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.035 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.035 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.035 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.035 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.035 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.035 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.035 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.035 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.035 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.035 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.035 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.035 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.035 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.035 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.035 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.035 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.035 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.035 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 50, + "max": 150, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Tyler Finck" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-03-02", + "popularity": 1251, + "trending": 1159, + "defaultSort": 1215, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Aoboshi One", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 117976, + "subsets": [ + "menu", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Natsumi Matsuba" + ], + "lastModified": "2023-05-23", + "dateAdded": "2023-05-23", + "popularity": 1262, + "trending": 1821, + "defaultSort": 678, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Hira", + "primaryLanguage": "" + }, + { + "family": "Arapey", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 14833, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.096 + }, + "400i": { + "thickness": 4, + "slant": 5, + "width": 6, + "lineHeight": 1.096 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-11-02", + "popularity": 451, + "trending": 918, + "defaultSort": 453, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Arbutus", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [ + "Display" + ], + "size": 80964, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 1, + "width": 9, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Karolina Lach" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-07", + "popularity": 1085, + "trending": 77, + "defaultSort": 1067, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Arbutus Slab", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 69268, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Karolina Lach" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-09-18", + "popularity": 504, + "trending": 522, + "defaultSort": 511, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Architects Daughter", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 43352, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.3896484375 + } + }, + "axes": [], + "designers": [ + "Kimberly Geswein" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-03-09", + "popularity": 230, + "trending": 1352, + "defaultSort": 224, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Archivo", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 699982, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.088 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.088 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.088 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.088 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.088 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.088 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.088 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.088 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.088 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.088 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.088 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.088 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.088 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.088 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.088 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.088 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.088 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.088 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62, + "max": 125, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2023-09-14", + "dateAdded": "2016-12-03", + "popularity": 101, + "trending": 994, + "defaultSort": 97, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Archivo Black", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 90988, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 1, + "width": 8, + "lineHeight": 1.088 + } + }, + "axes": [], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-09-18", + "popularity": 149, + "trending": 1640, + "defaultSort": 142, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Archivo Narrow", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 95880, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.347 + }, + "400i": { + "thickness": 5, + "slant": 3, + "width": 6, + "lineHeight": 1.347 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.347 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.347 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.347 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.347 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.347 + }, + "700i": { + "thickness": 6, + "slant": 3, + "width": 6, + "lineHeight": 1.347 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2023-09-14", + "dateAdded": "2012-09-18", + "popularity": 150, + "trending": 502, + "defaultSort": 143, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Are You Serious", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 150788, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-08-27", + "popularity": 1536, + "trending": 1174, + "defaultSort": 1438, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Aref Ruqaa", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 117274, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 4, + "lineHeight": 1.563 + }, + "700": { + "thickness": 4, + "slant": 1, + "width": 4, + "lineHeight": 1.563 + } + }, + "axes": [], + "designers": [ + "Abdullah Aref", + "Khaled Hosny", + "Hermann Zapf" + ], + "lastModified": "2022-12-07", + "dateAdded": "2016-06-20", + "popularity": 677, + "trending": 329, + "defaultSort": 687, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Aref Ruqaa Ink", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 599536, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.563 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.563 + } + }, + "axes": [], + "designers": [ + "Abdullah Aref", + "Khaled Hosny", + "Hermann Zapf" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-02-26", + "popularity": 1405, + "trending": 57, + "defaultSort": 917, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [ + "COLRV1", + "OTSVG" + ], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Arima", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 348480, + "subsets": [ + "menu", + "greek", + "greek-ext", + "latin", + "latin-ext", + "malayalam", + "tamil", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.633 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.633 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.633 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.633 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.633 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.633 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.633 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Natanael Gama", + "Joana Correia", + "Rosalie Wagner" + ], + "lastModified": "2023-04-04", + "dateAdded": "2022-05-24", + "popularity": 1054, + "trending": 296, + "defaultSort": 1038, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Arimo", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 519822, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "hebrew", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.14990234375 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.14990234375 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.14990234375 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.14990234375 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.14990234375 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.14990234375 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.14990234375 + }, + "700i": { + "thickness": 7, + "slant": 4, + "width": 7, + "lineHeight": 1.14990234375 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Steve Matteson" + ], + "lastModified": "2023-09-14", + "dateAdded": "2010-11-18", + "popularity": 57, + "trending": 1280, + "defaultSort": 55, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Arizonia", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 126276, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 9, + "width": 6, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 494, + "trending": 546, + "defaultSort": 500, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Armata", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 89724, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Viktoriya Grabowska" + ], + "lastModified": "2023-05-02", + "dateAdded": "2011-12-19", + "popularity": 430, + "trending": 838, + "defaultSort": 434, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Arsenal", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 195348, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.254 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.254 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.254 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.254 + } + }, + "axes": [], + "designers": [ + "Andrij Shevchenko" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-12-06", + "popularity": 215, + "trending": 1044, + "defaultSort": 209, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Artifika", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 54136, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.216796875 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2023-01-10", + "dateAdded": "2011-06-01", + "popularity": 971, + "trending": 1225, + "defaultSort": 961, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Arvo", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [], + "size": 37115, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.23486328125 + }, + "400i": { + "thickness": 5, + "slant": 5, + "width": 8, + "lineHeight": 1.23486328125 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.23486328125 + }, + "700i": { + "thickness": 7, + "slant": 4, + "width": 8, + "lineHeight": 1.23486328125 + } + }, + "axes": [], + "designers": [ + "Anton Koovit" + ], + "lastModified": "2023-08-25", + "dateAdded": "2010-11-17", + "popularity": 107, + "trending": 1102, + "defaultSort": 102, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Arya", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 184268, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 3, + "lineHeight": 1.809 + }, + "700": { + "thickness": 5, + "slant": 1, + "width": 3, + "lineHeight": 1.809 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-05-20", + "popularity": 524, + "trending": 202, + "defaultSort": 531, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Asap", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 476880, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.146 + }, + "400i": { + "thickness": 5, + "slant": 3, + "width": 7, + "lineHeight": 1.146 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.146 + }, + "700i": { + "thickness": 7, + "slant": 3, + "width": 7, + "lineHeight": 1.146 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 125, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2023-06-07", + "dateAdded": "2012-01-25", + "popularity": 111, + "trending": 526, + "defaultSort": 106, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Asap Condensed", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 114349, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.146 + } + }, + "axes": [], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2023-05-02", + "dateAdded": "2017-07-31", + "popularity": 113, + "trending": 69, + "defaultSort": 108, + "androidFragment": "name=Asap&width=75.0", + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Asar", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 669032, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 4, + "lineHeight": 1.753 + } + }, + "axes": [], + "designers": [ + "Sorkin Type" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-06-17", + "popularity": 956, + "trending": 468, + "defaultSort": 946, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Asset", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 50616, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 10, + "slant": 1, + "width": 10, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Riccardo De Franceschi" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-06-29", + "popularity": 1336, + "trending": 1382, + "defaultSort": 1292, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Assistant", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 99496, + "subsets": [ + "menu", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "200": { + "thickness": 2, + "slant": 1, + "width": 4, + "lineHeight": 1.308 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 4, + "lineHeight": 1.308 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 4, + "lineHeight": 1.308 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.308 + }, + "600": { + "thickness": 5, + "slant": 1, + "width": 4, + "lineHeight": 1.308 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 4, + "lineHeight": 1.308 + }, + "800": { + "thickness": 7, + "slant": 1, + "width": 4, + "lineHeight": 1.308 + } + }, + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Adobe Systems Inc.", + "Ben Nathan" + ], + "lastModified": "2023-09-14", + "dateAdded": "2016-03-31", + "popularity": 77, + "trending": 1582, + "defaultSort": 73, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Astloch", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 63444, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 2, + "slant": 1, + "width": 5, + "lineHeight": 1.23388671875 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.23388671875 + } + }, + "axes": [], + "designers": [ + "Dan Rhatigan" + ], + "lastModified": "2022-04-20", + "dateAdded": "2011-02-16", + "popularity": 1381, + "trending": 1006, + "defaultSort": 1331, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Asul", + "displayName": null, + "category": "Sans Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 33432, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.213 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.213 + } + }, + "axes": [], + "designers": [ + "Mariela Monsalve" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 798, + "trending": 172, + "defaultSort": 797, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Athiti", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 174908, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-06-15", + "popularity": 442, + "trending": 1510, + "defaultSort": 445, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Atkinson Hyperlegible", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 54946, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + } + }, + "axes": [], + "designers": [ + "Braille Institute", + "Applied Design Works", + "Elliott Scott", + "Megan Eiswerth", + "Linus Boman", + "Theodore Petrosky" + ], + "lastModified": "2023-05-02", + "dateAdded": "2021-04-30", + "popularity": 513, + "trending": 597, + "defaultSort": 518, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Atma", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 219289, + "subsets": [ + "menu", + "bengali", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.619 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.619 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.619 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.619 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.619 + } + }, + "axes": [], + "designers": [ + "Black Foundry" + ], + "lastModified": "2023-05-02", + "dateAdded": "2016-06-15", + "popularity": 869, + "trending": 1183, + "defaultSort": 858, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Atomic Age", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 62592, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.34130859375 + } + }, + "axes": [], + "designers": [ + "James Grieshaber" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-10-26", + "popularity": 1171, + "trending": 171, + "defaultSort": 1147, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Aubrey", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 45628, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.042 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-07-27", + "popularity": 1358, + "trending": 1275, + "defaultSort": 1310, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Audiowide", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 69916, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.27490234375 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-04-04", + "popularity": 354, + "trending": 272, + "defaultSort": 355, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Autour One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 87060, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Sorkin Type" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-05-15", + "popularity": 1069, + "trending": 71, + "defaultSort": 1052, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Average", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 73640, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.216 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2022-11-09", + "dateAdded": "2012-03-14", + "popularity": 564, + "trending": 255, + "defaultSort": 573, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Average Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 43824, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.296 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-10-26", + "popularity": 621, + "trending": 1743, + "defaultSort": 631, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Averia Gruesa Libre", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 111584, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.193359375 + } + }, + "axes": [], + "designers": [ + "Dan Sayers" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-03-14", + "popularity": 1168, + "trending": 952, + "defaultSort": 1144, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Averia Libre", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 121133, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "300": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.193359375 + }, + "300i": { + "thickness": 4, + "slant": 4, + "width": 7, + "lineHeight": 1.193359375 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.193359375 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.193359375 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.193359375 + }, + "700i": { + "thickness": 6, + "slant": 4, + "width": 7, + "lineHeight": 1.193359375 + } + }, + "axes": [], + "designers": [ + "Dan Sayers" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-03-14", + "popularity": 559, + "trending": 1137, + "defaultSort": 569, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Averia Sans Libre", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 121324, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "300": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.2373046875 + }, + "300i": { + "thickness": 4, + "slant": 4, + "width": 7, + "lineHeight": 1.2373046875 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.2373046875 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.2373046875 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.2373046875 + }, + "700i": { + "thickness": 6, + "slant": 4, + "width": 7, + "lineHeight": 1.2373046875 + } + }, + "axes": [], + "designers": [ + "Dan Sayers" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-03-14", + "popularity": 815, + "trending": 458, + "defaultSort": 810, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Averia Serif Libre", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 123154, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "300": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.20703125 + }, + "300i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.2392578125 + }, + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.20947265625 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.2353515625 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.21240234375 + }, + "700i": { + "thickness": 6, + "slant": 4, + "width": 7, + "lineHeight": 1.23046875 + } + }, + "axes": [], + "designers": [ + "Dan Sayers" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-03-14", + "popularity": 477, + "trending": 300, + "defaultSort": 479, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Azeret Mono", + "displayName": null, + "category": "Monospace", + "stroke": null, + "classifications": [ + "Monospace" + ], + "size": 109188, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.167 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.167 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.167 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.167 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.167 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.167 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.167 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.167 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.167 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.167 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.167 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.167 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.167 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.167 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.167 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.167 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.167 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.167 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Displaay", + "Martin V\u00E1cha" + ], + "lastModified": "2023-05-02", + "dateAdded": "2021-06-08", + "popularity": 691, + "trending": 207, + "defaultSort": 700, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "B612", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 117356, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.215 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.215 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.215 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.215 + } + }, + "axes": [], + "designers": [ + "PolarSys", + "Nicolas Chauveau", + "Thomas Paillot", + "Jonathan Favre-Lamarine", + "Jean-Luc Vinot" + ], + "lastModified": "2022-09-21", + "dateAdded": "2018-12-11", + "popularity": 648, + "trending": 894, + "defaultSort": 659, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "B612 Mono", + "displayName": null, + "category": "Monospace", + "stroke": "Sans Serif", + "classifications": [ + "Monospace" + ], + "size": 131870, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.215 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.215 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.215 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.215 + } + }, + "axes": [], + "designers": [ + "Nicolas Chauveau", + "Thomas Paillot", + "Jonathan Favre-Lamarine", + "Jean-Luc Vinot" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-12-11", + "popularity": 543, + "trending": 244, + "defaultSort": 554, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "BIZ UDGothic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 4652752, + "subsets": [ + "menu", + "cyrillic", + "greek-ext", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Type Bank Co.", + "Morisawa Inc." + ], + "lastModified": "2023-05-02", + "dateAdded": "2022-03-16", + "popularity": 935, + "trending": 466, + "defaultSort": 927, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Jpan", + "primaryLanguage": "" + }, + { + "family": "BIZ UDMincho", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 6630482, + "subsets": [ + "menu", + "cyrillic", + "greek-ext", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Type Bank Co.", + "Morisawa Inc." + ], + "lastModified": "2023-01-18", + "dateAdded": "2022-03-16", + "popularity": 1228, + "trending": 727, + "defaultSort": 1196, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Jpan", + "primaryLanguage": "" + }, + { + "family": "BIZ UDPGothic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 4655142, + "subsets": [ + "menu", + "cyrillic", + "greek-ext", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Type Bank Co.", + "Morisawa Inc." + ], + "lastModified": "2023-09-27", + "dateAdded": "2022-03-16", + "popularity": 306, + "trending": 784, + "defaultSort": 305, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Jpan", + "primaryLanguage": "" + }, + { + "family": "BIZ UDPMincho", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 6632938, + "subsets": [ + "menu", + "cyrillic", + "greek-ext", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Type Bank Co.", + "Morisawa Inc." + ], + "lastModified": "2023-01-18", + "dateAdded": "2022-03-16", + "popularity": 647, + "trending": 60, + "defaultSort": 658, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Jpan", + "primaryLanguage": "" + }, + { + "family": "Babylonica", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 498620, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.325 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-02-23", + "popularity": 1331, + "trending": 1495, + "defaultSort": 1288, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bacasime Antique", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 30848, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "The DocRepair Project", + "Claus Eggers S\u00F8rensen" + ], + "lastModified": "2023-06-22", + "dateAdded": "2023-06-21", + "popularity": 1481, + "trending": 1822, + "defaultSort": 546, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bad Script", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 37312, + "subsets": [ + "menu", + "cyrillic", + "latin" + ], + "fonts": { + "400": { + "thickness": 2, + "slant": 5, + "width": 6, + "lineHeight": 1.97119140625 + } + }, + "axes": [], + "designers": [ + "Gaslight" + ], + "lastModified": "2022-04-20", + "dateAdded": "2011-12-13", + "popularity": 328, + "trending": 478, + "defaultSort": 327, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bagel Fat One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 1585984, + "subsets": [ + "menu", + "korean", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Kyungwon Kim", + "JAMO" + ], + "lastModified": "2023-06-07", + "dateAdded": "2023-06-05", + "popularity": 1436, + "trending": 74, + "defaultSort": 610, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Kore", + "primaryLanguage": "" + }, + { + "family": "Bahiana", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 85984, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.15 + } + }, + "axes": [], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-12-02", + "popularity": 1189, + "trending": 24, + "defaultSort": 201, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bahianita", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 142668, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2019-06-11", + "popularity": 1320, + "trending": 1543, + "defaultSort": 1280, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bai Jamjuree", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 84860, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2022-09-21", + "dateAdded": "2018-09-10", + "popularity": 269, + "trending": 52, + "defaultSort": 267, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bakbak One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 263136, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4 + } + }, + "axes": [], + "designers": [ + "Saumya Kishore", + "Sanchit Sawaria" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-09-09", + "popularity": 865, + "trending": 1772, + "defaultSort": 854, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ballet", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 134000, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.9 + } + }, + "axes": [ + { + "tag": "opsz", + "min": 16, + "max": 72, + "defaultValue": 16 + } + ], + "designers": [ + "Omnibus-Type", + "Maximiliano Sproviero" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-09-23", + "popularity": 1375, + "trending": 1165, + "defaultSort": 1324, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Baloo 2", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 683200, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.602 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.602 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.602 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.602 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.602 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Ek Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-01-20", + "popularity": 291, + "trending": 1269, + "defaultSort": 288, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Deva", + "primaryLanguage": "" + }, + { + "family": "Baloo Bhai 2", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 710488, + "subsets": [ + "menu", + "gujarati", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.622 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.622 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.622 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.622 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.622 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Ek Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-01-20", + "popularity": 893, + "trending": 106, + "defaultSort": 885, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Gujr", + "primaryLanguage": "" + }, + { + "family": "Baloo Bhaijaan 2", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 285508, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.712 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.712 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.712 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.712 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.712 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Ek Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-10-29", + "popularity": 903, + "trending": 1055, + "defaultSort": 892, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Baloo Bhaina 2", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 473060, + "subsets": [ + "menu", + "latin", + "latin-ext", + "oriya", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.012 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.012 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.012 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.012 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.012 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Ek Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-01-20", + "popularity": 895, + "trending": 1027, + "defaultSort": 886, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Orya", + "primaryLanguage": "" + }, + { + "family": "Baloo Chettan 2", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 339860, + "subsets": [ + "menu", + "latin", + "latin-ext", + "malayalam", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.47 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.47 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.47 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.47 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.47 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Ek Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-01-20", + "popularity": 750, + "trending": 385, + "defaultSort": 756, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Mlym", + "primaryLanguage": "" + }, + { + "family": "Baloo Da 2", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 451504, + "subsets": [ + "menu", + "bengali", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.684 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.684 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.684 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.684 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.684 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Ek Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-01-20", + "popularity": 596, + "trending": 249, + "defaultSort": 603, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Beng", + "primaryLanguage": "" + }, + { + "family": "Baloo Paaji 2", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 243180, + "subsets": [ + "menu", + "gurmukhi", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.771 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.771 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.771 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.771 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.771 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Ek Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-01-20", + "popularity": 719, + "trending": 1706, + "defaultSort": 727, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Guru", + "primaryLanguage": "" + }, + { + "family": "Baloo Tamma 2", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 475932, + "subsets": [ + "menu", + "kannada", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.751 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.751 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.751 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.751 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.751 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Ek Type" + ], + "lastModified": "2023-09-14", + "dateAdded": "2016-01-20", + "popularity": 654, + "trending": 70, + "defaultSort": 665, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Knda", + "primaryLanguage": "" + }, + { + "family": "Baloo Tammudu 2", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 669816, + "subsets": [ + "menu", + "latin", + "latin-ext", + "telugu", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.296 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.296 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.296 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.296 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.296 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Ek Type" + ], + "lastModified": "2023-09-14", + "dateAdded": "2016-01-20", + "popularity": 1094, + "trending": 825, + "defaultSort": 1076, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Telu", + "primaryLanguage": "" + }, + { + "family": "Baloo Thambi 2", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 307136, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tamil", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.564 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.564 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.564 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.564 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.564 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Ek Type" + ], + "lastModified": "2023-09-14", + "dateAdded": "2016-01-20", + "popularity": 650, + "trending": 623, + "defaultSort": 661, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Taml", + "primaryLanguage": "" + }, + { + "family": "Balsamiq Sans", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 377154, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Michael Angeles" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-04-09", + "popularity": 483, + "trending": 991, + "defaultSort": 486, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Balthazar", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 15754, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.018 + } + }, + "axes": [], + "designers": [ + "Dario Manuel Muhafara" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-13", + "popularity": 866, + "trending": 750, + "defaultSort": 855, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bangers", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 93148, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 4, + "width": 6, + "lineHeight": 1.064 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-07-24", + "dateAdded": "2011-02-09", + "popularity": 286, + "trending": 775, + "defaultSort": 283, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Barlow", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 108188, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Jeremy Tribby" + ], + "lastModified": "2022-09-21", + "dateAdded": "2017-10-26", + "popularity": 39, + "trending": 770, + "defaultSort": 39, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Barlow Condensed", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 107974, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Jeremy Tribby" + ], + "lastModified": "2022-09-21", + "dateAdded": "2017-10-26", + "popularity": 75, + "trending": 828, + "defaultSort": 71, + "androidFragment": "name=Barlow&width=75.0", + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Barlow Semi Condensed", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 110106, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Jeremy Tribby" + ], + "lastModified": "2023-05-02", + "dateAdded": "2017-10-26", + "popularity": 131, + "trending": 899, + "defaultSort": 125, + "androidFragment": "name=Barlow&width=87.5", + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Barriecito", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 278448, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2022-09-21", + "dateAdded": "2019-06-11", + "popularity": 1198, + "trending": 61, + "defaultSort": 1008, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Barrio", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 225524, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.127 + } + }, + "axes": [], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-12-02", + "popularity": 1062, + "trending": 1020, + "defaultSort": 1046, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Basic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 19647, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.25830078125 + } + }, + "axes": [], + "designers": [ + "Magnus Gaarde" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-15", + "popularity": 419, + "trending": 425, + "defaultSort": 424, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Baskervville", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 94828, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.293 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.293 + } + }, + "axes": [], + "designers": [ + "ANRT" + ], + "lastModified": "2023-07-24", + "dateAdded": "2019-10-04", + "popularity": 315, + "trending": 499, + "defaultSort": 314, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Battambang", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 106306, + "subsets": [ + "menu", + "khmer", + "latin" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.806640625 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.806640625 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.806640625 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.806640625 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.806640625 + } + }, + "axes": [], + "designers": [ + "Danh Hong" + ], + "lastModified": "2022-04-20", + "dateAdded": "2011-03-02", + "popularity": 795, + "trending": 1138, + "defaultSort": 793, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Baumans", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 52076, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.182 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2022-04-20", + "dateAdded": "2011-12-07", + "popularity": 810, + "trending": 118, + "defaultSort": 807, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bayon", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 55132, + "subsets": [ + "menu", + "khmer", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 4, + "lineHeight": 1.806640625 + } + }, + "axes": [], + "designers": [ + "Danh Hong" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-03-02", + "popularity": 878, + "trending": 222, + "defaultSort": 870, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Be Vietnam Pro", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 136123, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.265 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.265 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.265 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.265 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.265 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.265 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.265 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.265 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.265 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.265 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.265 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.265 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.265 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.265 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.265 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.265 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.265 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.265 + } + }, + "axes": [], + "designers": [ + "L\u00E2m B\u1EA3o", + "Tony Le", + "Vi\u1EC7tAnh Nguy\u1EC5n" + ], + "lastModified": "2023-06-07", + "dateAdded": "2021-06-13", + "popularity": 205, + "trending": 313, + "defaultSort": 198, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Beau Rivage", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 238824, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.34 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2022-09-21", + "dateAdded": "2022-02-16", + "popularity": 1117, + "trending": 1501, + "defaultSort": 1098, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bebas Neue", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 61400, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Ryoichi Tsunekawa" + ], + "lastModified": "2023-08-25", + "dateAdded": "2019-10-16", + "popularity": 67, + "trending": 648, + "defaultSort": 62, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Belanosima", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 38777, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.09912109375 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.12890625 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.23779296875 + } + }, + "axes": [], + "designers": [ + "The DocRepair Project", + "Santiago Orozco" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-06-21", + "popularity": 1294, + "trending": 358, + "defaultSort": 523, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Belgrano", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 29048, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.268 + } + }, + "axes": [], + "designers": [ + "LatinoType" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-19", + "popularity": 918, + "trending": 1606, + "defaultSort": 907, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bellefair", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 65432, + "subsets": [ + "menu", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 4, + "lineHeight": 1.146 + } + }, + "axes": [], + "designers": [ + "Nick Shinn", + "Liron Lavi Turkenic" + ], + "lastModified": "2022-09-21", + "dateAdded": "2017-06-28", + "popularity": 509, + "trending": 325, + "defaultSort": 515, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Belleza", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 55696, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.152 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-03-29", + "popularity": 401, + "trending": 283, + "defaultSort": 405, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bellota", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 198025, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.258 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.258 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.258 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.258 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.258 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.258 + } + }, + "axes": [], + "designers": [ + "Kemie Guaida" + ], + "lastModified": "2022-09-21", + "dateAdded": "2020-01-16", + "popularity": 927, + "trending": 1198, + "defaultSort": 919, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bellota Text", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 196294, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.258 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.258 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.258 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.258 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.258 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.258 + } + }, + "axes": [], + "designers": [ + "Kemie Guaida" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-01-16", + "popularity": 744, + "trending": 803, + "defaultSort": 751, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "BenchNine", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 56994, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": 3, + "slant": 1, + "width": 1, + "lineHeight": 1.337890625 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 2, + "lineHeight": 1.337890625 + }, + "700": { + "thickness": 5, + "slant": 1, + "width": 4, + "lineHeight": 1.337890625 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-09-24", + "popularity": 376, + "trending": 1246, + "defaultSort": 377, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Benne", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 230896, + "subsets": [ + "menu", + "kannada", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 4, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "John Harrington" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-03-01", + "popularity": 1263, + "trending": 1791, + "defaultSort": 1226, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bentham", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 55468, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.2021484375 + } + }, + "axes": [], + "designers": [ + "Ben Weiner" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-11-30", + "popularity": 686, + "trending": 606, + "defaultSort": 695, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Berkshire Swash", + "displayName": null, + "category": "Handwriting", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 58400, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.2421875 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-03-14", + "popularity": 439, + "trending": 724, + "defaultSort": 443, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Besley", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [], + "size": 110716, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.675 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.675 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.675 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.675 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.675 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.675 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.675 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.675 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.675 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.675 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.675 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.675 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Owen Earl" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-01-05", + "popularity": 727, + "trending": 1192, + "defaultSort": 735, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Beth Ellen", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 116988, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.22 + } + }, + "axes": [], + "designers": [ + "Rob Jelinski", + "Alyson Fraser Diaz" + ], + "lastModified": "2022-04-20", + "dateAdded": "2019-05-09", + "popularity": 1113, + "trending": 824, + "defaultSort": 1095, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bevan", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [ + "Display" + ], + "size": 118472, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 1, + "width": 8, + "lineHeight": 1.60693359375 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.60693359375 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-02-23", + "popularity": 505, + "trending": 1413, + "defaultSort": 512, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "BhuTuka Expanded One", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [ + "Display" + ], + "size": 138740, + "subsets": [ + "menu", + "gurmukhi", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.008 + } + }, + "axes": [], + "designers": [ + "Erin McLaughlin" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-01-21", + "popularity": 757, + "trending": 748, + "defaultSort": 763, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Big Shoulders Display", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 219532, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Patric King" + ], + "lastModified": "2023-08-25", + "dateAdded": "2019-09-11", + "popularity": 461, + "trending": 587, + "defaultSort": 463, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Big Shoulders Inline Display", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 420084, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Patric King" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-10-12", + "popularity": 1458, + "trending": 1052, + "defaultSort": 1393, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Big Shoulders Inline Text", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 414916, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Patric King" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-10-12", + "popularity": 1413, + "trending": 419, + "defaultSort": 1358, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Big Shoulders Stencil Display", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 226508, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Patric King" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-10-12", + "popularity": 1142, + "trending": 345, + "defaultSort": 1121, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Big Shoulders Stencil Text", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 225152, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Patric King" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-10-12", + "popularity": 1311, + "trending": 1522, + "defaultSort": 1273, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Big Shoulders Text", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 218416, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.197 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Patric King" + ], + "lastModified": "2023-08-25", + "dateAdded": "2019-09-11", + "popularity": 638, + "trending": 339, + "defaultSort": 649, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bigelow Rules", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 59476, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 2, + "lineHeight": 1.15869140625 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-11-02", + "popularity": 1349, + "trending": 1549, + "defaultSort": 1302, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bigshot One", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 44836, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.048 + } + }, + "axes": [], + "designers": [ + "Gesine Todt" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-05-04", + "popularity": 861, + "trending": 99, + "defaultSort": 850, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bilbo", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 100216, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 6, + "width": 2, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-07", + "popularity": 1194, + "trending": 1361, + "defaultSort": 1169, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bilbo Swash Caps", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 58072, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 6, + "width": 2, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "TypeSETit" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-13", + "popularity": 899, + "trending": 832, + "defaultSort": 888, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "BioRhyme", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [], + "size": 100121, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "200": { + "thickness": 2, + "slant": 1, + "width": 5, + "lineHeight": 1.549 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 5, + "lineHeight": 1.549 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 5, + "lineHeight": 1.549 + }, + "700": { + "thickness": 5, + "slant": 1, + "width": 5, + "lineHeight": 1.549 + }, + "800": { + "thickness": 7, + "slant": 1, + "width": 5, + "lineHeight": 1.549 + } + }, + "axes": [], + "designers": [ + "Aoife Mooney" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-03-01", + "popularity": 552, + "trending": 1692, + "defaultSort": 563, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "BioRhyme Expanded", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [ + "Display" + ], + "size": 98814, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "200": { + "thickness": 2, + "slant": 1, + "width": 9, + "lineHeight": 1.549 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 9, + "lineHeight": 1.549 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 9, + "lineHeight": 1.549 + }, + "700": { + "thickness": 5, + "slant": 1, + "width": 9, + "lineHeight": 1.549 + }, + "800": { + "thickness": 7, + "slant": 1, + "width": 9, + "lineHeight": 1.549 + } + }, + "axes": [], + "designers": [ + "Aoife Mooney" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-06-15", + "popularity": 1341, + "trending": 1149, + "defaultSort": 1296, + "androidFragment": "name=BioRhyme&width=125.0", + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Birthstone", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 381092, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-08-06", + "popularity": 908, + "trending": 1068, + "defaultSort": 897, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Birthstone Bounce", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 324558, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-09-02", + "popularity": 1271, + "trending": 494, + "defaultSort": 1234, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Biryani", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 179017, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "200": { + "thickness": 2, + "slant": 1, + "width": 5, + "lineHeight": 1.765 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 5, + "lineHeight": 1.765 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 5, + "lineHeight": 1.765 + }, + "600": { + "thickness": 5, + "slant": 1, + "width": 5, + "lineHeight": 1.765 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 5, + "lineHeight": 1.765 + }, + "800": { + "thickness": 7, + "slant": 1, + "width": 5, + "lineHeight": 1.765 + }, + "900": { + "thickness": 8, + "slant": 1, + "width": 5, + "lineHeight": 1.765 + } + }, + "axes": [], + "designers": [ + "Dan Reynolds", + "Mathieu R\u00E9guer" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-04-22", + "popularity": 530, + "trending": 1170, + "defaultSort": 539, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bitter", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 293992, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.2 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Sol Matas" + ], + "lastModified": "2023-09-14", + "dateAdded": "2011-12-19", + "popularity": 68, + "trending": 586, + "defaultSort": 63, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Black And White Picture", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 9606352, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "AsiaSoft Inc." + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-02-27", + "popularity": 1266, + "trending": 1836, + "defaultSort": 1229, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Black Han Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 984288, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Zess Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-02-23", + "popularity": 396, + "trending": 1430, + "defaultSort": 400, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Black Ops One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 166532, + "subsets": [ + "menu", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 1, + "width": 8, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "James Grieshaber", + "Eben Sorkin" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-07-27", + "popularity": 132, + "trending": 980, + "defaultSort": 126, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Blaka", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 57684, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.167 + } + }, + "axes": [], + "designers": [ + "Mohamed Gaber" + ], + "lastModified": "2022-12-07", + "dateAdded": "2022-04-25", + "popularity": 1446, + "trending": 920, + "defaultSort": 1386, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Blaka Hollow", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 73248, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.167 + } + }, + "axes": [], + "designers": [ + "Mohamed Gaber" + ], + "lastModified": "2022-12-07", + "dateAdded": "2022-04-25", + "popularity": 1527, + "trending": 1614, + "defaultSort": 1433, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Blaka Ink", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 387400, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.167 + } + }, + "axes": [], + "designers": [ + "Mohamed Gaber" + ], + "lastModified": "2023-05-31", + "dateAdded": "2022-02-26", + "popularity": 1559, + "trending": 1195, + "defaultSort": 1453, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [ + "COLRV1", + "OTSVG" + ], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Blinker", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 77402, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Juergen Huber" + ], + "lastModified": "2023-05-02", + "dateAdded": "2019-06-23", + "popularity": 327, + "trending": 1199, + "defaultSort": 326, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bodoni Moda", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 163920, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.525 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.525 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.525 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.525 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.525 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.525 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.525 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.525 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.525 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.525 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.525 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.525 + } + }, + "axes": [ + { + "tag": "opsz", + "min": 6, + "max": 96, + "defaultValue": 11 + }, + { + "tag": "wght", + "min": 400, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Owen Earl" + ], + "lastModified": "2023-03-21", + "dateAdded": "2020-11-25", + "popularity": 224, + "trending": 1539, + "defaultSort": 218, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bokor", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 124128, + "subsets": [ + "menu", + "khmer", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 4, + "lineHeight": 1.806640625 + } + }, + "axes": [], + "designers": [ + "Danh Hong" + ], + "lastModified": "2022-04-21", + "dateAdded": "2011-03-02", + "popularity": 1290, + "trending": 1422, + "defaultSort": 1256, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bona Nova", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 409220, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "hebrew", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Capitalics", + "Mateusz Machalski", + "Andrzej Heidrich" + ], + "lastModified": "2022-09-21", + "dateAdded": "2021-04-13", + "popularity": 998, + "trending": 1157, + "defaultSort": 986, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bonbon", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 81772, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 2, + "width": 8, + "lineHeight": 1.175 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-07", + "popularity": 1438, + "trending": 1190, + "defaultSort": 1378, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bonheur Royale", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 133728, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.16 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-08-06", + "popularity": 1337, + "trending": 159, + "defaultSort": 1293, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Boogaloo", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 33960, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.189 + } + }, + "axes": [], + "designers": [ + "John Vargas Beltr\u00E1n" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 475, + "trending": 451, + "defaultSort": 477, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Borel", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 133260, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2 + } + }, + "axes": [], + "designers": [ + "Rosalie Wagner" + ], + "lastModified": "2023-07-24", + "dateAdded": "2023-07-20", + "popularity": 1257, + "trending": 1812, + "defaultSort": 385, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bowlby One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 59856, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 1, + "width": 8, + "lineHeight": 1.56640625 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-07-13", + "popularity": 557, + "trending": 85, + "defaultSort": 568, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bowlby One SC", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 55200, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 1, + "width": 8, + "lineHeight": 1.525390625 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-07-06", + "popularity": 470, + "trending": 1220, + "defaultSort": 473, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Braah One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 124592, + "subsets": [ + "menu", + "gurmukhi", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4 + } + }, + "axes": [], + "designers": [ + "Ashish Kumar" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-03-23", + "popularity": 1301, + "trending": 1026, + "defaultSort": 916, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Guru", + "primaryLanguage": "" + }, + { + "family": "Brawler", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 53220, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.219 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-05-18", + "popularity": 663, + "trending": 1169, + "defaultSort": 673, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bree Serif", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 46572, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.358 + } + }, + "axes": [], + "designers": [ + "TypeTogether" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-19", + "popularity": 157, + "trending": 1127, + "defaultSort": 150, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bricolage Grotesque", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 408496, + "subsets": [ + "menu", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "opsz", + "min": 12, + "max": 96, + "defaultValue": 14 + }, + { + "tag": "wdth", + "min": 75, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 200, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Mathieu Triay" + ], + "lastModified": "2023-09-13", + "dateAdded": "2023-06-14", + "popularity": 1234, + "trending": 1785, + "defaultSort": 498, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bruno Ace", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 56748, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.206 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-11-15", + "popularity": 1501, + "trending": 1565, + "defaultSort": 1417, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bruno Ace SC", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 55520, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.206 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-11-15", + "popularity": 1100, + "trending": 1454, + "defaultSort": 1082, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Brygada 1918", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 242986, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.17 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.17 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.17 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.17 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.17 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.17 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.17 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.17 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Capitalics", + "Mateusz Machalski", + "Borys Kosmynka", + "Ania Wielu\u0144ska", + "Przemys\u0142aw Hoffer" + ], + "lastModified": "2023-09-14", + "dateAdded": "2021-01-27", + "popularity": 572, + "trending": 891, + "defaultSort": 582, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bubblegum Sans", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 38844, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.163 + } + }, + "axes": [], + "designers": [ + "Sudtipos" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-23", + "popularity": 478, + "trending": 94, + "defaultSort": 480, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bubbler One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 31008, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 6, + "lineHeight": 1.163 + } + }, + "axes": [], + "designers": [ + "Brenda Gallo" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-05-09", + "popularity": 1070, + "trending": 818, + "defaultSort": 1053, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Buda", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 106012, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "300": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Ad\u00E8le Antignac" + ], + "lastModified": "2023-08-25", + "dateAdded": "2010-12-20", + "popularity": 1116, + "trending": 519, + "defaultSort": 1097, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Buenard", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 59520, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.301 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.301 + } + }, + "axes": [], + "designers": [ + "FontFuror" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-19", + "popularity": 760, + "trending": 1132, + "defaultSort": 765, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bungee", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 126096, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "David Jonathan Ross" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-06-15", + "popularity": 275, + "trending": 1065, + "defaultSort": 273, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bungee Hairline", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 115028, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "David Jonathan Ross" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-06-15", + "popularity": 1299, + "trending": 1177, + "defaultSort": 1263, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bungee Inline", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 175656, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "David Jonathan Ross" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-06-15", + "popularity": 602, + "trending": 404, + "defaultSort": 609, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bungee Outline", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 237412, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "David Jonathan Ross" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-06-15", + "popularity": 1278, + "trending": 1528, + "defaultSort": 1241, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bungee Shade", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 416240, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "David Jonathan Ross" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-06-15", + "popularity": 695, + "trending": 1362, + "defaultSort": 704, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Bungee Spice", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 503072, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "David Jonathan Ross" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-12-07", + "popularity": 1333, + "trending": 1118, + "defaultSort": 1290, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [ + "COLRV1", + "OTSVG" + ], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Butcherman", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 66100, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.93505859375 + } + }, + "axes": [], + "designers": [ + "Typomondo" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-19", + "popularity": 1366, + "trending": 1359, + "defaultSort": 1317, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Butterfly Kids", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 202848, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 4, + "width": 5, + "lineHeight": 1.1923828125 + } + }, + "axes": [], + "designers": [ + "Tart Workshop" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-02-15", + "popularity": 1364, + "trending": 1485, + "defaultSort": 1315, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cabin", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 160440, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.215 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 6, + "lineHeight": 1.215 + }, + "500": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.215 + }, + "500i": { + "thickness": 5, + "slant": 4, + "width": 6, + "lineHeight": 1.215 + }, + "600": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.215 + }, + "600i": { + "thickness": 6, + "slant": 4, + "width": 7, + "lineHeight": 1.215 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.215 + }, + "700i": { + "thickness": 6, + "slant": 4, + "width": 7, + "lineHeight": 1.215 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Impallari Type", + "Rodrigo Fuenzalida" + ], + "lastModified": "2023-09-14", + "dateAdded": "2011-03-23", + "popularity": 70, + "trending": 1136, + "defaultSort": 65, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cabin Condensed", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 98711, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.215 + }, + "500": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.215 + }, + "600": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.215 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.215 + } + }, + "axes": [], + "designers": [ + "Impallari Type" + ], + "lastModified": "2023-05-02", + "dateAdded": "2011-11-30", + "popularity": 232, + "trending": 139, + "defaultSort": 226, + "androidFragment": "name=Cabin&width=75.0", + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cabin Sketch", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 213622, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.171 + }, + "700": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.171 + } + }, + "axes": [], + "designers": [ + "Impallari Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-03-16", + "popularity": 476, + "trending": 1322, + "defaultSort": 478, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Caesar Dressing", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 40370, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.2138671875 + } + }, + "axes": [], + "designers": [ + "Open Window" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-19", + "popularity": 1151, + "trending": 783, + "defaultSort": 1128, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cagliostro", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 20763, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.353 + } + }, + "axes": [], + "designers": [ + "MADType" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-11-30", + "popularity": 1123, + "trending": 866, + "defaultSort": 1104, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cairo", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 599548, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "1000": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.874 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.874 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.874 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.874 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.874 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.874 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.874 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.874 + } + }, + "axes": [ + { + "tag": "slnt", + "min": -11, + "max": 11, + "defaultValue": 0 + }, + { + "tag": "wght", + "min": 200, + "max": 1000, + "defaultValue": 400 + } + ], + "designers": [ + "Mohamed Gaber", + "Accademia di Belle Arti di Urbino" + ], + "lastModified": "2023-05-02", + "dateAdded": "2016-06-15", + "popularity": 64, + "trending": 840, + "defaultSort": 60, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Cairo Play", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 608152, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "1000": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.874 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.874 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.874 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.874 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.874 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.874 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.874 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.874 + } + }, + "axes": [ + { + "tag": "slnt", + "min": -11, + "max": 11, + "defaultValue": 0 + }, + { + "tag": "wght", + "min": 200, + "max": 1000, + "defaultValue": 400 + } + ], + "designers": [ + "Mohamed Gaber", + "Accademia di Belle Arti di Urbino" + ], + "lastModified": "2023-04-27", + "dateAdded": "2022-08-05", + "popularity": 1407, + "trending": 554, + "defaultSort": 1354, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [ + "COLRV0" + ], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Caladea", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 83307, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.15 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.15 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.15 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.15 + } + }, + "axes": [], + "designers": [ + "Andr\u00E9s Torresi", + "Carolina Giovanolli" + ], + "lastModified": "2022-09-21", + "dateAdded": "2020-02-11", + "popularity": 272, + "trending": 1066, + "defaultSort": 270, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Calistoga", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 209540, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [], + "designers": [ + "Yvonne Sch\u00FCttler", + "Sorkin Type", + "Eben Sorkin" + ], + "lastModified": "2023-08-25", + "dateAdded": "2019-11-04", + "popularity": 322, + "trending": 230, + "defaultSort": 321, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Calligraffitti", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 59860, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 6, + "width": 6, + "lineHeight": 1.5693359375 + } + }, + "axes": [], + "designers": [ + "Open Window" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-01-06", + "popularity": 655, + "trending": 802, + "defaultSort": 666, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cambay", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 233689, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.62875 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.62875 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.62875 + }, + "700i": { + "thickness": 6, + "slant": 5, + "width": 7, + "lineHeight": 1.62875 + } + }, + "axes": [], + "designers": [ + "Pooja Saxena" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-01-28", + "popularity": 694, + "trending": 161, + "defaultSort": 703, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cambo", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 29104, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.122 + } + }, + "axes": [], + "designers": [ + "Huerta Tipogr\u00E1fica" + ], + "lastModified": "2022-12-07", + "dateAdded": "2011-12-19", + "popularity": 767, + "trending": 1143, + "defaultSort": 771, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Candal", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 19847, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 1, + "width": 8, + "lineHeight": 1.2978515625 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-03-09", + "popularity": 462, + "trending": 1255, + "defaultSort": 464, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cantarell", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 45417, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.416015625 + }, + "400i": { + "thickness": 4, + "slant": 6, + "width": 7, + "lineHeight": 1.416015625 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.416015625 + }, + "700i": { + "thickness": 6, + "slant": 6, + "width": 8, + "lineHeight": 1.416015625 + } + }, + "axes": [], + "designers": [ + "Dave Crossland" + ], + "lastModified": "2022-11-09", + "dateAdded": "2010-05-10", + "popularity": 218, + "trending": 274, + "defaultSort": 212, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cantata One", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 96828, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.26953125 + } + }, + "axes": [], + "designers": [ + "Joana Correia" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-02-29", + "popularity": 503, + "trending": 1530, + "defaultSort": 510, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cantora One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 159328, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Impallari Type" + ], + "lastModified": "2022-11-09", + "dateAdded": "2012-07-30", + "popularity": 1020, + "trending": 848, + "defaultSort": 1007, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Caprasimo", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 41660, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.14697265625 + } + }, + "axes": [], + "designers": [ + "The DocRepair Project", + "Phaedra Charles", + "Flavia Zimbardi" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-06-21", + "popularity": 1312, + "trending": 1567, + "defaultSort": 545, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Capriola", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 47884, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Viktoriya Grabowska" + ], + "lastModified": "2023-05-02", + "dateAdded": "2012-07-10", + "popularity": 465, + "trending": 1207, + "defaultSort": 467, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Caramel", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 204044, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2022-09-21", + "dateAdded": "2021-08-06", + "popularity": 1325, + "trending": 395, + "defaultSort": 1283, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Carattere", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 124884, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.15 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2022-09-21", + "dateAdded": "2021-08-26", + "popularity": 1165, + "trending": 120, + "defaultSort": 1141, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cardo", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 224897, + "subsets": [ + "menu", + "greek", + "greek-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.35400390625 + }, + "400i": { + "thickness": 4, + "slant": 5, + "width": 6, + "lineHeight": 1.35400390625 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.35400390625 + } + }, + "axes": [], + "designers": [ + "David Perry" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-09-07", + "popularity": 181, + "trending": 430, + "defaultSort": 174, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Carlito", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 683561, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.220703125 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.220703125 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.220703125 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.220703125 + } + }, + "axes": [], + "designers": [ + "\u0141ukasz Dziedzic" + ], + "lastModified": "2023-05-02", + "dateAdded": "2023-04-19", + "popularity": 1293, + "trending": 1130, + "defaultSort": 744, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Carme", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 26098, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.20068359375 + } + }, + "axes": [], + "designers": [ + "Rub\u00E9n Prol" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-07-27", + "popularity": 811, + "trending": 1131, + "defaultSort": 808, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Carrois Gothic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 41724, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.192 + } + }, + "axes": [], + "designers": [ + "Carrois Apostrophe" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-09-30", + "popularity": 488, + "trending": 1061, + "defaultSort": 491, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Carrois Gothic SC", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 40356, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.192 + } + }, + "axes": [], + "designers": [ + "Carrois Apostrophe" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-09-30", + "popularity": 1018, + "trending": 600, + "defaultSort": 1004, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Carter One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 40519, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 3, + "width": 7, + "lineHeight": 1.5400390625 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-05-04", + "popularity": 246, + "trending": 242, + "defaultSort": 242, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Castoro", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 127312, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.33 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.33 + } + }, + "axes": [], + "designers": [ + "Tiro Typeworks", + "John Hudson", + "Paul Hanslow", + "Kaja S\u0142ojewska" + ], + "lastModified": "2023-04-27", + "dateAdded": "2020-11-03", + "popularity": 338, + "trending": 1105, + "defaultSort": 336, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Castoro Titling", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 56184, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.33 + } + }, + "axes": [], + "designers": [ + "Tiro Typeworks", + "John Hudson" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-03-14", + "popularity": 1452, + "trending": 282, + "defaultSort": 982, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Catamaran", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 184276, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tamil" + ], + "fonts": { + "100": { + "thickness": 1, + "slant": 1, + "width": 4, + "lineHeight": 1.64 + }, + "200": { + "thickness": 2, + "slant": 1, + "width": 4, + "lineHeight": 1.64 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 4, + "lineHeight": 1.64 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 4, + "lineHeight": 1.64 + }, + "500": { + "thickness": 5, + "slant": 1, + "width": 4, + "lineHeight": 1.64 + }, + "600": { + "thickness": 6, + "slant": 1, + "width": 4, + "lineHeight": 1.64 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 4, + "lineHeight": 1.64 + }, + "800": { + "thickness": 8, + "slant": 1, + "width": 4, + "lineHeight": 1.64 + }, + "900": { + "thickness": 9, + "slant": 1, + "width": 4, + "lineHeight": 1.64 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Pria Ravichandran" + ], + "lastModified": "2023-09-14", + "dateAdded": "2015-07-08", + "popularity": 90, + "trending": 163, + "defaultSort": 86, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Caudex", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 513157, + "subsets": [ + "menu", + "greek", + "greek-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.2890625 + }, + "400i": { + "thickness": 5, + "slant": 5, + "width": 7, + "lineHeight": 1.2890625 + }, + "700": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.2890625 + }, + "700i": { + "thickness": 5, + "slant": 5, + "width": 7, + "lineHeight": 1.2890625 + } + }, + "axes": [], + "designers": [ + "Nidud" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-05-18", + "popularity": 592, + "trending": 572, + "defaultSort": 600, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Caveat", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 403648, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 6, + "width": 3, + "lineHeight": 1.26 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "700": { + "thickness": 4, + "slant": 6, + "width": 3, + "lineHeight": 1.26 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Impallari Type" + ], + "lastModified": "2023-09-14", + "dateAdded": "2015-09-23", + "popularity": 105, + "trending": 1194, + "defaultSort": 101, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Caveat Brush", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 140755, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 3, + "lineHeight": 1.26 + } + }, + "axes": [], + "designers": [ + "Impallari Type" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-09-23", + "popularity": 468, + "trending": 549, + "defaultSort": 471, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cedarville Cursive", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 38590, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 6, + "width": 7, + "lineHeight": 1.896484375 + } + }, + "axes": [], + "designers": [ + "Kimberly Geswein" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-06-08", + "popularity": 606, + "trending": 872, + "defaultSort": 617, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ceviche One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 36940, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 5, + "width": 6, + "lineHeight": 1.043 + } + }, + "axes": [], + "designers": [ + "Miguel Hernandez" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-07", + "popularity": 808, + "trending": 979, + "defaultSort": 805, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Chakra Petch", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 79780, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-09-10", + "popularity": 115, + "trending": 148, + "defaultSort": 110, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Changa", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 132140, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "200": { + "thickness": 2, + "slant": 1, + "width": 4, + "lineHeight": 1.84 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 4, + "lineHeight": 1.84 + }, + "400": { + "thickness": 3, + "slant": 1, + "width": 4, + "lineHeight": 1.84 + }, + "500": { + "thickness": 4, + "slant": 1, + "width": 4, + "lineHeight": 1.84 + }, + "600": { + "thickness": 5, + "slant": 1, + "width": 4, + "lineHeight": 1.84 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 4, + "lineHeight": 1.84 + }, + "800": { + "thickness": 7, + "slant": 1, + "width": 4, + "lineHeight": 1.84 + } + }, + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-06-15", + "popularity": 183, + "trending": 967, + "defaultSort": 175, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Changa One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 24742, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 1, + "width": 7, + "lineHeight": 1.062 + }, + "400i": { + "thickness": 8, + "slant": 4, + "width": 7, + "lineHeight": 1.062 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-30", + "popularity": 438, + "trending": 164, + "defaultSort": 442, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Chango", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 40732, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 10, + "slant": 1, + "width": 9, + "lineHeight": 1.211 + } + }, + "axes": [], + "designers": [ + "Fontstage" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-13", + "popularity": 875, + "trending": 437, + "defaultSort": 865, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Charis SIL", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 767411, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6357421875 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6357421875 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6357421875 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6357421875 + } + }, + "axes": [], + "designers": [ + "SIL International" + ], + "lastModified": "2023-04-27", + "dateAdded": "2022-05-12", + "popularity": 1265, + "trending": 1546, + "defaultSort": 1228, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Charm", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 138632, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.549 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.549 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2023-05-02", + "dateAdded": "2018-12-11", + "popularity": 452, + "trending": 1134, + "defaultSort": 454, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Charmonman", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 117514, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.9 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.9 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2022-09-21", + "dateAdded": "2018-09-10", + "popularity": 913, + "trending": 1072, + "defaultSort": 902, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Chathura", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 336350, + "subsets": [ + "menu", + "latin", + "telugu" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.622 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.622 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.622 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.622 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.622 + } + }, + "axes": [], + "designers": [ + "Appaji Ambarisha Darbha" + ], + "lastModified": "2022-04-21", + "dateAdded": "2016-06-15", + "popularity": 1091, + "trending": 1239, + "defaultSort": 1073, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Chau Philomene One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 42184, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.367 + }, + "400i": { + "thickness": 6, + "slant": 3, + "width": 6, + "lineHeight": 1.367 + } + }, + "axes": [], + "designers": [ + "Vicente Lam\u00F3naca" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-04-04", + "popularity": 942, + "trending": 1475, + "defaultSort": 933, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Chela One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 35744, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 1, + "width": 6, + "lineHeight": 1.177 + } + }, + "axes": [], + "designers": [ + "Miguel Hernandez" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-10-05", + "popularity": 1139, + "trending": 226, + "defaultSort": 1118, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Chelsea Market", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 82147, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.2724609375 + } + }, + "axes": [], + "designers": [ + "Tart Workshop" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-01-04", + "popularity": 698, + "trending": 175, + "defaultSort": 709, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Chenla", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 293316, + "subsets": [ + "menu", + "khmer" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.83935546875 + } + }, + "axes": [], + "designers": [ + "Danh Hong" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-03-02", + "popularity": 1390, + "trending": 520, + "defaultSort": 1338, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cherish", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 202240, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.17 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-05-02", + "dateAdded": "2021-08-13", + "popularity": 1552, + "trending": 1397, + "defaultSort": 1449, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cherry Bomb One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 214940, + "subsets": [ + "menu", + "japanese", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Satsuyako" + ], + "lastModified": "2023-05-23", + "dateAdded": "2023-05-23", + "popularity": 1457, + "trending": 1573, + "defaultSort": 668, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Hira", + "primaryLanguage": "" + }, + { + "family": "Cherry Cream Soda", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 50256, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.251953125 + } + }, + "axes": [], + "designers": [ + "Font Diner" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-01-06", + "popularity": 900, + "trending": 1076, + "defaultSort": 889, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cherry Swash", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 30334, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.326 + }, + "700": { + "thickness": 9, + "slant": 1, + "width": 8, + "lineHeight": 1.326 + } + }, + "axes": [], + "designers": [ + "Nataliya Kasatkina" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-10-24", + "popularity": 946, + "trending": 1597, + "defaultSort": 937, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Chewy", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 41248, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 6, + "lineHeight": 1.306640625 + } + }, + "axes": [], + "designers": [ + "Sideshow" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-01-06", + "popularity": 388, + "trending": 147, + "defaultSort": 391, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Chicle", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 41032, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.209 + } + }, + "axes": [], + "designers": [ + "Sudtipos" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-30", + "popularity": 1061, + "trending": 1304, + "defaultSort": 1044, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Chilanka", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 352832, + "subsets": [ + "menu", + "latin", + "latin-ext", + "malayalam" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 4, + "lineHeight": 1.0986328125 + } + }, + "axes": [], + "designers": [ + "SMC", + "Santhosh Thottingal" + ], + "lastModified": "2023-05-02", + "dateAdded": "2016-05-10", + "popularity": 1270, + "trending": 1282, + "defaultSort": 1233, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Chivo", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 169244, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.19 + }, + "400i": { + "thickness": 5, + "slant": 3, + "width": 7, + "lineHeight": 1.19 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "900": { + "thickness": 8, + "slant": 1, + "width": 7, + "lineHeight": 1.19 + }, + "900i": { + "thickness": 8, + "slant": 3, + "width": 7, + "lineHeight": 1.19 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2022-11-17", + "dateAdded": "2011-12-07", + "popularity": 165, + "trending": 1502, + "defaultSort": 157, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Chivo Mono", + "displayName": null, + "category": "Monospace", + "stroke": "Sans Serif", + "classifications": [ + "Monospace" + ], + "size": 127924, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-11-02", + "popularity": 777, + "trending": 1124, + "defaultSort": 776, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Chokokutai", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 165580, + "subsets": [ + "menu", + "japanese", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Font Zone 108" + ], + "lastModified": "2023-05-23", + "dateAdded": "2023-05-23", + "popularity": 1612, + "trending": 1790, + "defaultSort": 669, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Hira", + "primaryLanguage": "" + }, + { + "family": "Chonburi", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 170492, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2023-08-25", + "dateAdded": "2015-07-08", + "popularity": 517, + "trending": 989, + "defaultSort": 522, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cinzel", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 125468, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.348 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.348 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.348 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.348 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.348 + }, + "900": { + "thickness": 8, + "slant": 1, + "width": 8, + "lineHeight": 1.348 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Natanael Gama" + ], + "lastModified": "2023-03-21", + "dateAdded": "2012-10-24", + "popularity": 153, + "trending": 521, + "defaultSort": 146, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cinzel Decorative", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 61800, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 8, + "lineHeight": 1.348 + }, + "700": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.348 + }, + "900": { + "thickness": 6, + "slant": 1, + "width": 9, + "lineHeight": 1.348 + } + }, + "axes": [], + "designers": [ + "Natanael Gama" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-10-24", + "popularity": 464, + "trending": 971, + "defaultSort": 466, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Clicker Script", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 35215, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 2, + "width": 5, + "lineHeight": 1.32080078125 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-11-11", + "popularity": 784, + "trending": 363, + "defaultSort": 783, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Climate Crisis", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 168852, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.33 + } + }, + "axes": [ + { + "tag": "YEAR", + "min": 1979, + "max": 2050, + "defaultValue": 1979 + } + ], + "designers": [ + "Daniel Coull", + "Eino Korkala" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-09-30", + "popularity": 1370, + "trending": 1751, + "defaultSort": 1320, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Coda", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 88788, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.419921875 + }, + "800": { + "thickness": 9, + "slant": 1, + "width": 8, + "lineHeight": 1.419921875 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-12-07", + "popularity": 480, + "trending": 533, + "defaultSort": 483, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Codystar", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 104018, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": 1, + "slant": 9, + "width": 8, + "lineHeight": 1.1796875 + }, + "400": { + "thickness": 1, + "slant": 1, + "width": 8, + "lineHeight": 1.1796875 + } + }, + "axes": [], + "designers": [ + "Neapolitan" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-03-14", + "popularity": 874, + "trending": 1089, + "defaultSort": 864, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Coiny", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 156520, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tamil", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + } + }, + "axes": [], + "designers": [ + "Marcelo Magalh\u00E3es" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-06-20", + "popularity": 868, + "trending": 462, + "defaultSort": 857, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Combo", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 49028, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.176 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-09-23", + "popularity": 1260, + "trending": 711, + "defaultSort": 1223, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Comfortaa", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 201756, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.115 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.115 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.115 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.115 + }, + "700": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.115 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Johan Aakerlund" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-08-10", + "popularity": 92, + "trending": 833, + "defaultSort": 88, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Comforter", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 279684, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.41 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-09-28", + "popularity": 1149, + "trending": 1341, + "defaultSort": 1126, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Comforter Brush", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 807248, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.41 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-09-16", + "popularity": 886, + "trending": 477, + "defaultSort": 878, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Comic Neue", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 55536, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.15 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.15 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.15 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.15 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.15 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.15 + } + }, + "axes": [], + "designers": [ + "Craig Rozynski", + "Hrant Papazian" + ], + "lastModified": "2022-09-21", + "dateAdded": "2020-03-12", + "popularity": 372, + "trending": 1793, + "defaultSort": 373, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Coming Soon", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 53256, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 7, + "lineHeight": 1.53515625 + } + }, + "axes": [], + "designers": [ + "Open Window" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-01-06", + "popularity": 540, + "trending": 1505, + "defaultSort": 551, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Comme", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 91652, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2001953125 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2001953125 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2001953125 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2001953125 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2001953125 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2001953125 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2001953125 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2001953125 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2001953125 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-04-27", + "dateAdded": "2023-04-26", + "popularity": 1338, + "trending": 54, + "defaultSort": 750, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Commissioner", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 742232, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.223 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.223 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.223 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.223 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.223 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.223 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.223 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.223 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.223 + } + }, + "axes": [ + { + "tag": "FLAR", + "min": 0, + "max": 100, + "defaultValue": 0 + }, + { + "tag": "VOLM", + "min": 0, + "max": 100, + "defaultValue": 0 + }, + { + "tag": "slnt", + "min": -12, + "max": 0, + "defaultValue": 0 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Kostas Bartsokas" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-07-20", + "popularity": 257, + "trending": 388, + "defaultSort": 254, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Concert One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 71072, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.17919921875 + } + }, + "axes": [], + "designers": [ + "Johan Kallas", + "Mihkel Virkus" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-23", + "popularity": 227, + "trending": 1268, + "defaultSort": 221, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Condiment", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 43392, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 9, + "width": 6, + "lineHeight": 1.523 + } + }, + "axes": [], + "designers": [ + "Sudtipos" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-01-25", + "popularity": 1163, + "trending": 1107, + "defaultSort": 1139, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Content", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 64158, + "subsets": [ + "menu", + "khmer" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.83935546875 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.83935546875 + } + }, + "axes": [], + "designers": [ + "Danh Hong" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-03-02", + "popularity": 1183, + "trending": 386, + "defaultSort": 1159, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Contrail One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 31184, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 3, + "width": 6, + "lineHeight": 1.251953125 + } + }, + "axes": [], + "designers": [ + "Riccardo De Franceschi" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-10-26", + "popularity": 500, + "trending": 256, + "defaultSort": 506, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Convergence", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 30220, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.173 + } + }, + "axes": [], + "designers": [ + "Nicol\u00E1s Silva", + "John Vargas Beltr\u00E1n" + ], + "lastModified": "2022-04-21", + "dateAdded": "2011-11-09", + "popularity": 859, + "trending": 856, + "defaultSort": 848, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cookie", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 43800, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 5, + "lineHeight": 1.109 + } + }, + "axes": [], + "designers": [ + "Ania Kruk" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-10-12", + "popularity": 234, + "trending": 506, + "defaultSort": 228, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Copse", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 35077, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.23583984375 + } + }, + "axes": [], + "designers": [ + "Dan Rhatigan" + ], + "lastModified": "2022-04-21", + "dateAdded": "2010-12-15", + "popularity": 716, + "trending": 1364, + "defaultSort": 725, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Corben", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 80580, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.85302734375 + }, + "700": { + "thickness": 9, + "slant": 1, + "width": 9, + "lineHeight": 1.85302734375 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-08-25", + "dateAdded": "2010-12-20", + "popularity": 514, + "trending": 264, + "defaultSort": 519, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Corinthia", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 218854, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-08-26", + "popularity": 1014, + "trending": 1083, + "defaultSort": 1000, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cormorant", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 461494, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Christian Thalmann" + ], + "lastModified": "2023-03-21", + "dateAdded": "2016-06-15", + "popularity": 167, + "trending": 278, + "defaultSort": 159, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cormorant Garamond", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 631164, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + } + }, + "axes": [], + "designers": [ + "Christian Thalmann" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-06-15", + "popularity": 104, + "trending": 622, + "defaultSort": 100, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cormorant Infant", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 622257, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + } + }, + "axes": [], + "designers": [ + "Christian Thalmann" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-06-15", + "popularity": 499, + "trending": 563, + "defaultSort": 505, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cormorant SC", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 763366, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + } + }, + "axes": [], + "designers": [ + "Christian Thalmann" + ], + "lastModified": "2023-05-02", + "dateAdded": "2016-06-15", + "popularity": 712, + "trending": 751, + "defaultSort": 721, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cormorant Unicase", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 763615, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + } + }, + "axes": [], + "designers": [ + "Christian Thalmann" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-06-15", + "popularity": 855, + "trending": 1366, + "defaultSort": 844, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cormorant Upright", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 223316, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + } + }, + "axes": [], + "designers": [ + "Christian Thalmann" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-06-15", + "popularity": 636, + "trending": 749, + "defaultSort": 647, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Courgette", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 122072, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 6, + "width": 7, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Karolina Lach" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-07-10", + "popularity": 169, + "trending": 1071, + "defaultSort": 161, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Courier Prime", + "displayName": null, + "category": "Monospace", + "stroke": "Serif", + "classifications": [ + "Monospace" + ], + "size": 76224, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.123046875 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.123046875 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.123046875 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.123046875 + } + }, + "axes": [], + "designers": [ + "Alan Dague-Greene" + ], + "lastModified": "2023-08-25", + "dateAdded": "2019-12-05", + "popularity": 319, + "trending": 194, + "defaultSort": 318, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cousine", + "displayName": null, + "category": "Monospace", + "stroke": "Sans Serif", + "classifications": [ + "Monospace" + ], + "size": 286881, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "hebrew", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.1328125 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 8, + "lineHeight": 1.1328125 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.1328125 + }, + "700i": { + "thickness": 7, + "slant": 4, + "width": 8, + "lineHeight": 1.1328125 + } + }, + "axes": [], + "designers": [ + "Steve Matteson" + ], + "lastModified": "2023-08-25", + "dateAdded": "2010-11-18", + "popularity": 343, + "trending": 417, + "defaultSort": 341, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Coustard", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 80866, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.404296875 + }, + "900": { + "thickness": 9, + "slant": 1, + "width": 8, + "lineHeight": 1.404296875 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-08-10", + "popularity": 579, + "trending": 1148, + "defaultSort": 588, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Covered By Your Grace", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 29017, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.3466796875 + } + }, + "axes": [], + "designers": [ + "Kimberly Geswein" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-12-07", + "popularity": 469, + "trending": 1037, + "defaultSort": 472, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Crafty Girls", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 75336, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 8, + "lineHeight": 1.4482421875 + } + }, + "axes": [], + "designers": [ + "Tart Workshop" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-01-06", + "popularity": 884, + "trending": 1074, + "defaultSort": 876, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Creepster", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 37836, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 6, + "lineHeight": 1.1689453125 + } + }, + "axes": [], + "designers": [ + "Sideshow" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-19", + "popularity": 520, + "trending": 1351, + "defaultSort": 525, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Crete Round", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 24652, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.276 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.275 + } + }, + "axes": [], + "designers": [ + "TypeTogether" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-19", + "popularity": 195, + "trending": 503, + "defaultSort": 188, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Crimson Pro", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 249750, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.111328125 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.111328125 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.111328125 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.111328125 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.111328125 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.111328125 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.111328125 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.111328125 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.111328125 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.111328125 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.111328125 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.111328125 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.111328125 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.111328125 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.111328125 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.111328125 + } + }, + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Jacques Le Bailly" + ], + "lastModified": "2023-09-14", + "dateAdded": "2018-12-04", + "popularity": 252, + "trending": 1284, + "defaultSort": 248, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Crimson Text", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 111436, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.2998046875 + }, + "400i": { + "thickness": 4, + "slant": 4, + "width": 7, + "lineHeight": 1.2998046875 + }, + "600": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.2998046875 + }, + "600i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.2998046875 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.2998046875 + }, + "700i": { + "thickness": 6, + "slant": 4, + "width": 7, + "lineHeight": 1.2998046875 + } + }, + "axes": [], + "designers": [ + "Sebastian Kosch" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-01-26", + "popularity": 82, + "trending": 844, + "defaultSort": 78, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Croissant One", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 54744, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.415 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-11-12", + "popularity": 678, + "trending": 16, + "defaultSort": 91, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Crushed", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 57792, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.1494140625 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-01-06", + "popularity": 1122, + "trending": 744, + "defaultSort": 1103, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cuprum", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 84342, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.155 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 6, + "lineHeight": 1.155 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.155 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.155 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.155 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.155 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.155 + }, + "700i": { + "thickness": 6, + "slant": 4, + "width": 6, + "lineHeight": 1.155 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Jovanny Lemonad" + ], + "lastModified": "2023-05-02", + "dateAdded": "2012-04-04", + "popularity": 248, + "trending": 823, + "defaultSort": 244, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cute Font", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 1027936, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "TypoDesign Lab. Inc" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-02-23", + "popularity": 1015, + "trending": 1316, + "defaultSort": 1001, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cutive", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [ + "Display" + ], + "size": 98184, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.09765625 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-02-29", + "popularity": 706, + "trending": 1140, + "defaultSort": 716, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Cutive Mono", + "displayName": null, + "category": "Monospace", + "stroke": "Serif", + "classifications": [ + "Monospace" + ], + "size": 78984, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.10107421875 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-10-26", + "popularity": 399, + "trending": 330, + "defaultSort": 403, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "DM Mono", + "displayName": null, + "category": "Monospace", + "stroke": "Sans Serif", + "classifications": [ + "Monospace" + ], + "size": 50926, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + } + }, + "axes": [], + "designers": [ + "Colophon Foundry" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-04-15", + "popularity": 432, + "trending": 1248, + "defaultSort": 436, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "DM Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 262602, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + }, + "1000": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "1000i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.302 + } + }, + "axes": [ + { + "tag": "opsz", + "min": 9, + "max": 40, + "defaultValue": 14 + }, + { + "tag": "wght", + "min": 100, + "max": 1000, + "defaultValue": 400 + } + ], + "designers": [ + "Colophon Foundry", + "Jonny Pinhorn", + "Indian Type Foundry" + ], + "lastModified": "2023-07-13", + "dateAdded": "2019-06-11", + "popularity": 43, + "trending": 985, + "defaultSort": 41, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "DM Serif Display", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 73894, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.371 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.371 + } + }, + "axes": [], + "designers": [ + "Colophon Foundry" + ], + "lastModified": "2023-08-25", + "dateAdded": "2019-06-11", + "popularity": 102, + "trending": 482, + "defaultSort": 98, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "DM Serif Text", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 74766, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.371 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.371 + } + }, + "axes": [], + "designers": [ + "Colophon Foundry" + ], + "lastModified": "2023-05-02", + "dateAdded": "2019-06-11", + "popularity": 283, + "trending": 409, + "defaultSort": 280, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Dai Banna SIL", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 70477, + "subsets": [ + "menu", + "latin", + "latin-ext", + "new-tai-lue" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.13427734375 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.13427734375 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.13427734375 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.13427734375 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.13427734375 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.13427734375 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.13427734375 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.13427734375 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.13427734375 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.13427734375 + } + }, + "axes": [], + "designers": [ + "SIL International" + ], + "lastModified": "2023-07-24", + "dateAdded": "2023-07-20", + "popularity": 1516, + "trending": 1752, + "defaultSort": 303, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Talu", + "primaryLanguage": "" + }, + { + "family": "Damion", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 30578, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 8, + "width": 6, + "lineHeight": 1.3740234375 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-04-27", + "popularity": 400, + "trending": 108, + "defaultSort": 404, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Dancing Script", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 133636, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 7, + "width": 6, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": 4, + "slant": 7, + "width": 6, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Impallari Type" + ], + "lastModified": "2023-09-14", + "dateAdded": "2011-05-18", + "popularity": 72, + "trending": 831, + "defaultSort": 67, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Dangrek", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 62464, + "subsets": [ + "menu", + "khmer", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.806640625 + } + }, + "axes": [], + "designers": [ + "Danh Hong" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-03-02", + "popularity": 1280, + "trending": 1679, + "defaultSort": 1243, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Darker Grotesque", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 91516, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Gabriel Lam", + "Vi\u1EC7tAnh Nguy\u1EC5n" + ], + "lastModified": "2023-05-31", + "dateAdded": "2019-06-19", + "popularity": 541, + "trending": 566, + "defaultSort": 552, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Darumadrop One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 359120, + "subsets": [ + "menu", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Maniackers Design" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-12-13", + "popularity": 1439, + "trending": 1707, + "defaultSort": 1379, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Hira", + "primaryLanguage": "" + }, + { + "family": "David Libre", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 112136, + "subsets": [ + "menu", + "hebrew", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.96533203125 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.96533203125 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.96533203125 + } + }, + "axes": [], + "designers": [ + "Monotype Imaging Inc.", + "SIL International", + "Meir Sadan" + ], + "lastModified": "2023-05-02", + "dateAdded": "2016-06-15", + "popularity": 487, + "trending": 59, + "defaultSort": 490, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Hebr", + "primaryLanguage": "" + }, + { + "family": "Dawning of a New Day", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 65344, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 2, + "slant": 5, + "width": 6, + "lineHeight": 1.6123046875 + } + }, + "axes": [], + "designers": [ + "Kimberly Geswein" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-04-14", + "popularity": 679, + "trending": 553, + "defaultSort": 688, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Days One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 65580, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.27294921875 + } + }, + "axes": [], + "designers": [ + "Jovanny Lemonad" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-08-17", + "popularity": 412, + "trending": 1595, + "defaultSort": 415, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Dekko", + "displayName": null, + "category": "Handwriting", + "stroke": "Sans Serif", + "classifications": [ + "Handwriting" + ], + "size": 271164, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 3, + "lineHeight": 1.63232421875 + } + }, + "axes": [], + "designers": [ + "Sorkin Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2015-01-28", + "popularity": 1087, + "trending": 756, + "defaultSort": 1069, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Dela Gothic One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 2508848, + "subsets": [ + "menu", + "cyrillic", + "greek", + "japanese", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "artakana" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-12-13", + "popularity": 125, + "trending": 7, + "defaultSort": 18, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Delicious Handrawn", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 74692, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Agung Rohmat" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-01-05", + "popularity": 1319, + "trending": 1762, + "defaultSort": 1186, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Delius", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 77488, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.256 + } + }, + "axes": [], + "designers": [ + "Natalia Raices" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-07-27", + "popularity": 591, + "trending": 626, + "defaultSort": 599, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Delius Swash Caps", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 63052, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.256 + } + }, + "axes": [], + "designers": [ + "Natalia Raices" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-08-03", + "popularity": 972, + "trending": 1746, + "defaultSort": 962, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Delius Unicase", + "displayName": null, + "category": "Handwriting", + "stroke": "Sans Serif", + "classifications": [ + "Handwriting", + "Display" + ], + "size": 34512, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.252 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 9, + "lineHeight": 1.283 + } + }, + "axes": [], + "designers": [ + "Natalia Raices" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-10-12", + "popularity": 882, + "trending": 878, + "defaultSort": 874, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Della Respira", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 51208, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.36865234375 + } + }, + "axes": [], + "designers": [ + "Nathan Willis" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-04-04", + "popularity": 645, + "trending": 393, + "defaultSort": 656, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Denk One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 304360, + "subsets": [ + "menu", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Sorkin Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-12-13", + "popularity": 1036, + "trending": 1363, + "defaultSort": 1022, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Devonshire", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 67240, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 3, + "width": 5, + "lineHeight": 1.414 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-16", + "popularity": 1330, + "trending": 1504, + "defaultSort": 1287, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Dhurjati", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 990048, + "subsets": [ + "menu", + "latin", + "telugu" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 6, + "lineHeight": 1.85057471264368 + } + }, + "axes": [], + "designers": [ + "Purushoth Kumar Guttula" + ], + "lastModified": "2023-08-25", + "dateAdded": "2014-12-10", + "popularity": 1414, + "trending": 479, + "defaultSort": 1359, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Didact Gothic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 194200, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.311 + } + }, + "axes": [], + "designers": [ + "Daniel Johnson", + "Cyreal" + ], + "lastModified": "2023-05-02", + "dateAdded": "2011-05-04", + "popularity": 152, + "trending": 1345, + "defaultSort": 145, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Diphylleia", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 1947768, + "subsets": [ + "menu", + "korean", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Minha Hyung", + "JAMO" + ], + "lastModified": "2023-06-07", + "dateAdded": "2023-06-05", + "popularity": 1509, + "trending": 1806, + "defaultSort": 611, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Kore", + "primaryLanguage": "" + }, + { + "family": "Diplomata", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 89556, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 1, + "width": 10, + "lineHeight": 1.217 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-01-25", + "popularity": 1191, + "trending": 1462, + "defaultSort": 1166, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Diplomata SC", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 87544, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 1, + "width": 10, + "lineHeight": 1.217 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-01-25", + "popularity": 1322, + "trending": 1232, + "defaultSort": 1281, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Do Hyeon", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 864520, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Woowahan Brothers" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-02-24", + "popularity": 535, + "trending": 315, + "defaultSort": 544, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Dokdo", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 2150860, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "FONTRIX" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-02-23", + "popularity": 833, + "trending": 1702, + "defaultSort": 827, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Domine", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 101904, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.14 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.14 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.14 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.14 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Impallari Type" + ], + "lastModified": "2023-09-14", + "dateAdded": "2012-11-30", + "popularity": 118, + "trending": 201, + "defaultSort": 113, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Donegal One", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 34745, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Gary Lonergan" + ], + "lastModified": "2023-05-02", + "dateAdded": "2012-12-13", + "popularity": 1080, + "trending": 1810, + "defaultSort": 1063, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Dongle", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 4441398, + "subsets": [ + "menu", + "korean", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Yanghee Ryu" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-06-14", + "popularity": 948, + "trending": 1521, + "defaultSort": 939, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Doppio One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 31619, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Szymon Celej" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-02-22", + "popularity": 917, + "trending": 1589, + "defaultSort": 906, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Dorsa", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 20844, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 2, + "slant": 1, + "width": 1, + "lineHeight": 1.057 + } + }, + "axes": [], + "designers": [ + "Santiago Orozco" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-08-31", + "popularity": 1092, + "trending": 1477, + "defaultSort": 1074, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Dosis", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 117280, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": 2, + "slant": 1, + "width": 6, + "lineHeight": 1.264 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 6, + "lineHeight": 1.264 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.264 + }, + "500": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.264 + }, + "600": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.264 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.264 + }, + "800": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.264 + } + }, + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Impallari Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-03-20", + "popularity": 60, + "trending": 792, + "defaultSort": 57, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "DotGothic16", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 2069236, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Fontworks Inc." + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-12-15", + "popularity": 755, + "trending": 953, + "defaultSort": 761, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Dr Sugiyama", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 39928, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 5, + "lineHeight": 1.459 + } + }, + "axes": [], + "designers": [ + "Sudtipos" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-30", + "popularity": 1256, + "trending": 1594, + "defaultSort": 1220, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Duru Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 21388, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Onur Yaz\u0131c\u0131gil" + ], + "lastModified": "2023-05-02", + "dateAdded": "2011-12-19", + "popularity": 692, + "trending": 93, + "defaultSort": 701, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "DynaPuff", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 212600, + "subsets": [ + "menu", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Toshi Omagari", + "Jennifer Daniel" + ], + "lastModified": "2023-05-02", + "dateAdded": "2022-05-18", + "popularity": 1284, + "trending": 1456, + "defaultSort": 1252, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Dynalight", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 53148, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 7, + "width": 5, + "lineHeight": 1.21337890625 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 915, + "trending": 1339, + "defaultSort": 904, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "EB Garamond", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 906308, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.305 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.305 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.305 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.305 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.305 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.305 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.305 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.305 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.305 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.305 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Georg Duffner", + "Octavio Pardo" + ], + "lastModified": "2023-09-14", + "dateAdded": "2011-03-23", + "popularity": 76, + "trending": 1011, + "defaultSort": 72, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Eagle Lake", + "displayName": null, + "category": "Handwriting", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 78000, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.63330078125 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-07-11", + "popularity": 1063, + "trending": 427, + "defaultSort": 1047, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "East Sea Dokdo", + "displayName": null, + "category": "Handwriting", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 3178684, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "YoonDesign Inc" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-03-12", + "popularity": 1045, + "trending": 1294, + "defaultSort": 1030, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Eater", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 83928, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.86376953125 + } + }, + "axes": [], + "designers": [ + "Typomondo" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 907, + "trending": 1554, + "defaultSort": 896, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Economica", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 27167, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 5, + "lineHeight": 1.149 + }, + "400i": { + "thickness": 4, + "slant": 4, + "width": 5, + "lineHeight": 1.149 + }, + "700": { + "thickness": 5, + "slant": 1, + "width": 5, + "lineHeight": 1.149 + }, + "700i": { + "thickness": 5, + "slant": 4, + "width": 5, + "lineHeight": 1.149 + } + }, + "axes": [], + "designers": [ + "Vicente Lam\u00F3naca" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-02-29", + "popularity": 393, + "trending": 1012, + "defaultSort": 396, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Eczar", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 407304, + "subsets": [ + "menu", + "devanagari", + "greek", + "greek-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 3, + "lineHeight": 1.777 + }, + "500": { + "thickness": 6, + "slant": 1, + "width": 3, + "lineHeight": 1.777 + }, + "600": { + "thickness": 7, + "slant": 1, + "width": 3, + "lineHeight": 1.777 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 3, + "lineHeight": 1.777 + }, + "800": { + "thickness": 8, + "slant": 1, + "width": 3, + "lineHeight": 1.777 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Rosetta", + "Vaibhav Singh" + ], + "lastModified": "2023-05-02", + "dateAdded": "2015-06-03", + "popularity": 334, + "trending": 883, + "defaultSort": 332, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Edu NSW ACT Foundation", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 55116, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Tina Anderson", + "Corey Anderson" + ], + "lastModified": "2023-01-06", + "dateAdded": "2022-06-09", + "popularity": 1427, + "trending": 1087, + "defaultSort": 1370, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Edu QLD Beginner", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 46888, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Tina Anderson", + "Corey Anderson" + ], + "lastModified": "2023-03-09", + "dateAdded": "2022-06-21", + "popularity": 1479, + "trending": 1610, + "defaultSort": 1405, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Edu SA Beginner", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 33724, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Tina Anderson", + "Corey Anderson" + ], + "lastModified": "2023-03-09", + "dateAdded": "2022-06-09", + "popularity": 1052, + "trending": 1244, + "defaultSort": 1037, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Edu TAS Beginner", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 34068, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Tina Anderson", + "Corey Anderson" + ], + "lastModified": "2023-03-09", + "dateAdded": "2022-06-09", + "popularity": 1371, + "trending": 1705, + "defaultSort": 1321, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Edu VIC WA NT Beginner", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 34552, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Tina Anderson", + "Corey Anderson" + ], + "lastModified": "2023-03-09", + "dateAdded": "2022-06-09", + "popularity": 1473, + "trending": 208, + "defaultSort": 1401, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "El Messiri", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 138664, + "subsets": [ + "menu", + "arabic", + "cyrillic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.563 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.563 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.563 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.563 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Mohamed Gaber", + "Jovanny Lemonad" + ], + "lastModified": "2023-03-21", + "dateAdded": "2016-05-31", + "popularity": 198, + "trending": 200, + "defaultSort": 191, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Electrolize", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 55712, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.186 + } + }, + "axes": [], + "designers": [ + "Gaslight" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-07", + "popularity": 384, + "trending": 1166, + "defaultSort": 387, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Elsie", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 40576, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.152 + }, + "900": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.152 + } + }, + "axes": [], + "designers": [ + "Alejandro Inler" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-12-13", + "popularity": 823, + "trending": 1336, + "defaultSort": 817, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Elsie Swash Caps", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 38568, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.152 + }, + "900": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.152 + } + }, + "axes": [], + "designers": [ + "Alejandro Inler" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-12-13", + "popularity": 1185, + "trending": 475, + "defaultSort": 1161, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Emblema One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 28852, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 3, + "width": 8, + "lineHeight": 1.193359375 + } + }, + "axes": [], + "designers": [ + "Riccardo De Franceschi" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-01-18", + "popularity": 1291, + "trending": 281, + "defaultSort": 1257, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Emilys Candy", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 237216, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.251953125 + } + }, + "axes": [], + "designers": [ + "Neapolitan" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-02-29", + "popularity": 838, + "trending": 902, + "defaultSort": 831, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Encode Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 285792, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 125, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Impallari Type", + "Andres Torresi", + "Jacques Le Bailly" + ], + "lastModified": "2023-03-21", + "dateAdded": "2017-02-08", + "popularity": 207, + "trending": 473, + "defaultSort": 200, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Encode Sans Condensed", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 167694, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Impallari Type", + "Andres Torresi", + "Jacques Le Bailly" + ], + "lastModified": "2022-09-21", + "dateAdded": "2017-02-08", + "popularity": 254, + "trending": 1369, + "defaultSort": 250, + "androidFragment": "name=Encode Sans&width=75.0", + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Encode Sans Expanded", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 167897, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Impallari Type", + "Andres Torresi", + "Jacques Le Bailly" + ], + "lastModified": "2023-05-02", + "dateAdded": "2017-02-08", + "popularity": 738, + "trending": 121, + "defaultSort": 745, + "androidFragment": "name=Encode Sans&width=125.0", + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Encode Sans SC", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 217392, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 125, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Impallari Type", + "Andres Torresi", + "Jacques Le Bailly" + ], + "lastModified": "2023-09-14", + "dateAdded": "2020-06-24", + "popularity": 1162, + "trending": 215, + "defaultSort": 1138, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Encode Sans Semi Condensed", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 168269, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Impallari Type", + "Andres Torresi", + "Jacques Le Bailly" + ], + "lastModified": "2022-09-21", + "dateAdded": "2017-02-08", + "popularity": 610, + "trending": 747, + "defaultSort": 621, + "androidFragment": "name=Encode Sans&width=87.5", + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Encode Sans Semi Expanded", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 168725, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Impallari Type", + "Andres Torresi", + "Jacques Le Bailly" + ], + "lastModified": "2023-05-02", + "dateAdded": "2017-02-08", + "popularity": 877, + "trending": 729, + "defaultSort": 868, + "androidFragment": "name=Encode Sans&width=112.5", + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Engagement", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 76408, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 2, + "width": 1, + "lineHeight": 1.23388671875 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-07", + "popularity": 1074, + "trending": 1043, + "defaultSort": 1057, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Englebert", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Handwriting", + "Display" + ], + "size": 53048, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 0.61767578125 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-11-02", + "popularity": 1248, + "trending": 1032, + "defaultSort": 1212, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Enriqueta", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 74400, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.338 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.338 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.338 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.338 + } + }, + "axes": [], + "designers": [ + "FontFuror" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-13", + "popularity": 551, + "trending": 527, + "defaultSort": 562, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ephesis", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 142188, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-08-06", + "popularity": 954, + "trending": 859, + "defaultSort": 944, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Epilogue", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 206150, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.025 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.025 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.025 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.025 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.025 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.025 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.025 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.025 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.025 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.025 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.025 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.025 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.025 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.025 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.025 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.025 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.025 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.025 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Tyler Finck", + "ETC" + ], + "lastModified": "2023-03-21", + "dateAdded": "2020-06-26", + "popularity": 309, + "trending": 260, + "defaultSort": 307, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Erica One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 26244, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 10, + "slant": 1, + "width": 8, + "lineHeight": 1.492 + } + }, + "axes": [], + "designers": [ + "Miguel Hernandez" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-01-18", + "popularity": 1218, + "trending": 67, + "defaultSort": 1137, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Esteban", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 23463, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.274 + } + }, + "axes": [], + "designers": [ + "Ang\u00E9lica D\u00EDaz" + ], + "lastModified": "2023-05-02", + "dateAdded": "2012-01-11", + "popularity": 802, + "trending": 633, + "defaultSort": 800, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Estonia", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 1470272, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-08-26", + "popularity": 1521, + "trending": 1161, + "defaultSort": 1428, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Euphoria Script", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 38424, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 4, + "width": 5, + "lineHeight": 1.1648 + } + }, + "axes": [], + "designers": [ + "Sabrina Mariela Lopez" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-02-08", + "popularity": 854, + "trending": 431, + "defaultSort": 843, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ewert", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 70752, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 3, + "width": 9, + "lineHeight": 1.243 + } + }, + "axes": [], + "designers": [ + "Johan Kallas", + "Mihkel Virkus" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-02-08", + "popularity": 1275, + "trending": 1672, + "defaultSort": 1238, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Exo", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 178500, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": 1, + "slant": 1, + "width": 7, + "lineHeight": 1.329 + }, + "100i": { + "thickness": 1, + "slant": 4, + "width": 7, + "lineHeight": 1.329 + }, + "200": { + "thickness": 3, + "slant": 1, + "width": 7, + "lineHeight": 1.329 + }, + "200i": { + "thickness": 3, + "slant": 4, + "width": 7, + "lineHeight": 1.329 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 7, + "lineHeight": 1.329 + }, + "300i": { + "thickness": 4, + "slant": 4, + "width": 7, + "lineHeight": 1.329 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.329 + }, + "400i": { + "thickness": 4, + "slant": 4, + "width": 7, + "lineHeight": 1.329 + }, + "500": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.329 + }, + "500i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.329 + }, + "600": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.329 + }, + "600i": { + "thickness": 5, + "slant": 3, + "width": 7, + "lineHeight": 1.329 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.329 + }, + "700i": { + "thickness": 6, + "slant": 4, + "width": 7, + "lineHeight": 1.329 + }, + "800": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.329 + }, + "800i": { + "thickness": 7, + "slant": 4, + "width": 7, + "lineHeight": 1.329 + }, + "900": { + "thickness": 8, + "slant": 1, + "width": 7, + "lineHeight": 1.329 + }, + "900i": { + "thickness": 8, + "slant": 4, + "width": 7, + "lineHeight": 1.329 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Natanael Gama", + "Robin Mientjes" + ], + "lastModified": "2023-09-14", + "dateAdded": "2012-02-08", + "popularity": 162, + "trending": 957, + "defaultSort": 155, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Exo 2", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 287194, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": 1, + "slant": 1, + "width": 7, + "lineHeight": 1.2 + }, + "100i": { + "thickness": 1, + "slant": 4, + "width": 7, + "lineHeight": 1.2 + }, + "200": { + "thickness": 3, + "slant": 1, + "width": 7, + "lineHeight": 1.2 + }, + "200i": { + "thickness": 3, + "slant": 4, + "width": 7, + "lineHeight": 1.2 + }, + "300": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.2 + }, + "300i": { + "thickness": 4, + "slant": 4, + "width": 7, + "lineHeight": 1.2 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.2 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.2 + }, + "500": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.2 + }, + "500i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.2 + }, + "600": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.2 + }, + "600i": { + "thickness": 6, + "slant": 4, + "width": 7, + "lineHeight": 1.2 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.2 + }, + "700i": { + "thickness": 7, + "slant": 4, + "width": 7, + "lineHeight": 1.2 + }, + "800": { + "thickness": 8, + "slant": 1, + "width": 7, + "lineHeight": 1.2 + }, + "800i": { + "thickness": 8, + "slant": 4, + "width": 7, + "lineHeight": 1.2 + }, + "900": { + "thickness": 8, + "slant": 1, + "width": 8, + "lineHeight": 1.2 + }, + "900i": { + "thickness": 8, + "slant": 4, + "width": 8, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Natanael Gama" + ], + "lastModified": "2023-09-14", + "dateAdded": "2013-12-04", + "popularity": 86, + "trending": 778, + "defaultSort": 83, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Expletus Sans", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 39486, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.339 + }, + "400i": { + "thickness": 5, + "slant": 3, + "width": 7, + "lineHeight": 1.339 + }, + "500": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.339 + }, + "500i": { + "thickness": 5, + "slant": 3, + "width": 7, + "lineHeight": 1.339 + }, + "600": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.339 + }, + "600i": { + "thickness": 6, + "slant": 3, + "width": 7, + "lineHeight": 1.339 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.339 + }, + "700i": { + "thickness": 6, + "slant": 3, + "width": 7, + "lineHeight": 1.339 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Designtown" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-05-04", + "popularity": 789, + "trending": 1018, + "defaultSort": 788, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Explora", + "displayName": null, + "category": "Handwriting", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 164680, + "subsets": [ + "menu", + "cherokee", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-08-10", + "popularity": 1495, + "trending": 130, + "defaultSort": 1413, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fahkwang", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 89621, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2022-09-21", + "dateAdded": "2018-09-10", + "popularity": 673, + "trending": 580, + "defaultSort": 682, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Familjen Grotesk", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 92160, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Familjen STHLM AB" + ], + "lastModified": "2023-03-21", + "dateAdded": "2022-03-02", + "popularity": 912, + "trending": 370, + "defaultSort": 901, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fanwood Text", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 63489, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.31103515625 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 6, + "lineHeight": 1.31103515625 + } + }, + "axes": [], + "designers": [ + "Barry Schwartz" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-08-31", + "popularity": 562, + "trending": 27, + "defaultSort": 257, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Farro", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 68443, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Grayscale" + ], + "lastModified": "2022-09-21", + "dateAdded": "2019-07-16", + "popularity": 929, + "trending": 1611, + "defaultSort": 921, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Farsan", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Handwriting" + ], + "size": 243932, + "subsets": [ + "menu", + "gujarati", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 3, + "width": 3, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Pooja Saxena" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-06-20", + "popularity": 1043, + "trending": 1370, + "defaultSort": 1029, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fascinate", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 25808, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 1, + "width": 8, + "lineHeight": 1.326171875 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-07", + "popularity": 1167, + "trending": 1038, + "defaultSort": 1143, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fascinate Inline", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 29942, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 1, + "width": 8, + "lineHeight": 1.326171875 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-07", + "popularity": 1169, + "trending": 1568, + "defaultSort": 1145, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Faster One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 94044, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 4, + "width": 8, + "lineHeight": 1.063 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-03-21", + "dateAdded": "2012-10-26", + "popularity": 936, + "trending": 1318, + "defaultSort": 928, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fasthand", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 213852, + "subsets": [ + "menu", + "khmer", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.806640625 + } + }, + "axes": [], + "designers": [ + "Danh Hong" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-05-24", + "popularity": 603, + "trending": 119, + "defaultSort": 614, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fauna One", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 58804, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.23 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-03-21", + "dateAdded": "2013-06-05", + "popularity": 660, + "trending": 1221, + "defaultSort": 671, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Faustina", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 119606, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2023-03-21", + "dateAdded": "2017-07-31", + "popularity": 288, + "trending": 1488, + "defaultSort": 285, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Federant", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 45588, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.226 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-10-05", + "popularity": 1365, + "trending": 1592, + "defaultSort": 1316, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Federo", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 69453, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.17822265625 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2022-04-21", + "dateAdded": "2011-07-27", + "popularity": 721, + "trending": 852, + "defaultSort": 729, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Felipa", + "displayName": null, + "category": "Handwriting", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 40000, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 4, + "width": 6, + "lineHeight": 1.285 + } + }, + "axes": [], + "designers": [ + "Fontstage" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-02-08", + "popularity": 1242, + "trending": 939, + "defaultSort": 1207, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fenix", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 17214, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.117 + } + }, + "axes": [], + "designers": [ + "Fernando D\u00EDaz" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-09-24", + "popularity": 1121, + "trending": 310, + "defaultSort": 1102, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Festive", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 1326792, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.69 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-04-23", + "popularity": 1279, + "trending": 460, + "defaultSort": 1242, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Figtree", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 64038, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Erik Kennedy" + ], + "lastModified": "2023-07-24", + "dateAdded": "2022-07-21", + "popularity": 154, + "trending": 868, + "defaultSort": 147, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Finger Paint", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 107440, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.474 + } + }, + "axes": [], + "designers": [ + "Carrois Apostrophe" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-09-30", + "popularity": 871, + "trending": 1034, + "defaultSort": 860, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Finlandica", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 147950, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Helsinki Type Studio", + "Niklas Ekholm", + "Juho Hiilivirta", + "Jaakko Suomalainen" + ], + "lastModified": "2023-03-09", + "dateAdded": "2022-05-13", + "popularity": 1399, + "trending": 1694, + "defaultSort": 1347, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fira Code", + "displayName": null, + "category": "Monospace", + "stroke": null, + "classifications": [ + "Monospace" + ], + "size": 260364, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.312 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.312 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.312 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.312 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.312 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "The Mozilla Foundation", + "Telefonica S.A.", + "Nikita Prokopov" + ], + "lastModified": "2023-09-14", + "dateAdded": "2019-03-24", + "popularity": 555, + "trending": 1469, + "defaultSort": 566, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fira Mono", + "displayName": null, + "category": "Monospace", + "stroke": null, + "classifications": [ + "Monospace" + ], + "size": 184837, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Carrois Apostrophe" + ], + "lastModified": "2022-09-21", + "dateAdded": "2014-06-18", + "popularity": 339, + "trending": 174, + "defaultSort": 337, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fira Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 480177, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": 4, + "slant": 3, + "width": 7, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Carrois Apostrophe" + ], + "lastModified": "2023-05-02", + "dateAdded": "2014-06-18", + "popularity": 36, + "trending": 896, + "defaultSort": 36, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fira Sans Condensed", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 480660, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Carrois Apostrophe" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-12-07", + "popularity": 117, + "trending": 781, + "defaultSort": 112, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fira Sans Extra Condensed", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 479881, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Carrois Apostrophe" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-12-07", + "popularity": 258, + "trending": 964, + "defaultSort": 255, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fjalla One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 209052, + "subsets": [ + "menu", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.2568359375 + } + }, + "axes": [], + "designers": [ + "Sorkin Type", + "Irina Smirnova" + ], + "lastModified": "2023-04-04", + "dateAdded": "2012-10-27", + "popularity": 93, + "trending": 1086, + "defaultSort": 89, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fjord One", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 26548, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Viktoriya Grabowska" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-11-02", + "popularity": 700, + "trending": 391, + "defaultSort": 711, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Flamenco", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 35588, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "300": { + "thickness": 1, + "slant": 1, + "width": 6, + "lineHeight": 1.032 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.031 + } + }, + "axes": [], + "designers": [ + "LatinoType" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-19", + "popularity": 809, + "trending": 1524, + "defaultSort": 806, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Flavors", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 184784, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.27734375 + } + }, + "axes": [], + "designers": [ + "Sideshow" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 1316, + "trending": 726, + "defaultSort": 1277, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fleur De Leah", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 231608, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.37 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-09-02", + "popularity": 1432, + "trending": 1085, + "defaultSort": 1374, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Flow Block", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Symbols", + "Display" + ], + "size": 38928, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Dan Ross" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-10-21", + "popularity": 1539, + "trending": 328, + "defaultSort": 1440, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Flow Circular", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Symbols", + "Display" + ], + "size": 45788, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Dan Ross" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-10-21", + "popularity": 975, + "trending": 90, + "defaultSort": 966, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Flow Rounded", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Symbols", + "Display" + ], + "size": 43800, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Dan Ross" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-10-21", + "popularity": 1545, + "trending": 170, + "defaultSort": 1445, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Foldit", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 520484, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Sophia Tai" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-10-02", + "popularity": 1363, + "trending": 253, + "defaultSort": 1307, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [ + "COLRV1" + ], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fondamento", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 82960, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.3837890625 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.3837890625 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-16", + "popularity": 682, + "trending": 443, + "defaultSort": 691, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fontdiner Swanky", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 45524, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.5400390625 + } + }, + "axes": [], + "designers": [ + "Font Diner" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-01-06", + "popularity": 1039, + "trending": 271, + "defaultSort": 1025, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Forum", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 303316, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.104 + } + }, + "axes": [], + "designers": [ + "Denis Masharov" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-07-06", + "popularity": 363, + "trending": 311, + "defaultSort": 364, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fragment Mono", + "displayName": null, + "category": "Monospace", + "stroke": "Sans Serif", + "classifications": [ + "Monospace" + ], + "size": 126710, + "subsets": [ + "menu", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Wei Huang", + "URW Design Studio" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-10-23", + "popularity": 849, + "trending": 20, + "defaultSort": 140, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Francois One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 79356, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.418 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-05-02", + "dateAdded": "2011-05-04", + "popularity": 221, + "trending": 1056, + "defaultSort": 215, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Frank Ruhl Libre", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 178108, + "subsets": [ + "menu", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.291 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.291 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.291 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.291 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.291 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.291 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.291 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Yanek Iontef" + ], + "lastModified": "2023-06-22", + "dateAdded": "2016-06-20", + "popularity": 139, + "trending": 820, + "defaultSort": 133, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fraunces", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 387672, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.233 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.233 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.233 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.233 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.233 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.233 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.233 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.233 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.233 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.233 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.233 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.233 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.233 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.233 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.233 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.233 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.233 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.233 + } + }, + "axes": [ + { + "tag": "SOFT", + "min": 0, + "max": 100, + "defaultValue": 0 + }, + { + "tag": "WONK", + "min": 0, + "max": 1, + "defaultValue": 0 + }, + { + "tag": "opsz", + "min": 9, + "max": 144, + "defaultValue": 14 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Undercase Type", + "Phaedra Charles", + "Flavia Zimbardi" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-07-23", + "popularity": 326, + "trending": 488, + "defaultSort": 325, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Freckle Face", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 68140, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 3, + "width": 7, + "lineHeight": 1.22900390625 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-05-02", + "dateAdded": "2012-11-26", + "popularity": 901, + "trending": 1022, + "defaultSort": 890, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fredericka the Great", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 486016, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.2255859375 + } + }, + "axes": [], + "designers": [ + "Tart Workshop" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 474, + "trending": 1144, + "defaultSort": 476, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fredoka", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 159184, + "subsets": [ + "menu", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.21 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.21 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.21 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.21 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.21 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 125, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Milena Brand\u00E3o", + "Hafontia" + ], + "lastModified": "2023-04-04", + "dateAdded": "2021-12-15", + "popularity": 576, + "trending": 1041, + "defaultSort": 585, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Freehand", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 235540, + "subsets": [ + "menu", + "khmer", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.806640625 + } + }, + "axes": [], + "designers": [ + "Danh Hong" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-03-02", + "popularity": 568, + "trending": 104, + "defaultSort": 577, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fresca", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 32644, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.154 + } + }, + "axes": [], + "designers": [ + "Fontstage" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-07", + "popularity": 720, + "trending": 1380, + "defaultSort": 728, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Frijole", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 122166, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 1, + "width": 9, + "lineHeight": 1.37890625 + } + }, + "axes": [], + "designers": [ + "Sideshow" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-19", + "popularity": 787, + "trending": 241, + "defaultSort": 786, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fruktur", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 210982, + "subsets": [ + "menu", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.25 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Viktoriya Grabowska", + "Eben Sorkin" + ], + "lastModified": "2023-04-27", + "dateAdded": "2013-01-16", + "popularity": 1415, + "trending": 1290, + "defaultSort": 1360, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fugaz One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 27868, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 4, + "width": 8, + "lineHeight": 1.468 + } + }, + "axes": [], + "designers": [ + "LatinoType" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 406, + "trending": 195, + "defaultSort": 409, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fuggles", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 734252, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.201 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-04-29", + "popularity": 718, + "trending": 15, + "defaultSort": 80, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Fuzzy Bubbles", + "displayName": null, + "category": "Handwriting", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 144420, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-11-02", + "popularity": 1223, + "trending": 434, + "defaultSort": 1191, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "GFS Didot", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 79456, + "subsets": [ + "menu", + "greek" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.249 + } + }, + "axes": [], + "designers": [ + "Greek Font Society" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-09-21", + "popularity": 448, + "trending": 410, + "defaultSort": 450, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "GFS Neohellenic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 152310, + "subsets": [ + "menu", + "greek" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.142 + }, + "400i": { + "thickness": 4, + "slant": 5, + "width": 6, + "lineHeight": 1.143 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.157 + }, + "700i": { + "thickness": 6, + "slant": 5, + "width": 7, + "lineHeight": 1.159 + } + }, + "axes": [], + "designers": [ + "Greek Font Society" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-09-21", + "popularity": 1339, + "trending": 1154, + "defaultSort": 1294, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gabarito", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 158144, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "\u00C1lvaro Franca", + "Leandro Assis", + "Felipe Casaprima" + ], + "lastModified": "2023-09-27", + "dateAdded": "2023-09-26", + "popularity": 994, + "trending": 4, + "defaultSort": 7, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gabriela", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 70984, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.281 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-08-25", + "dateAdded": "2013-03-06", + "popularity": 640, + "trending": 448, + "defaultSort": 651, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gaegu", + "displayName": null, + "category": "Handwriting", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 3113828, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "JIKJI SOFT" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-02-28", + "popularity": 856, + "trending": 721, + "defaultSort": 845, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gafata", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 51552, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.123 + } + }, + "axes": [], + "designers": [ + "Lautaro Hourcade" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-10-31", + "popularity": 965, + "trending": 297, + "defaultSort": 955, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gajraj One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 149784, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.465 + } + }, + "axes": [], + "designers": [ + "Saurabh Sharma" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-01-22", + "popularity": 1477, + "trending": 1054, + "defaultSort": 1130, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Deva", + "primaryLanguage": "" + }, + { + "family": "Galada", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 187776, + "subsets": [ + "menu", + "bengali", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 4, + "width": 4, + "lineHeight": 1.627 + } + }, + "axes": [], + "designers": [ + "Black Foundry" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-06-20", + "popularity": 829, + "trending": 1471, + "defaultSort": 823, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Galdeano", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 14389, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.05 + } + }, + "axes": [], + "designers": [ + "Dario Manuel Muhafara" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-07", + "popularity": 943, + "trending": 505, + "defaultSort": 934, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Galindo", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 58104, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 1, + "width": 8, + "lineHeight": 1.41455078125 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-08-13", + "popularity": 1287, + "trending": 302, + "defaultSort": 1254, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gamja Flower", + "displayName": null, + "category": "Handwriting", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 12615444, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "YoonDesign Inc" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-02-23", + "popularity": 989, + "trending": 1634, + "defaultSort": 978, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gantari", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 128108, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Lafontype" + ], + "lastModified": "2022-09-21", + "dateAdded": "2022-05-25", + "popularity": 937, + "trending": 993, + "defaultSort": 929, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gasoek One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 1061372, + "subsets": [ + "menu", + "korean", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Jiashuo Zhang", + "JAMO" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-05-17", + "popularity": 1540, + "trending": 1035, + "defaultSort": 706, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Kore", + "primaryLanguage": "" + }, + { + "family": "Gayathri", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 163513, + "subsets": [ + "menu", + "latin", + "malayalam" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.220703125 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.220703125 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.220703125 + } + }, + "axes": [], + "designers": [ + "SMC", + "Binoy Dominic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2019-06-10", + "popularity": 960, + "trending": 68, + "defaultSort": 950, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gelasio", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 127403, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26953125 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26953125 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26953125 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26953125 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26953125 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26953125 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26953125 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26953125 + } + }, + "axes": [], + "designers": [ + "Eben Sorkin" + ], + "lastModified": "2022-09-21", + "dateAdded": "2019-12-03", + "popularity": 244, + "trending": 524, + "defaultSort": 241, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gemunu Libre", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 256512, + "subsets": [ + "menu", + "latin", + "latin-ext", + "sinhala" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.084 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.084 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.084 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.084 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.084 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.084 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.084 + } + }, + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Mooniak" + ], + "lastModified": "2023-08-25", + "dateAdded": "2017-05-29", + "popularity": 857, + "trending": 716, + "defaultSort": 846, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Genos", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 139784, + "subsets": [ + "menu", + "cherokee", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-10-07", + "popularity": 1315, + "trending": 1764, + "defaultSort": 1276, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gentium Book Plus", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 857030, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.46484375 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.46484375 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.46484375 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.46484375 + } + }, + "axes": [], + "designers": [ + "SIL International" + ], + "lastModified": "2022-09-21", + "dateAdded": "2022-05-18", + "popularity": 1386, + "trending": 327, + "defaultSort": 1335, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gentium Plus", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 852956, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.46484375 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.46484375 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.46484375 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.46484375 + } + }, + "axes": [], + "designers": [ + "SIL International" + ], + "lastModified": "2023-04-27", + "dateAdded": "2022-05-13", + "popularity": 1313, + "trending": 645, + "defaultSort": 1274, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Geo", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 44358, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.111328125 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 6, + "lineHeight": 1.111328125 + } + }, + "axes": [], + "designers": [ + "Ben Weiner" + ], + "lastModified": "2023-08-25", + "dateAdded": "2010-11-30", + "popularity": 864, + "trending": 140, + "defaultSort": 853, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Geologica", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 348640, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [ + { + "tag": "CRSV", + "min": 0, + "max": 1, + "defaultValue": 0 + }, + { + "tag": "SHRP", + "min": 0, + "max": 100, + "defaultValue": 0 + }, + { + "tag": "slnt", + "min": -12, + "max": 0, + "defaultValue": 0 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Monokrom", + "Sindre Bremnes", + "Frode Helland" + ], + "lastModified": "2023-05-31", + "dateAdded": "2023-05-29", + "popularity": 836, + "trending": 56, + "defaultSort": 533, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Georama", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 449838, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.194 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.194 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.194 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.194 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.194 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.194 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.194 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.194 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.194 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.194 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.194 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.194 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.194 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.194 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.194 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.194 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.194 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.194 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 150, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Production Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-07-01", + "popularity": 581, + "trending": 98, + "defaultSort": 590, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Geostar", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 41288, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 9, + "lineHeight": 1.148 + } + }, + "axes": [], + "designers": [ + "Joe Prince" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-08-10", + "popularity": 1455, + "trending": 1329, + "defaultSort": 1391, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Geostar Fill", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 38824, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 9, + "lineHeight": 1.148 + } + }, + "axes": [], + "designers": [ + "Joe Prince" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-08-10", + "popularity": 1372, + "trending": 1726, + "defaultSort": 1322, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Germania One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 15842, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.161 + } + }, + "axes": [], + "designers": [ + "John Vargas Beltr\u00E1n" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-01-18", + "popularity": 652, + "trending": 113, + "defaultSort": 663, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gideon Roman", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 109484, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-08-26", + "popularity": 1402, + "trending": 1139, + "defaultSort": 1350, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gidugu", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 435412, + "subsets": [ + "menu", + "latin", + "telugu" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 4, + "lineHeight": 1.85409252669039 + } + }, + "axes": [], + "designers": [ + "Purushoth Kumar Guttula" + ], + "lastModified": "2023-08-25", + "dateAdded": "2014-12-10", + "popularity": 1227, + "trending": 158, + "defaultSort": 1195, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gilda Display", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 68020, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.177 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-10-31", + "popularity": 410, + "trending": 627, + "defaultSort": 413, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Girassol", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 37644, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.194 + } + }, + "axes": [], + "designers": [ + "Liam Spradlin" + ], + "lastModified": "2023-08-25", + "dateAdded": "2019-12-05", + "popularity": 1196, + "trending": 1600, + "defaultSort": 1171, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Give You Glory", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 26317, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 7, + "lineHeight": 1.6064453125 + } + }, + "axes": [], + "designers": [ + "Kimberly Geswein" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-07-13", + "popularity": 819, + "trending": 381, + "defaultSort": 814, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Glass Antiqua", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Handwriting" + ], + "size": 63012, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.035 + } + }, + "axes": [], + "designers": [ + "Denis Masharov" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-02-22", + "popularity": 1235, + "trending": 199, + "defaultSort": 1202, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Glegoo", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [], + "size": 271218, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.793 + }, + "700": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.793 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-01-25", + "popularity": 415, + "trending": 965, + "defaultSort": 419, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gloock", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 98096, + "subsets": [ + "menu", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Duarte Pinto" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-01-05", + "popularity": 684, + "trending": 48, + "defaultSort": 693, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gloria Hallelujah", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 59812, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.982421875 + } + }, + "axes": [], + "designers": [ + "Kimberly Geswein" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-07-27", + "popularity": 235, + "trending": 956, + "defaultSort": 229, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Glory", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 88242, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.12 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.12 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.12 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.12 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.12 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.12 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.12 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.12 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.12 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.12 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.12 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.12 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.12 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.12 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.12 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.12 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-06-17", + "popularity": 968, + "trending": 1350, + "defaultSort": 958, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gluten", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 349672, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.8825 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.8825 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.8825 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.8825 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.8825 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.8825 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.8825 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.8825 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.8825 + } + }, + "axes": [ + { + "tag": "slnt", + "min": -13, + "max": 13, + "defaultValue": 0 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Tyler Finck", + "ETC" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-09-02", + "popularity": 876, + "trending": 491, + "defaultSort": 866, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Goblin One", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 36736, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 1, + "width": 9, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Riccardo De Franceschi" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-06-29", + "popularity": 726, + "trending": 338, + "defaultSort": 734, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gochi Hand", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 37352, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.1787109375 + } + }, + "axes": [], + "designers": [ + "Huerta Tipogr\u00E1fica" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-10-05", + "popularity": 367, + "trending": 1765, + "defaultSort": 368, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Goldman", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 77968, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Jaikishan Patel" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-07-21", + "popularity": 846, + "trending": 1795, + "defaultSort": 838, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Golos Text", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 184292, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Alexandra Korolkova", + "Vitaly Kuzmin" + ], + "lastModified": "2023-03-21", + "dateAdded": "2023-01-05", + "popularity": 582, + "trending": 1075, + "defaultSort": 591, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gorditas", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 110068, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.213 + }, + "700": { + "thickness": 8, + "slant": 1, + "width": 8, + "lineHeight": 1.213 + } + }, + "axes": [], + "designers": [ + "Gustavo Dipre" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-03-14", + "popularity": 1175, + "trending": 321, + "defaultSort": 1151, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gothic A1", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 2289616, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "HanYang I&C Co" + ], + "lastModified": "2022-09-27", + "dateAdded": "2018-02-24", + "popularity": 240, + "trending": 632, + "defaultSort": 235, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gotu", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 697792, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.66 + } + }, + "axes": [], + "designers": [ + "Ek Type" + ], + "lastModified": "2022-09-21", + "dateAdded": "2020-01-09", + "popularity": 1007, + "trending": 981, + "defaultSort": 995, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Goudy Bookletter 1911", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 73496, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.3603515625 + } + }, + "axes": [], + "designers": [ + "Barry Schwartz" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-02-09", + "popularity": 728, + "trending": 594, + "defaultSort": 736, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gowun Batang", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 8306004, + "subsets": [ + "menu", + "korean", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Yanghee Ryu" + ], + "lastModified": "2022-09-27", + "dateAdded": "2021-06-10", + "popularity": 1058, + "trending": 1618, + "defaultSort": 1041, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gowun Dodum", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 7229088, + "subsets": [ + "menu", + "korean", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Yanghee Ryu" + ], + "lastModified": "2022-09-27", + "dateAdded": "2021-06-10", + "popularity": 1023, + "trending": 1643, + "defaultSort": 1011, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Graduate", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [ + "Display" + ], + "size": 22732, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.139 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-03-14", + "popularity": 507, + "trending": 461, + "defaultSort": 513, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Grand Hotel", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 65012, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 5, + "lineHeight": 1.3583984375 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-11-30", + "popularity": 580, + "trending": 801, + "defaultSort": 589, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Grandiflora One", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Handwriting", + "Display" + ], + "size": 2342680, + "subsets": [ + "menu", + "korean", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Haesung Cho", + "JAMO" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-05-17", + "popularity": 1571, + "trending": 898, + "defaultSort": 707, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Kore", + "primaryLanguage": "" + }, + { + "family": "Grandstander", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 184074, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.9975 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.9975 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.9975 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.9975 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.9975 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.9975 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.9975 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.9975 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.9975 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.9975 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.9975 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.9975 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.9975 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.9975 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.9975 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.9975 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.9975 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.9975 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Tyler Finck", + "ETC" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-07-23", + "popularity": 527, + "trending": 886, + "defaultSort": 535, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Grape Nuts", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 122812, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.225 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-02-17", + "popularity": 1133, + "trending": 1264, + "defaultSort": 1112, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gravitas One", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 41448, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 1, + "width": 9, + "lineHeight": 1.27197265625 + } + }, + "axes": [], + "designers": [ + "Riccardo De Franceschi" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-06-29", + "popularity": 753, + "trending": 890, + "defaultSort": 759, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Great Vibes", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 156124, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 8, + "width": 5, + "lineHeight": 1.252 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-03-29", + "popularity": 186, + "trending": 790, + "defaultSort": 178, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Grechen Fuemen", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 136992, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.22 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-09-02", + "popularity": 1442, + "trending": 1548, + "defaultSort": 1382, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Grenze", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 101833, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + } + }, + "axes": [], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2023-05-02", + "dateAdded": "2018-09-18", + "popularity": 1236, + "trending": 595, + "defaultSort": 1203, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Grenze Gotisch", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 193492, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.48 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-05-17", + "popularity": 604, + "trending": 1147, + "defaultSort": 615, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Grey Qo", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 111544, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-09-02", + "popularity": 1494, + "trending": 1152, + "defaultSort": 1412, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Griffy", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 97366, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.3505859375 + } + }, + "axes": [], + "designers": [ + "Neapolitan" + ], + "lastModified": "2023-05-02", + "dateAdded": "2012-09-06", + "popularity": 1152, + "trending": 931, + "defaultSort": 1129, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gruppo", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 76204, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 7, + "lineHeight": 0.96630859375 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-08-25", + "dateAdded": "2010-12-20", + "popularity": 216, + "trending": 849, + "defaultSort": 210, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gudea", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 14187, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.236 + }, + "400i": { + "thickness": 4, + "slant": 4, + "width": 6, + "lineHeight": 1.236 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.236 + } + }, + "axes": [], + "designers": [ + "Agustina Mingote" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-01-18", + "popularity": 303, + "trending": 1425, + "defaultSort": 301, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gugi", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 990856, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "TAE System & Typefaces Co." + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-02-23", + "popularity": 674, + "trending": 218, + "defaultSort": 684, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gulzar", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 963496, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.7 + } + }, + "axes": [], + "designers": [ + "Borna Izadpanah", + "Fiona Ross", + "Alice Savoie", + "Simon Cozens" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-05-13", + "popularity": 1239, + "trending": 1759, + "defaultSort": 1205, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Gupter", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 52564, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.15 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.15 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.15 + } + }, + "axes": [], + "designers": [ + "Octavio Pardo" + ], + "lastModified": "2022-09-21", + "dateAdded": "2019-11-13", + "popularity": 1351, + "trending": 432, + "defaultSort": 1304, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gurajada", + "displayName": null, + "category": "Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 442756, + "subsets": [ + "menu", + "latin", + "telugu" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 4, + "lineHeight": 1.96635514018692 + } + }, + "axes": [], + "designers": [ + "Purushoth Kumar Guttula" + ], + "lastModified": "2023-08-25", + "dateAdded": "2015-01-08", + "popularity": 689, + "trending": 439, + "defaultSort": 698, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Gwendolyn", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 163988, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-11-02", + "popularity": 1394, + "trending": 1241, + "defaultSort": 1341, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Habibi", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 21968, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Magnus Gaarde" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-19", + "popularity": 1077, + "trending": 1025, + "defaultSort": 1060, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Hachi Maru Pop", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 4385624, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Nonty" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-12-14", + "popularity": 983, + "trending": 615, + "defaultSort": 972, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Hahmlet", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 3559144, + "subsets": [ + "menu", + "korean", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Hypertype" + ], + "lastModified": "2023-03-21", + "dateAdded": "2021-05-13", + "popularity": 665, + "trending": 352, + "defaultSort": 675, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Halant", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 294952, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.575 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.575 + }, + "500": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.575 + }, + "600": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.575 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.575 + } + }, + "axes": [], + "designers": [ + "Indian Type Foundry" + ], + "lastModified": "2023-05-02", + "dateAdded": "2014-08-27", + "popularity": 613, + "trending": 1242, + "defaultSort": 624, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Hammersmith One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 102884, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Nicole Fally" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-06-29", + "popularity": 321, + "trending": 837, + "defaultSort": 320, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Hanalei", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 89124, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 7, + "lineHeight": 1.30126953125 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-11-26", + "popularity": 1514, + "trending": 1356, + "defaultSort": 1426, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Hanalei Fill", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 38904, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.30126953125 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-05-02", + "dateAdded": "2012-11-26", + "popularity": 1296, + "trending": 1267, + "defaultSort": 1260, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Handjet", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 283912, + "subsets": [ + "menu", + "arabic", + "armenian", + "cyrillic", + "cyrillic-ext", + "greek", + "hebrew", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.11764705882353 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.11764705882353 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.11764705882353 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.11764705882353 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.11764705882353 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.11764705882353 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.11764705882353 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.11764705882353 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.11764705882353 + } + }, + "axes": [ + { + "tag": "ELGR", + "min": 1, + "max": 2, + "defaultValue": 1 + }, + { + "tag": "ELSH", + "min": 0, + "max": 16, + "defaultValue": 2 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Rosetta", + "David B\u0159ezina" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-07-20", + "popularity": 1384, + "trending": 1700, + "defaultSort": 234, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Handlee", + "displayName": null, + "category": "Handwriting", + "stroke": "Sans Serif", + "classifications": [ + "Handwriting" + ], + "size": 39132, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.335 + } + }, + "axes": [], + "designers": [ + "Joe Prince" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-13", + "popularity": 264, + "trending": 1668, + "defaultSort": 263, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Hanken Grotesk", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 136140, + "subsets": [ + "menu", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.303 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.303 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.303 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.303 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.303 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.303 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.303 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.303 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.303 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.303 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.303 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.303 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.303 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.303 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.303 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.303 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.303 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.303 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Alfredo Marco Pradil", + "Hanken Design Co." + ], + "lastModified": "2023-05-02", + "dateAdded": "2022-11-16", + "popularity": 589, + "trending": 1009, + "defaultSort": 597, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Hanuman", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 104915, + "subsets": [ + "menu", + "khmer", + "latin" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.46484375 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.46484375 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.46484375 + }, + "700": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.46484375 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.46484375 + } + }, + "axes": [], + "designers": [ + "Danh Hong" + ], + "lastModified": "2022-04-21", + "dateAdded": "2010-09-21", + "popularity": 538, + "trending": 1353, + "defaultSort": 549, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Happy Monkey", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 40103, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.205 + } + }, + "axes": [], + "designers": [ + "Brenda Gallo" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-03-14", + "popularity": 803, + "trending": 819, + "defaultSort": 801, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Harmattan", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 565835, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.70361328125 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.70361328125 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.70361328125 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.70361328125 + } + }, + "axes": [], + "designers": [ + "SIL International" + ], + "lastModified": "2023-05-23", + "dateAdded": "2020-07-02", + "popularity": 792, + "trending": 1031, + "defaultSort": 791, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Headland One", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 26762, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.25244140625 + } + }, + "axes": [], + "designers": [ + "Gary Lonergan" + ], + "lastModified": "2023-05-02", + "dateAdded": "2012-05-09", + "popularity": 709, + "trending": 1833, + "defaultSort": 718, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Heebo", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 98800, + "subsets": [ + "menu", + "hebrew", + "latin" + ], + "fonts": { + "100": { + "thickness": 1, + "slant": 1, + "width": 4, + "lineHeight": 1.46875 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.46875 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 4, + "lineHeight": 1.46875 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 4, + "lineHeight": 1.46875 + }, + "500": { + "thickness": 6, + "slant": 1, + "width": 4, + "lineHeight": 1.46875 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.46875 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 4, + "lineHeight": 1.46875 + }, + "800": { + "thickness": 9, + "slant": 1, + "width": 4, + "lineHeight": 1.46875 + }, + "900": { + "thickness": 8, + "slant": 1, + "width": 4, + "lineHeight": 1.46875 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Oded Ezer" + ], + "lastModified": "2023-09-14", + "dateAdded": "2016-06-15", + "popularity": 41, + "trending": 570, + "defaultSort": 40, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Henny Penny", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 59697, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.77197265625 + } + }, + "axes": [], + "designers": [ + "Brownfox" + ], + "lastModified": "2022-04-26", + "dateAdded": "2012-02-22", + "popularity": 575, + "trending": 642, + "defaultSort": 584, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Hepta Slab", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [], + "size": 555236, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "1": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.251 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.251 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.251 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.251 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.251 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.251 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.251 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.251 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.251 + } + }, + "axes": [ + { + "tag": "wght", + "min": 1, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Mike LaGattuta" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-09-19", + "popularity": 656, + "trending": 1202, + "defaultSort": 667, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Herr Von Muellerhoff", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 46624, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 9, + "width": 4, + "lineHeight": 1.422 + } + }, + "axes": [], + "designers": [ + "Sudtipos" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-30", + "popularity": 515, + "trending": 604, + "defaultSort": 520, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Hi Melody", + "displayName": null, + "category": "Handwriting", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 12623412, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "YoonDesign Inc" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-02-23", + "popularity": 683, + "trending": 96, + "defaultSort": 692, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Hina Mincho", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 6451924, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Satsuyako" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-04-14", + "popularity": 974, + "trending": 1258, + "defaultSort": 965, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Hind", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 286572, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.601 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.601 + }, + "500": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.601 + }, + "600": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.601 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.601 + } + }, + "axes": [], + "designers": [ + "Indian Type Foundry" + ], + "lastModified": "2022-09-21", + "dateAdded": "2014-06-25", + "popularity": 80, + "trending": 1411, + "defaultSort": 76, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Hind Guntur", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 323773, + "subsets": [ + "menu", + "latin", + "latin-ext", + "telugu" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.888 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.888 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.888 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.888 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.888 + } + }, + "axes": [], + "designers": [ + "Indian Type Foundry" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-06-15", + "popularity": 447, + "trending": 444, + "defaultSort": 449, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Hind Madurai", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 136848, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tamil" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.38 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.38 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.38 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.38 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.38 + } + }, + "axes": [], + "designers": [ + "Indian Type Foundry" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-06-15", + "popularity": 122, + "trending": 1472, + "defaultSort": 118, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Hind Siliguri", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 267262, + "subsets": [ + "menu", + "bengali", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.617 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.617 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.617 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.617 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.617 + } + }, + "axes": [], + "designers": [ + "Indian Type Foundry" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-06-15", + "popularity": 55, + "trending": 1218, + "defaultSort": 53, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Hind Vadodara", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 245245, + "subsets": [ + "menu", + "gujarati", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.498 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.498 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.498 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.498 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.498 + } + }, + "axes": [], + "designers": [ + "Indian Type Foundry" + ], + "lastModified": "2023-05-02", + "dateAdded": "2016-06-15", + "popularity": 296, + "trending": 285, + "defaultSort": 294, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Holtwood One SC", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [ + "Display" + ], + "size": 36744, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 1, + "width": 9, + "lineHeight": 1.62744140625 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-05-04", + "popularity": 437, + "trending": 1213, + "defaultSort": 441, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Homemade Apple", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 110004, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 6, + "width": 8, + "lineHeight": 2.1591796875 + } + }, + "axes": [], + "designers": [ + "Font Diner" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-01-06", + "popularity": 310, + "trending": 305, + "defaultSort": 308, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Homenaje", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 36436, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 5, + "lineHeight": 1.096 + } + }, + "axes": [], + "designers": [ + "Constanza Artigas Preller", + "Agustina Mingote" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-01-18", + "popularity": 618, + "trending": 152, + "defaultSort": 628, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Hubballi", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 187464, + "subsets": [ + "menu", + "kannada", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.956 + } + }, + "axes": [], + "designers": [ + "Erin McLaughlin" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-12-16", + "popularity": 1396, + "trending": 1378, + "defaultSort": 1343, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Hurricane", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 377368, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.38 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-10-07", + "popularity": 766, + "trending": 58, + "defaultSort": 770, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "IBM Plex Mono", + "displayName": null, + "category": "Monospace", + "stroke": null, + "classifications": [ + "Monospace" + ], + "size": 140956, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [], + "designers": [ + "Mike Abbink", + "Bold Monday" + ], + "lastModified": "2023-04-27", + "dateAdded": "2018-03-12", + "popularity": 98, + "trending": 988, + "defaultSort": 95, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "IBM Plex Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 185965, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [], + "designers": [ + "Mike Abbink", + "Bold Monday" + ], + "lastModified": "2023-05-02", + "dateAdded": "2018-03-11", + "popularity": 48, + "trending": 1441, + "defaultSort": 47, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "IBM Plex Sans Arabic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 241138, + "subsets": [ + "menu", + "arabic", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + } + }, + "axes": [], + "designers": [ + "Mike Abbink", + "Bold Monday" + ], + "lastModified": "2023-05-02", + "dateAdded": "2021-06-17", + "popularity": 127, + "trending": 1744, + "defaultSort": 121, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "IBM Plex Sans Condensed", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 114858, + "subsets": [ + "menu", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [], + "designers": [ + "Mike Abbink", + "Bold Monday" + ], + "lastModified": "2023-04-27", + "dateAdded": "2018-03-12", + "popularity": 247, + "trending": 1039, + "defaultSort": 243, + "androidFragment": "name=IBM Plex Sans&width=75.0", + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "IBM Plex Sans Devanagari", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 355786, + "subsets": [ + "menu", + "cyrillic-ext", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.53 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.53 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.53 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.53 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.53 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.53 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.53 + } + }, + "axes": [], + "designers": [ + "Mike Abbink", + "Bold Monday" + ], + "lastModified": "2023-05-02", + "dateAdded": "2021-06-18", + "popularity": 931, + "trending": 277, + "defaultSort": 923, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Deva", + "primaryLanguage": "" + }, + { + "family": "IBM Plex Sans Hebrew", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 97738, + "subsets": [ + "menu", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [], + "designers": [ + "Mike Abbink", + "Bold Monday" + ], + "lastModified": "2023-04-27", + "dateAdded": "2021-06-18", + "popularity": 1221, + "trending": 1029, + "defaultSort": 1190, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Hebr", + "primaryLanguage": "" + }, + { + "family": "IBM Plex Sans JP", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 2400371, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + } + }, + "axes": [], + "designers": [ + "Mike Abbink", + "Bold Monday" + ], + "lastModified": "2023-04-27", + "dateAdded": "2022-09-11", + "popularity": 906, + "trending": 378, + "defaultSort": 895, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Jpan", + "primaryLanguage": "" + }, + { + "family": "IBM Plex Sans KR", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 2796901, + "subsets": [ + "menu", + "korean", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + } + }, + "axes": [], + "designers": [ + "Mike Abbink", + "Bold Monday" + ], + "lastModified": "2023-04-27", + "dateAdded": "2021-06-18", + "popularity": 626, + "trending": 1487, + "defaultSort": 636, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Kore", + "primaryLanguage": "" + }, + { + "family": "IBM Plex Sans Thai", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 117789, + "subsets": [ + "menu", + "cyrillic-ext", + "latin", + "latin-ext", + "thai" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.65 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.65 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.65 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.65 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.65 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.65 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.65 + } + }, + "axes": [], + "designers": [ + "Mike Abbink", + "Bold Monday" + ], + "lastModified": "2023-04-27", + "dateAdded": "2021-06-18", + "popularity": 511, + "trending": 344, + "defaultSort": 516, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Thai", + "primaryLanguage": "" + }, + { + "family": "IBM Plex Sans Thai Looped", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 126189, + "subsets": [ + "menu", + "cyrillic-ext", + "latin", + "latin-ext", + "thai" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.65 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.65 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.65 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.65 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.65 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.65 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.65 + } + }, + "axes": [], + "designers": [ + "Mike Abbink", + "Bold Monday" + ], + "lastModified": "2023-05-02", + "dateAdded": "2021-06-18", + "popularity": 1011, + "trending": 1392, + "defaultSort": 998, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Thai", + "primaryLanguage": "" + }, + { + "family": "IBM Plex Serif", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 167765, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [], + "designers": [ + "Mike Abbink", + "Bold Monday" + ], + "lastModified": "2023-04-27", + "dateAdded": "2018-03-11", + "popularity": 140, + "trending": 773, + "defaultSort": 134, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "IM Fell DW Pica", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 124462, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.25 + }, + "400i": { + "thickness": 4, + "slant": 7, + "width": 6, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Igino Marini" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-05-17", + "popularity": 629, + "trending": 1060, + "defaultSort": 638, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "IM Fell DW Pica SC", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 112595, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Igino Marini" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-05-17", + "popularity": 1231, + "trending": 239, + "defaultSort": 1199, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "IM Fell Double Pica", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 120725, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.25341796875 + }, + "400i": { + "thickness": 5, + "slant": 6, + "width": 6, + "lineHeight": 1.25341796875 + } + }, + "axes": [], + "designers": [ + "Igino Marini" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-05-17", + "popularity": 957, + "trending": 407, + "defaultSort": 948, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "IM Fell Double Pica SC", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 111273, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.25341796875 + } + }, + "axes": [], + "designers": [ + "Igino Marini" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-05-17", + "popularity": 1369, + "trending": 405, + "defaultSort": 1319, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "IM Fell English", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 118208, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.2685546875 + }, + "400i": { + "thickness": 5, + "slant": 6, + "width": 6, + "lineHeight": 1.2685546875 + } + }, + "axes": [], + "designers": [ + "Igino Marini" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-05-17", + "popularity": 619, + "trending": 496, + "defaultSort": 629, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "IM Fell English SC", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 110116, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.2685546875 + } + }, + "axes": [], + "designers": [ + "Igino Marini" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-05-17", + "popularity": 594, + "trending": 269, + "defaultSort": 602, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "IM Fell French Canon", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 85439, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.1708984375 + }, + "400i": { + "thickness": 5, + "slant": 7, + "width": 6, + "lineHeight": 1.1708984375 + } + }, + "axes": [], + "designers": [ + "Igino Marini" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-05-17", + "popularity": 925, + "trending": 960, + "defaultSort": 915, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "IM Fell French Canon SC", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 78513, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.1708984375 + } + }, + "axes": [], + "designers": [ + "Igino Marini" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-05-17", + "popularity": 1247, + "trending": 257, + "defaultSort": 1211, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "IM Fell Great Primer", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 124052, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 2, + "width": 6, + "lineHeight": 1.22265625 + }, + "400i": { + "thickness": 5, + "slant": 6, + "width": 6, + "lineHeight": 1.22265625 + } + }, + "axes": [], + "designers": [ + "Igino Marini" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-05-17", + "popularity": 1137, + "trending": 1235, + "defaultSort": 1116, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "IM Fell Great Primer SC", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 115605, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.22265625 + } + }, + "axes": [], + "designers": [ + "Igino Marini" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-05-17", + "popularity": 1308, + "trending": 1712, + "defaultSort": 1270, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ibarra Real Nova", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 117214, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Jos\u00E9 Mar\u00EDa Ribagorda", + "Octavio Pardo" + ], + "lastModified": "2023-08-25", + "dateAdded": "2019-11-04", + "popularity": 739, + "trending": 132, + "defaultSort": 746, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Iceberg", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 42808, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.22 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-01-25", + "popularity": 1068, + "trending": 1261, + "defaultSort": 1051, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Iceland", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 47632, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 0.97 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-23", + "popularity": 1030, + "trending": 865, + "defaultSort": 1018, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Imbue", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 220012, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "opsz", + "min": 10, + "max": 100, + "defaultValue": 10 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Tyler Finck", + "ETC" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-12-02", + "popularity": 1232, + "trending": 1826, + "defaultSort": 1200, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Imperial Script", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 154824, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.21 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-11-18", + "popularity": 1352, + "trending": 319, + "defaultSort": 1305, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Imprima", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 55692, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.158 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-03-21", + "dateAdded": "2012-03-14", + "popularity": 924, + "trending": 1506, + "defaultSort": 914, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Inclusive Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 58112, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Olivia King" + ], + "lastModified": "2023-09-13", + "dateAdded": "2023-09-12", + "popularity": 1204, + "trending": 14, + "defaultSort": 68, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Zinh", + "primaryLanguage": "" + }, + { + "family": "Inconsolata", + "displayName": null, + "category": "Monospace", + "stroke": null, + "classifications": [ + "Monospace" + ], + "size": 347180, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.049 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.049 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.049 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.049 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.049 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.049 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.049 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.049 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 50, + "max": 200, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 200, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Raph Levien" + ], + "lastModified": "2023-09-14", + "dateAdded": "2010-02-19", + "popularity": 51, + "trending": 1342, + "defaultSort": 50, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Inder", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 20318, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Sorkin Type" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-19", + "popularity": 724, + "trending": 736, + "defaultSort": 732, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Indie Flower", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 108196, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.458984375 + } + }, + "axes": [], + "designers": [ + "Kimberly Geswein" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-03-09", + "popularity": 128, + "trending": 517, + "defaultSort": 122, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ingrid Darling", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 159820, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-03-11", + "popularity": 1592, + "trending": 1311, + "defaultSort": 1473, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Inika", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 21019, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.303 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.303 + } + }, + "axes": [], + "designers": [ + "Constanza Artigas" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-01-11", + "popularity": 1188, + "trending": 1176, + "defaultSort": 1164, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Inknut Antiqua", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 397792, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 2.579 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 2.579 + }, + "500": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 2.579 + }, + "600": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 2.579 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 2.579 + }, + "800": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 2.579 + }, + "900": { + "thickness": 7, + "slant": 1, + "width": 9, + "lineHeight": 2.579 + } + }, + "axes": [], + "designers": [ + "Claus Eggers S\u00F8rensen" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-05-20", + "popularity": 835, + "trending": 1245, + "defaultSort": 829, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Inria Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 85028, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.199 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.199 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.199 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.199 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.199 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.199 + } + }, + "axes": [], + "designers": [ + "Gr\u00E9gori Vincens", + "J\u00E9r\u00E9mie Hornus" + ], + "lastModified": "2022-09-21", + "dateAdded": "2019-12-05", + "popularity": 703, + "trending": 22, + "defaultSort": 169, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Inria Serif", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 100073, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.199 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.199 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.199 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.199 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.199 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.199 + } + }, + "axes": [], + "designers": [ + "Gr\u00E9gori Vincens", + "J\u00E9r\u00E9mie Hornus" + ], + "lastModified": "2023-08-25", + "dateAdded": "2019-12-05", + "popularity": 940, + "trending": 498, + "defaultSort": 931, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Inspiration", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 162296, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.27 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-11-26", + "popularity": 1267, + "trending": 1761, + "defaultSort": 1230, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Instrument Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 198232, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.22 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.22 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.22 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.22 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.22 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.22 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.22 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.22 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Rodrigo Fuenzalida", + "Jordan Egstad" + ], + "lastModified": "2023-05-09", + "dateAdded": "2023-05-08", + "popularity": 1012, + "trending": 47, + "defaultSort": 694, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Instrument Serif", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 70802, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [], + "designers": [ + "Rodrigo Fuenzalida", + "Jordan Egstad" + ], + "lastModified": "2023-05-23", + "dateAdded": "2023-03-21", + "popularity": 1065, + "trending": 101, + "defaultSort": 947, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Inter", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 805528, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.21022727272727 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.21022727272727 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.21022727272727 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.21022727272727 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.21022727272727 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.21022727272727 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.21022727272727 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.21022727272727 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.21022727272727 + } + }, + "axes": [ + { + "tag": "slnt", + "min": -10, + "max": 0, + "defaultValue": 0 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Rasmus Andersson" + ], + "lastModified": "2023-09-14", + "dateAdded": "2020-01-24", + "popularity": 12, + "trending": 789, + "defaultSort": 13, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Inter Tight", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 587716, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2099609375 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2099609375 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2099609375 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2099609375 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2099609375 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2099609375 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2099609375 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2099609375 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2099609375 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2099609375 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2099609375 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2099609375 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2099609375 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2099609375 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2099609375 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2099609375 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2099609375 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2099609375 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Rasmus Andersson" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-07-22", + "popularity": 304, + "trending": 1408, + "defaultSort": 302, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Irish Grover", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 52648, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.208984375 + } + }, + "axes": [], + "designers": [ + "Sideshow" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-03-16", + "popularity": 584, + "trending": 318, + "defaultSort": 593, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Island Moments", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 615340, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.15 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-11-18", + "popularity": 1398, + "trending": 109, + "defaultSort": 1345, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Istok Web", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 244030, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.439453125 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.439453125 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.439453125 + }, + "700i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.439453125 + } + }, + "axes": [], + "designers": [ + "Andrey V. Panov" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-07-13", + "popularity": 345, + "trending": 889, + "defaultSort": 343, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Italiana", + "displayName": null, + "category": "Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 31828, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.178 + } + }, + "axes": [], + "designers": [ + "Santiago Orozco" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-03-14", + "popularity": 643, + "trending": 116, + "defaultSort": 654, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Italianno", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 223708, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 8, + "width": 4, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-05-02", + "dateAdded": "2011-12-19", + "popularity": 392, + "trending": 951, + "defaultSort": 395, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Itim", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 371384, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 4, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2023-08-25", + "dateAdded": "2015-07-01", + "popularity": 259, + "trending": 224, + "defaultSort": 256, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Jacques Francois", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 60448, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.31884765625 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-09-07", + "popularity": 1233, + "trending": 78, + "defaultSort": 1201, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Jacques Francois Shadow", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 82492, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.31884765625 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-09-07", + "popularity": 1203, + "trending": 1482, + "defaultSort": 1176, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Jaldi", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 175808, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 4, + "lineHeight": 1.68994140625 + }, + "700": { + "thickness": 8, + "slant": 1, + "width": 4, + "lineHeight": 1.68994140625 + } + }, + "axes": [], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-04-22", + "popularity": 414, + "trending": 105, + "defaultSort": 418, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "JetBrains Mono", + "displayName": null, + "category": "Monospace", + "stroke": null, + "classifications": [ + "Monospace" + ], + "size": 189382, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "JetBrains", + "Philipp Nurullin", + "Konstantin Bulenkov" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-11-18", + "popularity": 418, + "trending": 84, + "defaultSort": 423, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Jim Nightshade", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 83742, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 4, + "width": 5, + "lineHeight": 1.4169921875 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-01-04", + "popularity": 1255, + "trending": 782, + "defaultSort": 1219, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Joan", + "displayName": null, + "category": "Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 393476, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.292 + } + }, + "axes": [], + "designers": [ + "Paolo Biagini" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-04-28", + "popularity": 1181, + "trending": 578, + "defaultSort": 1157, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Jockey One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 48608, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.398 + } + }, + "axes": [], + "designers": [ + "TypeTogether" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-10-26", + "popularity": 605, + "trending": 307, + "defaultSort": 616, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Jolly Lodger", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 24196, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 2, + "lineHeight": 1.2158203125 + } + }, + "axes": [], + "designers": [ + "Font Diner" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-03-14", + "popularity": 1046, + "trending": 192, + "defaultSort": 1031, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Jomhuria", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 172276, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 1, + "width": 3, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "KB Studio" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-06-15", + "popularity": 796, + "trending": 336, + "defaultSort": 795, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Jomolhari", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 2260860, + "subsets": [ + "menu", + "latin", + "tibetan" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6015625 + } + }, + "axes": [], + "designers": [ + "Christopher J. Fynn" + ], + "lastModified": "2023-08-25", + "dateAdded": "2019-09-10", + "popularity": 932, + "trending": 65, + "defaultSort": 924, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Josefin Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 124786, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": 1, + "slant": 1, + "width": 6, + "lineHeight": 1 + }, + "100i": { + "thickness": 1, + "slant": 4, + "width": 6, + "lineHeight": 1 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 6, + "lineHeight": 1 + }, + "300i": { + "thickness": 3, + "slant": 3, + "width": 6, + "lineHeight": 1 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1 + }, + "400i": { + "thickness": 4, + "slant": 3, + "width": 6, + "lineHeight": 1 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "600": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1 + }, + "600i": { + "thickness": 5, + "slant": 3, + "width": 6, + "lineHeight": 1 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1 + }, + "700i": { + "thickness": 6, + "slant": 3, + "width": 6, + "lineHeight": 1 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Santiago Orozco" + ], + "lastModified": "2023-08-25", + "dateAdded": "2010-11-17", + "popularity": 52, + "trending": 814, + "defaultSort": 51, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Josefin Slab", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [ + "Display" + ], + "size": 38448, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "100": { + "thickness": 1, + "slant": 1, + "width": 7, + "lineHeight": 1 + }, + "100i": { + "thickness": 1, + "slant": 1, + "width": 7, + "lineHeight": 1 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "300": { + "thickness": 1, + "slant": 1, + "width": 7, + "lineHeight": 1 + }, + "300i": { + "thickness": 1, + "slant": 4, + "width": 7, + "lineHeight": 1 + }, + "400": { + "thickness": 3, + "slant": 1, + "width": 7, + "lineHeight": 1 + }, + "400i": { + "thickness": 3, + "slant": 3, + "width": 7, + "lineHeight": 1 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "600": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1 + }, + "600i": { + "thickness": 4, + "slant": 3, + "width": 7, + "lineHeight": 1 + }, + "700": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1 + }, + "700i": { + "thickness": 4, + "slant": 3, + "width": 7, + "lineHeight": 1 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Santiago Orozco" + ], + "lastModified": "2023-08-25", + "dateAdded": "2010-11-17", + "popularity": 214, + "trending": 457, + "defaultSort": 208, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Jost", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 139692, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Owen Earl" + ], + "lastModified": "2023-09-14", + "dateAdded": "2020-02-11", + "popularity": 78, + "trending": 348, + "defaultSort": 74, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Joti One", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 58384, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.334 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-10-31", + "popularity": 1219, + "trending": 1514, + "defaultSort": 1188, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Jua", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 2106004, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Woowahan Brothers" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-02-24", + "popularity": 512, + "trending": 1632, + "defaultSort": 517, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Judson", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 100370, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.15 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.172 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.163 + } + }, + "axes": [], + "designers": [ + "Daniel Johnson" + ], + "lastModified": "2023-05-02", + "dateAdded": "2011-05-04", + "popularity": 607, + "trending": 1236, + "defaultSort": 618, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Julee", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 66776, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.178 + } + }, + "axes": [], + "designers": [ + "Juli\u00E1n Tunni" + ], + "lastModified": "2023-04-27", + "dateAdded": "2011-09-07", + "popularity": 435, + "trending": 638, + "defaultSort": 439, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Julius Sans One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 42288, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 8, + "lineHeight": 1.091 + } + }, + "axes": [], + "designers": [ + "Luciano Vergara" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-10-05", + "popularity": 409, + "trending": 1535, + "defaultSort": 412, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Junge", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Handwriting" + ], + "size": 71400, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.21533203125 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-01-18", + "popularity": 1217, + "trending": 589, + "defaultSort": 1187, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Jura", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 258404, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "kayah-li", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": 3, + "slant": 1, + "width": 7, + "lineHeight": 1.183 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.183 + }, + "500": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.183 + }, + "600": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.183 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.183 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Daniel Johnson", + "Cyreal" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-05-18", + "popularity": 351, + "trending": 514, + "defaultSort": 351, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Just Another Hand", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 191076, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 1, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-12-20", + "popularity": 466, + "trending": 86, + "defaultSort": 468, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Just Me Again Down Here", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 36244, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 5, + "lineHeight": 1.498 + } + }, + "axes": [], + "designers": [ + "Kimberly Geswein" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-12-07", + "popularity": 941, + "trending": 1162, + "defaultSort": 932, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "K2D", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 98513, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-09-10", + "popularity": 450, + "trending": 1121, + "defaultSort": 452, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kablammo", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 2209224, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.292 + } + }, + "axes": [ + { + "tag": "MORF", + "min": 0, + "max": 60, + "defaultValue": 0 + } + ], + "designers": [ + "Vectro Type Foundry", + "Travis Kochel", + "Lizy Gershenzon", + "Daria Cohen", + "Ethan Cohen" + ], + "lastModified": "2023-06-08", + "dateAdded": "2023-06-06", + "popularity": 1493, + "trending": 1709, + "defaultSort": 576, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kadwa", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 96645, + "subsets": [ + "menu", + "devanagari", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 5, + "lineHeight": 2.0078125 + }, + "700": { + "thickness": 9, + "slant": 1, + "width": 5, + "lineHeight": 2.0078125 + } + }, + "axes": [], + "designers": [ + "Sol Matas" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-06-17", + "popularity": 702, + "trending": 333, + "defaultSort": 713, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kaisei Decol", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 4362606, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Font-Kai" + ], + "lastModified": "2022-09-27", + "dateAdded": "2021-05-21", + "popularity": 711, + "trending": 1536, + "defaultSort": 720, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kaisei HarunoUmi", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 4430161, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Font-Kai" + ], + "lastModified": "2022-09-27", + "dateAdded": "2021-05-21", + "popularity": 1112, + "trending": 426, + "defaultSort": 1094, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kaisei Opti", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 4362830, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Font-Kai" + ], + "lastModified": "2022-09-27", + "dateAdded": "2021-05-21", + "popularity": 758, + "trending": 37, + "defaultSort": 460, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kaisei Tokumin", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 4469844, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Font-Kai" + ], + "lastModified": "2022-09-27", + "dateAdded": "2021-05-21", + "popularity": 872, + "trending": 421, + "defaultSort": 861, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kalam", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 191146, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": 4, + "slant": 5, + "width": 7, + "lineHeight": 1.594 + }, + "400": { + "thickness": 5, + "slant": 5, + "width": 7, + "lineHeight": 1.594 + }, + "700": { + "thickness": 6, + "slant": 5, + "width": 7, + "lineHeight": 1.594 + } + }, + "axes": [], + "designers": [ + "Indian Type Foundry" + ], + "lastModified": "2022-09-21", + "dateAdded": "2014-10-17", + "popularity": 173, + "trending": 1204, + "defaultSort": 165, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kameron", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [], + "size": 83064, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.18701171875 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.18701171875 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.18701171875 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.18701171875 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-09-27", + "dateAdded": "2011-06-08", + "popularity": 612, + "trending": 399, + "defaultSort": 623, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kanit", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 174512, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": 1, + "slant": 1, + "width": 4, + "lineHeight": 1.495 + }, + "100i": { + "thickness": 1, + "slant": 5, + "width": 4, + "lineHeight": 1.495 + }, + "200": { + "thickness": 2, + "slant": 1, + "width": 4, + "lineHeight": 1.495 + }, + "200i": { + "thickness": 2, + "slant": 5, + "width": 4, + "lineHeight": 1.495 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 4, + "lineHeight": 1.495 + }, + "300i": { + "thickness": 3, + "slant": 5, + "width": 4, + "lineHeight": 1.495 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 4, + "lineHeight": 1.495 + }, + "400i": { + "thickness": 4, + "slant": 5, + "width": 4, + "lineHeight": 1.495 + }, + "500": { + "thickness": 5, + "slant": 1, + "width": 4, + "lineHeight": 1.495 + }, + "500i": { + "thickness": 5, + "slant": 5, + "width": 4, + "lineHeight": 1.495 + }, + "600": { + "thickness": 6, + "slant": 1, + "width": 4, + "lineHeight": 1.495 + }, + "600i": { + "thickness": 6, + "slant": 5, + "width": 4, + "lineHeight": 1.495 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 4, + "lineHeight": 1.495 + }, + "700i": { + "thickness": 7, + "slant": 5, + "width": 4, + "lineHeight": 1.495 + }, + "800": { + "thickness": 8, + "slant": 1, + "width": 4, + "lineHeight": 1.495 + }, + "800i": { + "thickness": 8, + "slant": 5, + "width": 4, + "lineHeight": 1.495 + }, + "900": { + "thickness": 9, + "slant": 1, + "width": 4, + "lineHeight": 1.495 + }, + "900i": { + "thickness": 9, + "slant": 5, + "width": 4, + "lineHeight": 1.495 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2023-07-24", + "dateAdded": "2015-12-07", + "popularity": 29, + "trending": 805, + "defaultSort": 29, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kantumruy Pro", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 210094, + "subsets": [ + "menu", + "khmer", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.18 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.18 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.18 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.18 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.18 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.18 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.18 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.18 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.18 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.18 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.18 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.18 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.18 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.18 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Tep Sovichet", + "Wei Huang" + ], + "lastModified": "2023-03-21", + "dateAdded": "2022-05-12", + "popularity": 1128, + "trending": 349, + "defaultSort": 1108, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Karantina", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 50662, + "subsets": [ + "menu", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.012 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.012 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.012 + } + }, + "axes": [], + "designers": [ + "Rony Koch" + ], + "lastModified": "2022-09-21", + "dateAdded": "2021-03-11", + "popularity": 1088, + "trending": 1630, + "defaultSort": 1070, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Karla", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 95132, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.169 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.169 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.169 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.169 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.169 + }, + "400i": { + "thickness": 4, + "slant": 2, + "width": 6, + "lineHeight": 1.169 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.169 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.169 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.169 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.169 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.169 + }, + "700i": { + "thickness": 6, + "slant": 2, + "width": 7, + "lineHeight": 1.169 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.169 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.169 + } + }, + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Jonny Pinhorn" + ], + "lastModified": "2023-09-27", + "dateAdded": "2012-03-14", + "popularity": 50, + "trending": 912, + "defaultSort": 49, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Karma", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 334681, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.419 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.453 + }, + "500": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.493 + }, + "600": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.544 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.628 + } + }, + "axes": [], + "designers": [ + "Indian Type Foundry" + ], + "lastModified": "2022-09-21", + "dateAdded": "2014-06-25", + "popularity": 380, + "trending": 173, + "defaultSort": 381, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Katibeh", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 189124, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 3, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "KB Studio" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-06-15", + "popularity": 887, + "trending": 429, + "defaultSort": 879, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kaushan Script", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 210672, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 7, + "width": 6, + "lineHeight": 1.451 + } + }, + "axes": [], + "designers": [ + "Impallari Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-01-25", + "popularity": 204, + "trending": 486, + "defaultSort": 197, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kavivanar", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 66324, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tamil" + ], + "fonts": { + "400": { + "thickness": 2, + "slant": 1, + "width": 3, + "lineHeight": 1.482 + } + }, + "axes": [], + "designers": [ + "Tharique Azeez" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-06-20", + "popularity": 1153, + "trending": 438, + "defaultSort": 1131, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kavoon", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 71476, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 1, + "width": 8, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Viktoriya Grabowska" + ], + "lastModified": "2023-08-25", + "dateAdded": "2013-01-23", + "popularity": 1195, + "trending": 1088, + "defaultSort": 1170, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kdam Thmor Pro", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 85760, + "subsets": [ + "menu", + "khmer", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.546 + } + }, + "axes": [], + "designers": [ + "Tep Sovichet", + "Hak Longdey" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-05-11", + "popularity": 1297, + "trending": 254, + "defaultSort": 1261, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Keania One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 38812, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.217 + } + }, + "axes": [], + "designers": [ + "Julia Petretta" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-10-31", + "popularity": 1170, + "trending": 304, + "defaultSort": 1146, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kelly Slab", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 77816, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.212 + } + }, + "axes": [], + "designers": [ + "Denis Masharov" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-07-27", + "popularity": 996, + "trending": 1734, + "defaultSort": 984, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kenia", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 65156, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Julia Petretta" + ], + "lastModified": "2023-08-25", + "dateAdded": "2010-12-15", + "popularity": 1305, + "trending": 66, + "defaultSort": 1115, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Khand", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 332096, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.529 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.529 + }, + "500": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.529 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.529 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.529 + } + }, + "axes": [], + "designers": [ + "Indian Type Foundry" + ], + "lastModified": "2022-12-07", + "dateAdded": "2014-07-14", + "popularity": 210, + "trending": 270, + "defaultSort": 204, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Khmer", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 77684, + "subsets": [ + "menu", + "khmer" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.708984375 + } + }, + "axes": [], + "designers": [ + "Danh Hong" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-03-02", + "popularity": 1104, + "trending": 1470, + "defaultSort": 1086, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Khula", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 158814, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": 3, + "slant": 1, + "width": 7, + "lineHeight": 1.6056622851365 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.6056622851365 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6056622851365 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.6056622851365 + }, + "800": { + "thickness": 8, + "slant": 1, + "width": 8, + "lineHeight": 1.6056622851365 + } + }, + "axes": [], + "designers": [ + "Erin McLaughlin" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-01-28", + "popularity": 377, + "trending": 940, + "defaultSort": 378, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kings", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 270704, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-10-21", + "popularity": 1546, + "trending": 1560, + "defaultSort": 1446, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kirang Haerang", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 5979324, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Woowahan Brothers" + ], + "lastModified": "2022-09-27", + "dateAdded": "2018-02-24", + "popularity": 1210, + "trending": 877, + "defaultSort": 1181, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kite One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 67692, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 4, + "width": 7, + "lineHeight": 1.445 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-03-21", + "dateAdded": "2012-10-26", + "popularity": 804, + "trending": 436, + "defaultSort": 802, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kiwi Maru", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 5057289, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Hiroki-Chan" + ], + "lastModified": "2022-09-27", + "dateAdded": "2020-12-14", + "popularity": 484, + "trending": 908, + "defaultSort": 487, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Klee One", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 8814666, + "subsets": [ + "menu", + "cyrillic", + "greek-ext", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Fontworks Inc." + ], + "lastModified": "2022-09-27", + "dateAdded": "2021-06-08", + "popularity": 651, + "trending": 1615, + "defaultSort": 662, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Knewave", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 21718, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 7, + "width": 7, + "lineHeight": 1.554 + } + }, + "axes": [], + "designers": [ + "Tyler Finck" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-11-23", + "popularity": 533, + "trending": 574, + "defaultSort": 542, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "KoHo", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 97959, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2022-09-21", + "dateAdded": "2018-09-10", + "popularity": 748, + "trending": 1230, + "defaultSort": 755, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kodchasan", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 103138, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2023-05-02", + "dateAdded": "2018-09-10", + "popularity": 747, + "trending": 1016, + "defaultSort": 754, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Koh Santepheap", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 162697, + "subsets": [ + "menu", + "khmer", + "latin" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26953125 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26953125 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26953125 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26953125 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26953125 + } + }, + "axes": [], + "designers": [ + "Danh Hong" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-06-10", + "popularity": 1410, + "trending": 331, + "defaultSort": 1356, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kolker Brush", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 268272, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-11-26", + "popularity": 1474, + "trending": 1252, + "defaultSort": 1402, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Konkhmer Sleokchher", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 1834832, + "subsets": [ + "menu", + "khmer", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.806640625 + } + }, + "axes": [], + "designers": [ + "Suon May Sophanith" + ], + "lastModified": "2023-04-27", + "dateAdded": "2023-04-26", + "popularity": 1531, + "trending": 1767, + "defaultSort": 794, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Khmr", + "primaryLanguage": "" + }, + { + "family": "Kosugi", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 2288848, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "MOTOYA" + ], + "lastModified": "2023-05-02", + "dateAdded": "2016-01-21", + "popularity": 561, + "trending": 334, + "defaultSort": 571, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kosugi Maru", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 3565716, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "MOTOYA" + ], + "lastModified": "2022-09-27", + "dateAdded": "2016-01-21", + "popularity": 281, + "trending": 1184, + "defaultSort": 278, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kotta One", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 17086, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 3, + "width": 7, + "lineHeight": 1.203 + } + }, + "axes": [], + "designers": [ + "Ania Kruk" + ], + "lastModified": "2022-04-26", + "dateAdded": "2012-01-25", + "popularity": 958, + "trending": 181, + "defaultSort": 949, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Koulen", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 56324, + "subsets": [ + "menu", + "khmer", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.806640625 + } + }, + "axes": [], + "designers": [ + "Danh Hong" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-03-02", + "popularity": 397, + "trending": 769, + "defaultSort": 401, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kranky", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 199284, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 7, + "lineHeight": 1.2685546875 + } + }, + "axes": [], + "designers": [ + "Sideshow" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-01-06", + "popularity": 933, + "trending": 1354, + "defaultSort": 925, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kreon", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 79176, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.26 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.26 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.26 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Julia Petretta" + ], + "lastModified": "2023-03-21", + "dateAdded": "2011-02-02", + "popularity": 457, + "trending": 1082, + "defaultSort": 459, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kristi", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 47440, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 7, + "width": 1, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Birgit Pulk" + ], + "lastModified": "2023-08-25", + "dateAdded": "2010-12-20", + "popularity": 573, + "trending": 497, + "defaultSort": 583, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Krona One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 20960, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 9, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Yvonne Sch\u00FCttler" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-02-22", + "popularity": 491, + "trending": 1334, + "defaultSort": 496, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Krub", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 91507, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2022-09-21", + "dateAdded": "2018-09-10", + "popularity": 387, + "trending": 456, + "defaultSort": 390, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kufam", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 433056, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Original Type", + "Wael Morcos", + "Artur Schmal" + ], + "lastModified": "2023-09-14", + "dateAdded": "2020-07-14", + "popularity": 586, + "trending": 31, + "defaultSort": 333, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kulim Park", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 61847, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.135 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.135 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.135 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.135 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.135 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.135 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.135 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.135 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.135 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.135 + } + }, + "axes": [], + "designers": [ + "Dale Sattler" + ], + "lastModified": "2022-09-21", + "dateAdded": "2019-09-25", + "popularity": 1050, + "trending": 1007, + "defaultSort": 1035, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kumar One", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 95852, + "subsets": [ + "menu", + "gujarati", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.779 + } + }, + "axes": [], + "designers": [ + "Indian Type Foundry" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-06-15", + "popularity": 1224, + "trending": 1468, + "defaultSort": 1192, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kumar One Outline", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 128948, + "subsets": [ + "menu", + "gujarati", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.779 + } + }, + "axes": [], + "designers": [ + "Indian Type Foundry" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-06-15", + "popularity": 1269, + "trending": 1491, + "defaultSort": 1232, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kumbh Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 164284, + "subsets": [ + "menu", + "latin", + "latin-ext", + "math" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.240234375 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.240234375 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.240234375 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.240234375 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.240234375 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.240234375 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.240234375 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.240234375 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.240234375 + } + }, + "axes": [ + { + "tag": "YOPQ", + "min": 40, + "max": 300, + "defaultValue": 300 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Saurabh Sharma" + ], + "lastModified": "2023-03-21", + "dateAdded": "2020-07-22", + "popularity": 344, + "trending": 177, + "defaultSort": 342, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Kurale", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 250224, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 3, + "lineHeight": 1.478 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-05-14", + "popularity": 537, + "trending": 1164, + "defaultSort": 548, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "La Belle Aurore", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 59364, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 8, + "width": 7, + "lineHeight": 1.8525390625 + } + }, + "axes": [], + "designers": [ + "Kimberly Geswein" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-06-08", + "popularity": 529, + "trending": 764, + "defaultSort": 538, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Labrada", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 170442, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.445 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Mercedes J\u00E1uregui", + "Omnibus-Type" + ], + "lastModified": "2023-03-09", + "dateAdded": "2023-01-18", + "popularity": 1215, + "trending": 150, + "defaultSort": 1006, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lacquer", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 294060, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Niki Polyocan", + "Eli Block" + ], + "lastModified": "2022-09-21", + "dateAdded": "2019-07-03", + "popularity": 1335, + "trending": 581, + "defaultSort": 1291, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Laila", + "displayName": null, + "category": "Sans Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 349949, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.55 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.55 + }, + "500": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.55 + }, + "600": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.55 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.55 + } + }, + "axes": [], + "designers": [ + "Indian Type Foundry" + ], + "lastModified": "2023-08-25", + "dateAdded": "2014-08-27", + "popularity": 332, + "trending": 267, + "defaultSort": 330, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lakki Reddy", + "displayName": null, + "category": "Handwriting", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 583032, + "subsets": [ + "menu", + "latin", + "telugu" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.6630859375 + } + }, + "axes": [], + "designers": [ + "Appaji Ambarisha Darbha" + ], + "lastModified": "2023-08-25", + "dateAdded": "2015-01-12", + "popularity": 1220, + "trending": 528, + "defaultSort": 1189, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lalezar", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 292656, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.567 + } + }, + "axes": [], + "designers": [ + "Borna Izadpanah" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-06-15", + "popularity": 324, + "trending": 190, + "defaultSort": 323, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lancelot", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 48940, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.10498046875 + } + }, + "axes": [], + "designers": [ + "Marion Kadi" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-02", + "popularity": 1226, + "trending": 977, + "defaultSort": 1194, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Langar", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 192308, + "subsets": [ + "menu", + "gurmukhi", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.394 + } + }, + "axes": [], + "designers": [ + "Typeland", + "Alessia Mazzarella" + ], + "lastModified": "2023-05-02", + "dateAdded": "2016-06-15", + "popularity": 1342, + "trending": 1338, + "defaultSort": 1297, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lateef", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 205642, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.44580078125 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.44580078125 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 5, + "lineHeight": 1.44580078125 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.44580078125 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.44580078125 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.44580078125 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.44580078125 + } + }, + "axes": [], + "designers": [ + "SIL International" + ], + "lastModified": "2023-09-13", + "dateAdded": "2015-03-03", + "popularity": 570, + "trending": 303, + "defaultSort": 580, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Lato", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 51318, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": 1, + "slant": 1, + "width": 6, + "lineHeight": 1.2 + }, + "100i": { + "thickness": 1, + "slant": 6, + "width": 6, + "lineHeight": 1.2 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 7, + "lineHeight": 1.2 + }, + "300i": { + "thickness": 3, + "slant": 4, + "width": 6, + "lineHeight": 1.2 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.2 + }, + "400i": { + "thickness": 5, + "slant": 3, + "width": 6, + "lineHeight": 1.2 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.2 + }, + "700i": { + "thickness": 6, + "slant": 3, + "width": 7, + "lineHeight": 1.2 + }, + "900": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.2 + }, + "900i": { + "thickness": 7, + "slant": 3, + "width": 7, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "\u0141ukasz Dziedzic" + ], + "lastModified": "2023-05-02", + "dateAdded": "2010-12-15", + "popularity": 8, + "trending": 986, + "defaultSort": 9, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lavishly Yours", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 150132, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-03-11", + "popularity": 1443, + "trending": 1783, + "defaultSort": 1384, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "League Gothic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 65972, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 100, + "defaultValue": 100 + } + ], + "designers": [ + "Tyler Finck", + "Caroline Hadilaksono", + "Micah Rich" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-12-09", + "popularity": 623, + "trending": 365, + "defaultSort": 633, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "League Script", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 69292, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 1, + "slant": 8, + "width": 7, + "lineHeight": 1.10677083333333 + } + }, + "axes": [], + "designers": [ + "Haley Fiege" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-03-09", + "popularity": 951, + "trending": 1590, + "defaultSort": 941, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "League Spartan", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 95116, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.92 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.92 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.92 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.92 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.92 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.92 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.92 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.92 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.92 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Matt Bailey", + "Tyler Finck" + ], + "lastModified": "2023-05-02", + "dateAdded": "2021-12-17", + "popularity": 305, + "trending": 758, + "defaultSort": 304, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Leckerli One", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 43212, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 4, + "width": 7, + "lineHeight": 1.345 + } + }, + "axes": [], + "designers": [ + "Gesine Todt" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-07-20", + "popularity": 391, + "trending": 564, + "defaultSort": 394, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ledger", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 62148, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.391 + } + }, + "axes": [], + "designers": [ + "Denis Masharov" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-02-22", + "popularity": 826, + "trending": 1112, + "defaultSort": 820, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lekton", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 87405, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1 + }, + "400i": { + "thickness": 4, + "slant": 4, + "width": 7, + "lineHeight": 1 + }, + "700": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "ISIA Urbino" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-12-20", + "popularity": 818, + "trending": 1180, + "defaultSort": 813, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lemon", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 77180, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 4, + "width": 8, + "lineHeight": 1.306 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-30", + "popularity": 806, + "trending": 1436, + "defaultSort": 803, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lemonada", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Handwriting" + ], + "size": 189204, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.998 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.998 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.998 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.998 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.998 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Mohamed Gaber", + "Eduardo Tunni" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-06-15", + "popularity": 425, + "trending": 754, + "defaultSort": 430, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Lexend", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 175756, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Bonnie Shaver-Troup", + "Thomas Jockin", + "Santiago Orozco", + "H\u00E9ctor G\u00F3mez", + "Superunion" + ], + "lastModified": "2023-09-14", + "dateAdded": "2021-03-08", + "popularity": 170, + "trending": 228, + "defaultSort": 162, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lexend Deca", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 175928, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Bonnie Shaver-Troup", + "Thomas Jockin", + "Santiago Orozco", + "H\u00E9ctor G\u00F3mez", + "Superunion" + ], + "lastModified": "2023-03-21", + "dateAdded": "2019-08-01", + "popularity": 236, + "trending": 1538, + "defaultSort": 230, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lexend Exa", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 189908, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Bonnie Shaver-Troup", + "Thomas Jockin", + "Santiago Orozco", + "H\u00E9ctor G\u00F3mez", + "Superunion" + ], + "lastModified": "2023-05-02", + "dateAdded": "2019-08-01", + "popularity": 911, + "trending": 403, + "defaultSort": 900, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lexend Giga", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 192100, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Bonnie Shaver-Troup", + "Thomas Jockin", + "Santiago Orozco", + "H\u00E9ctor G\u00F3mez", + "Superunion" + ], + "lastModified": "2023-09-14", + "dateAdded": "2019-08-01", + "popularity": 1119, + "trending": 1825, + "defaultSort": 1100, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lexend Mega", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 192116, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Bonnie Shaver-Troup", + "Thomas Jockin", + "Santiago Orozco", + "H\u00E9ctor G\u00F3mez", + "Superunion" + ], + "lastModified": "2023-09-14", + "dateAdded": "2019-08-01", + "popularity": 1107, + "trending": 1803, + "defaultSort": 1089, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lexend Peta", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 192228, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Bonnie Shaver-Troup", + "Thomas Jockin", + "Santiago Orozco", + "H\u00E9ctor G\u00F3mez", + "Superunion" + ], + "lastModified": "2023-03-09", + "dateAdded": "2019-08-01", + "popularity": 910, + "trending": 752, + "defaultSort": 899, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lexend Tera", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 192544, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Bonnie Shaver-Troup", + "Thomas Jockin", + "Santiago Orozco", + "H\u00E9ctor G\u00F3mez", + "Superunion" + ], + "lastModified": "2023-03-09", + "dateAdded": "2019-08-01", + "popularity": 1328, + "trending": 166, + "defaultSort": 1285, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lexend Zetta", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 192720, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Bonnie Shaver-Troup", + "Thomas Jockin", + "Santiago Orozco", + "H\u00E9ctor G\u00F3mez", + "Superunion" + ], + "lastModified": "2023-03-21", + "dateAdded": "2019-08-01", + "popularity": 705, + "trending": 1625, + "defaultSort": 715, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Libre Barcode 128", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Symbols", + "Display" + ], + "size": 22380, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Lasse Fister" + ], + "lastModified": "2023-08-25", + "dateAdded": "2017-07-31", + "popularity": 725, + "trending": 75, + "defaultSort": 733, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Libre Barcode 128 Text", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Symbols", + "Display" + ], + "size": 48056, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Lasse Fister" + ], + "lastModified": "2023-08-25", + "dateAdded": "2017-07-31", + "popularity": 1129, + "trending": 301, + "defaultSort": 1109, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Libre Barcode 39", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Symbols", + "Display" + ], + "size": 14800, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Lasse Fister" + ], + "lastModified": "2023-08-25", + "dateAdded": "2017-07-31", + "popularity": 398, + "trending": 795, + "defaultSort": 402, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Libre Barcode 39 Extended", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Symbols", + "Display" + ], + "size": 17396, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Lasse Fister" + ], + "lastModified": "2023-08-25", + "dateAdded": "2017-08-21", + "popularity": 1346, + "trending": 884, + "defaultSort": 1300, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Libre Barcode 39 Extended Text", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Symbols", + "Display" + ], + "size": 35280, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Lasse Fister" + ], + "lastModified": "2023-08-25", + "dateAdded": "2017-08-21", + "popularity": 780, + "trending": 1662, + "defaultSort": 779, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Libre Barcode 39 Text", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Symbols", + "Display" + ], + "size": 22984, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Lasse Fister" + ], + "lastModified": "2023-08-25", + "dateAdded": "2017-07-31", + "popularity": 988, + "trending": 193, + "defaultSort": 977, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Libre Barcode EAN13 Text", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Symbols", + "Display" + ], + "size": 72692, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.9375 + } + }, + "axes": [], + "designers": [ + "Lasse Fister" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-10-25", + "popularity": 1491, + "trending": 232, + "defaultSort": 1410, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Libre Baskerville", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 165649, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.24 + }, + "400i": { + "thickness": 5, + "slant": 5, + "width": 7, + "lineHeight": 1.24 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.24 + } + }, + "axes": [], + "designers": [ + "Impallari Type" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-11-30", + "popularity": 58, + "trending": 959, + "defaultSort": 56, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Libre Bodoni", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 106136, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Pablo Impallari", + "Rodrigo Fuenzalida" + ], + "lastModified": "2023-03-21", + "dateAdded": "2022-04-13", + "popularity": 467, + "trending": 234, + "defaultSort": 470, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Libre Caslon Display", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 101384, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.236 + } + }, + "axes": [], + "designers": [ + "Impallari Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2017-11-29", + "popularity": 834, + "trending": 235, + "defaultSort": 828, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Libre Caslon Text", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 97869, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.23 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.23 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.23 + } + }, + "axes": [], + "designers": [ + "Impallari Type" + ], + "lastModified": "2023-05-02", + "dateAdded": "2013-03-14", + "popularity": 299, + "trending": 543, + "defaultSort": 297, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Libre Franklin", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 108354, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Impallari Type" + ], + "lastModified": "2023-09-14", + "dateAdded": "2016-06-15", + "popularity": 49, + "trending": 1222, + "defaultSort": 48, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Licorice", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 154512, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-11-18", + "popularity": 1186, + "trending": 332, + "defaultSort": 1162, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Life Savers", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 194130, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 2, + "slant": 1, + "width": 7, + "lineHeight": 1.222 + }, + "700": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.222 + }, + "800": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.222 + } + }, + "axes": [], + "designers": [ + "Impallari Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-08-13", + "popularity": 889, + "trending": 1259, + "defaultSort": 881, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lilita One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 28092, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 1, + "width": 7, + "lineHeight": 1.143 + } + }, + "axes": [], + "designers": [ + "Juan Montoreano" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-01-11", + "popularity": 129, + "trending": 529, + "defaultSort": 123, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lily Script One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 20248, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 3, + "width": 7, + "lineHeight": 1.376 + } + }, + "axes": [], + "designers": [ + "Julia Petretta" + ], + "lastModified": "2022-09-21", + "dateAdded": "2013-06-05", + "popularity": 930, + "trending": 308, + "defaultSort": 922, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Limelight", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 132292, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 1, + "width": 8, + "lineHeight": 1.21728515625 + } + }, + "axes": [], + "designers": [ + "Nicole Fally", + "Sorkin Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-05-25", + "popularity": 528, + "trending": 124, + "defaultSort": 537, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Linden Hill", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 109692, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.347900390625 + }, + "400i": { + "thickness": 4, + "slant": 2, + "width": 5, + "lineHeight": 1.347900390625 + } + }, + "axes": [], + "designers": [ + "Barry Schwartz" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-10-19", + "popularity": 1190, + "trending": 445, + "defaultSort": 1165, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lisu Bosa", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 54510, + "subsets": [ + "menu", + "latin", + "latin-ext", + "lisu" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "SIL International" + ], + "lastModified": "2023-07-24", + "dateAdded": "2023-07-20", + "popularity": 1498, + "trending": 1799, + "defaultSort": 262, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Lisu", + "primaryLanguage": "" + }, + { + "family": "Literata", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 928930, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + } + }, + "axes": [ + { + "tag": "opsz", + "min": 7, + "max": 72, + "defaultValue": 14 + }, + { + "tag": "wght", + "min": 200, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "TypeTogether" + ], + "lastModified": "2023-06-07", + "dateAdded": "2018-12-06", + "popularity": 274, + "trending": 440, + "defaultSort": 272, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Liu Jian Mao Cao", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 4951804, + "subsets": [ + "menu", + "chinese-simplified", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Liu Zhengjiang", + "Kimberly Geswein", + "ZhongQi" + ], + "lastModified": "2023-08-25", + "dateAdded": "2019-03-17", + "popularity": 1201, + "trending": 1478, + "defaultSort": 1174, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Livvic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 105588, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + } + }, + "axes": [], + "designers": [ + "LV=", + "Jacques Le Bailly" + ], + "lastModified": "2023-05-02", + "dateAdded": "2019-06-21", + "popularity": 490, + "trending": 1142, + "defaultSort": 495, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lobster", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 406076, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 5, + "width": 6, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Impallari Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2010-05-17", + "popularity": 89, + "trending": 813, + "defaultSort": 85, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lobster Two", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 245241, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.25 + }, + "400i": { + "thickness": 4, + "slant": 5, + "width": 6, + "lineHeight": 1.25 + }, + "700": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.25 + }, + "700i": { + "thickness": 5, + "slant": 5, + "width": 6, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Impallari Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-06-21", + "popularity": 179, + "trending": 411, + "defaultSort": 172, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Londrina Outline", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 167112, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 1, + "slant": 1, + "width": 6, + "lineHeight": 1.183 + } + }, + "axes": [], + "designers": [ + "Marcelo Magalh\u00E3es" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-03-14", + "popularity": 944, + "trending": 905, + "defaultSort": 935, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Londrina Shadow", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 179844, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 6, + "lineHeight": 1.183 + } + }, + "axes": [], + "designers": [ + "Marcelo Magalh\u00E3es" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-03-14", + "popularity": 1216, + "trending": 1839, + "defaultSort": 1185, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Londrina Sketch", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 332856, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 6, + "lineHeight": 1.183 + } + }, + "axes": [], + "designers": [ + "Marcelo Magalh\u00E3es" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-03-14", + "popularity": 1379, + "trending": 598, + "defaultSort": 1330, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Londrina Solid", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 88050, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.183 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.183 + }, + "400": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.183 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.183 + } + }, + "axes": [], + "designers": [ + "Marcelo Magalh\u00E3es" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-03-14", + "popularity": 365, + "trending": 354, + "defaultSort": 366, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Long Cang", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 5162508, + "subsets": [ + "menu", + "chinese-simplified", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Chen Xiaomin" + ], + "lastModified": "2022-09-27", + "dateAdded": "2019-03-17", + "popularity": 1179, + "trending": 1552, + "defaultSort": 1155, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lora", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 217674, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.28 + }, + "400i": { + "thickness": 4, + "slant": 2, + "width": 7, + "lineHeight": 1.28 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.28 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.28 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.28 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.28 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.28 + }, + "700i": { + "thickness": 6, + "slant": 3, + "width": 7, + "lineHeight": 1.28 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Cyreal" + ], + "lastModified": "2023-02-22", + "dateAdded": "2011-07-06", + "popularity": 32, + "trending": 843, + "defaultSort": 33, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Love Light", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 168004, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-12-02", + "popularity": 1502, + "trending": 1330, + "defaultSort": 1418, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Love Ya Like A Sister", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 271924, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.2451171875 + } + }, + "axes": [], + "designers": [ + "Kimberly Geswein" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-07-06", + "popularity": 642, + "trending": 787, + "defaultSort": 653, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Loved by the King", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 28252, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 2, + "slant": 1, + "width": 5, + "lineHeight": 1.72607421875 + } + }, + "axes": [], + "designers": [ + "Kimberly Geswein" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-07-06", + "popularity": 949, + "trending": 1619, + "defaultSort": 940, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lovers Quarrel", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 110424, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 5, + "width": 3, + "lineHeight": 1.127 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-03-29", + "popularity": 967, + "trending": 937, + "defaultSort": 957, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Luckiest Guy", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 73320, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 1, + "width": 8, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-01-06", + "popularity": 263, + "trending": 582, + "defaultSort": 261, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lugrasimo", + "displayName": null, + "category": "Handwriting", + "stroke": "Serif", + "classifications": [ + "Handwriting" + ], + "size": 32492, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.361328125 + } + }, + "axes": [], + "designers": [ + "The DocRepair Project", + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-04-12", + "popularity": 1557, + "trending": 1739, + "defaultSort": 863, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lumanosimo", + "displayName": null, + "category": "Handwriting", + "stroke": "Serif", + "classifications": [ + "Handwriting" + ], + "size": 38736, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.37939453125 + } + }, + "axes": [], + "designers": [ + "The DocRepair Project", + "Eduardo Tunni" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-04-12", + "popularity": 1453, + "trending": 1556, + "defaultSort": 862, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lunasima", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 195780, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "hebrew", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.177734375 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.177734375 + } + }, + "axes": [], + "designers": [ + "The DocRepair Project", + "Google" + ], + "lastModified": "2023-07-13", + "dateAdded": "2023-07-10", + "popularity": 1490, + "trending": 1633, + "defaultSort": 345, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lusitana", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 16635, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.297 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.297 + } + }, + "axes": [], + "designers": [ + "Ana Paula Megda" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-01-11", + "popularity": 353, + "trending": 745, + "defaultSort": 353, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Lustria", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 18375, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.282 + } + }, + "axes": [], + "designers": [ + "MADType" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-01-18", + "popularity": 532, + "trending": 279, + "defaultSort": 541, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Luxurious Roman", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 143608, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-11-18", + "popularity": 1361, + "trending": 88, + "defaultSort": 1314, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Luxurious Script", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 387952, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-11-02", + "popularity": 1350, + "trending": 1337, + "defaultSort": 1303, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "M PLUS 1", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 4133100, + "subsets": [ + "menu", + "japanese", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Coji Morishita" + ], + "lastModified": "2023-09-14", + "dateAdded": "2021-08-25", + "popularity": 502, + "trending": 160, + "defaultSort": 509, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "M PLUS 1 Code", + "displayName": null, + "category": "Monospace", + "stroke": null, + "classifications": [ + "Monospace" + ], + "size": 3926772, + "subsets": [ + "menu", + "japanese", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.235 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.235 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.235 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.235 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.235 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.235 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.235 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Coji Morishita" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-09-21", + "popularity": 1252, + "trending": 1736, + "defaultSort": 1216, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "M PLUS 1p", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 1767323, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "hebrew", + "japanese", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + } + }, + "axes": [], + "designers": [ + "Coji Morishita", + "M+ Fonts Project" + ], + "lastModified": "2023-05-02", + "dateAdded": "2017-06-12", + "popularity": 120, + "trending": 611, + "defaultSort": 116, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "M PLUS 2", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 4141232, + "subsets": [ + "menu", + "japanese", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Coji Morishita" + ], + "lastModified": "2023-09-14", + "dateAdded": "2021-08-25", + "popularity": 714, + "trending": 571, + "defaultSort": 723, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "M PLUS Code Latin", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Monospace" + ], + "size": 158492, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.235 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.235 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.235 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.235 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.235 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.235 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.235 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 100, + "max": 125, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Coji Morishita" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-09-21", + "popularity": 1566, + "trending": 1179, + "defaultSort": 1459, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "M PLUS Rounded 1c", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 3404494, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "hebrew", + "japanese", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.485 + } + }, + "axes": [], + "designers": [ + "Coji Morishita", + "M+ Fonts Project" + ], + "lastModified": "2022-09-27", + "dateAdded": "2018-05-17", + "popularity": 94, + "trending": 290, + "defaultSort": 90, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ma Shan Zheng", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 5867444, + "subsets": [ + "menu", + "chinese-simplified", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Ma ShanZheng" + ], + "lastModified": "2022-09-27", + "dateAdded": "2019-03-17", + "popularity": 708, + "trending": 821, + "defaultSort": 717, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Macondo", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 48776, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.18 + } + }, + "axes": [], + "designers": [ + "John Vargas Beltr\u00E1n" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-01-18", + "popularity": 402, + "trending": 1463, + "defaultSort": 406, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Macondo Swash Caps", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 33016, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.18 + } + }, + "axes": [], + "designers": [ + "John Vargas Beltr\u00E1n" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-01-18", + "popularity": 962, + "trending": 791, + "defaultSort": 952, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mada", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 181408, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Khaled Hosny", + "Paul D. Hunt" + ], + "lastModified": "2023-05-23", + "dateAdded": "2017-07-26", + "popularity": 294, + "trending": 299, + "defaultSort": 291, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Magra", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 23060, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.215 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.215 + } + }, + "axes": [], + "designers": [ + "FontFuror" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-01-11", + "popularity": 565, + "trending": 760, + "defaultSort": 574, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Maiden Orange", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [ + "Display" + ], + "size": 60688, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 5, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2010-12-20", + "popularity": 1200, + "trending": 400, + "defaultSort": 1173, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Maitree", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 189768, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.65 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.65 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.65 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.65 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.65 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.65 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-06-15", + "popularity": 609, + "trending": 950, + "defaultSort": 620, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Major Mono Display", + "displayName": null, + "category": "Monospace", + "stroke": "Sans Serif", + "classifications": [ + "Monospace", + "Display" + ], + "size": 126788, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Emre Parlak" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-12-11", + "popularity": 687, + "trending": 51, + "defaultSort": 696, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mako", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 70284, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.30810546875 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-09-13", + "dateAdded": "2011-05-11", + "popularity": 800, + "trending": 853, + "defaultSort": 798, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mali", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 114265, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2023-05-02", + "dateAdded": "2018-09-10", + "popularity": 481, + "trending": 515, + "defaultSort": 484, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mallanna", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 235173, + "subsets": [ + "menu", + "latin", + "telugu" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.84942528735632 + } + }, + "axes": [], + "designers": [ + "Purushoth Kumar Guttula" + ], + "lastModified": "2022-04-26", + "dateAdded": "2014-12-10", + "popularity": 549, + "trending": 350, + "defaultSort": 560, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mandali", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 231346, + "subsets": [ + "menu", + "latin", + "telugu" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.97721518987342 + } + }, + "axes": [], + "designers": [ + "Purushoth Kumar Guttula" + ], + "lastModified": "2022-04-26", + "dateAdded": "2014-12-10", + "popularity": 370, + "trending": 1417, + "defaultSort": 371, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Manjari", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 151750, + "subsets": [ + "menu", + "latin", + "latin-ext", + "malayalam" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.07421875 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.0986328125 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171875 + } + }, + "axes": [], + "designers": [ + "Santhosh Thottingal" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-11-21", + "popularity": 539, + "trending": 1343, + "defaultSort": 550, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Manrope", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 165420, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.366 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.366 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.366 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.366 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.366 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.366 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.366 + } + }, + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Mikhail Sharanda" + ], + "lastModified": "2023-09-14", + "dateAdded": "2019-10-02", + "popularity": 47, + "trending": 1519, + "defaultSort": 46, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mansalva", + "displayName": null, + "category": "Handwriting", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 355776, + "subsets": [ + "menu", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.578 + } + }, + "axes": [], + "designers": [ + "Carolina Short" + ], + "lastModified": "2023-08-25", + "dateAdded": "2019-08-29", + "popularity": 633, + "trending": 1533, + "defaultSort": 644, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Manuale", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 194526, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2023-03-21", + "dateAdded": "2017-07-31", + "popularity": 1029, + "trending": 408, + "defaultSort": 1017, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Marcellus", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 24460, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.25390625 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-05-09", + "popularity": 203, + "trending": 1028, + "defaultSort": 195, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Marcellus SC", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 24844, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.25390625 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-05-09", + "popularity": 482, + "trending": 205, + "defaultSort": 485, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Marck Script", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 83664, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 7, + "width": 7, + "lineHeight": 1.249 + } + }, + "axes": [], + "designers": [ + "Denis Masharov" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-10-12", + "popularity": 311, + "trending": 860, + "defaultSort": 309, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Margarine", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 148820, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.34423828125 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-11-16", + "popularity": 1124, + "trending": 1652, + "defaultSort": 1105, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Marhey", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 198704, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.74 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.74 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.74 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.74 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.74 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Nur Syamsi", + "Bustanul Arifin" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-10-06", + "popularity": 1412, + "trending": 1754, + "defaultSort": 1325, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Markazi Text", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 296896, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2001953125 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2001953125 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2001953125 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2001953125 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Borna Izadpanah", + "Florian Runge", + "Fiona Ross" + ], + "lastModified": "2023-09-14", + "dateAdded": "2018-06-05", + "popularity": 463, + "trending": 1800, + "defaultSort": 465, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Marko One", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 21411, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.3408203125 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2022-04-26", + "dateAdded": "2011-12-13", + "popularity": 1245, + "trending": 1108, + "defaultSort": 1209, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Marmelad", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 142764, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.193 + } + }, + "axes": [], + "designers": [ + "Cyreal", + "Manvel Shmavonyan" + ], + "lastModified": "2023-05-02", + "dateAdded": "2011-12-07", + "popularity": 525, + "trending": 741, + "defaultSort": 532, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Martel", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 89593, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.687 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 4, + "lineHeight": 1.687 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 4, + "lineHeight": 1.687 + }, + "600": { + "thickness": 5, + "slant": 1, + "width": 4, + "lineHeight": 1.687 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 4, + "lineHeight": 1.687 + }, + "800": { + "thickness": 7, + "slant": 1, + "width": 4, + "lineHeight": 1.687 + }, + "900": { + "thickness": 8, + "slant": 1, + "width": 4, + "lineHeight": 1.687 + } + }, + "axes": [], + "designers": [ + "Dan Reynolds" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-04-20", + "popularity": 184, + "trending": 1217, + "defaultSort": 176, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Martel Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 152885, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "200": { + "thickness": 2, + "slant": 1, + "width": 4, + "lineHeight": 1.824 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 4, + "lineHeight": 1.824 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 4, + "lineHeight": 1.824 + }, + "600": { + "thickness": 5, + "slant": 1, + "width": 4, + "lineHeight": 1.824 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 4, + "lineHeight": 1.824 + }, + "800": { + "thickness": 7, + "slant": 1, + "width": 4, + "lineHeight": 1.824 + }, + "900": { + "thickness": 8, + "slant": 1, + "width": 4, + "lineHeight": 1.824 + } + }, + "axes": [], + "designers": [ + "Dan Reynolds", + "Mathieu R\u00E9guer" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-03-04", + "popularity": 453, + "trending": 1750, + "defaultSort": 455, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Martian Mono", + "displayName": null, + "category": "Monospace", + "stroke": null, + "classifications": [ + "Monospace" + ], + "size": 148460, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 112.5, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Roman Shamin", + "Evil Martians" + ], + "lastModified": "2023-02-23", + "dateAdded": "2022-11-25", + "popularity": 812, + "trending": 8, + "defaultSort": 24, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Marvel", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 38984, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 6, + "lineHeight": 1.21 + }, + "400i": { + "thickness": 3, + "slant": 4, + "width": 6, + "lineHeight": 1.21 + }, + "700": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.21 + }, + "700i": { + "thickness": 4, + "slant": 4, + "width": 6, + "lineHeight": 1.21 + } + }, + "axes": [], + "designers": [ + "Carolina Trebol" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-08-03", + "popularity": 701, + "trending": 1820, + "defaultSort": 712, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mate", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 63380, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.22 + }, + "400i": { + "thickness": 4, + "slant": 4, + "width": 6, + "lineHeight": 1.22 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-02", + "popularity": 217, + "trending": 295, + "defaultSort": 211, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mate SC", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 71092, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.22 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-04-27", + "dateAdded": "2011-11-02", + "popularity": 239, + "trending": 893, + "defaultSort": 233, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Maven Pro", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 90712, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.175 + }, + "500": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.175 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.175 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.175 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.175 + }, + "900": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.175 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Joe Prince" + ], + "lastModified": "2023-09-14", + "dateAdded": "2011-05-25", + "popularity": 97, + "trending": 1182, + "defaultSort": 94, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "McLaren", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 54504, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.4345703125 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-08-13", + "popularity": 832, + "trending": 548, + "defaultSort": 826, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mea Culpa", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 162232, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-12-02", + "popularity": 1343, + "trending": 746, + "defaultSort": 1298, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Meddon", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 128264, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 5, + "width": 4, + "lineHeight": 2.10791015625 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-02-02", + "popularity": 816, + "trending": 220, + "defaultSort": 811, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "MedievalSharp", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 148712, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.1298828125 + } + }, + "axes": [], + "designers": [ + "Wojciech Kalinowski" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-03-02", + "popularity": 1108, + "trending": 480, + "defaultSort": 1090, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Medula One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 16364, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 1, + "lineHeight": 1.008 + } + }, + "axes": [], + "designers": [ + "LatinoType" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-19", + "popularity": 981, + "trending": 1265, + "defaultSort": 971, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Meera Inimai", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 72272, + "subsets": [ + "menu", + "latin", + "tamil" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6455078125 + } + }, + "axes": [], + "designers": [ + "SMC" + ], + "lastModified": "2022-04-26", + "dateAdded": "2016-05-31", + "popularity": 820, + "trending": 1671, + "defaultSort": 815, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Megrim", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 27044, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 2, + "slant": 1, + "width": 7, + "lineHeight": 1.17 + } + }, + "axes": [], + "designers": [ + "Daniel Johnson" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-05-04", + "popularity": 843, + "trending": 1301, + "defaultSort": 835, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Meie Script", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 128428, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 9, + "width": 6, + "lineHeight": 1.2666015625 + } + }, + "axes": [], + "designers": [ + "Johan Kallas", + "Mihkel Virkus" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-08-21", + "popularity": 1060, + "trending": 380, + "defaultSort": 1043, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Meow Script", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 601304, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2022-09-21", + "dateAdded": "2021-11-02", + "popularity": 1038, + "trending": 1690, + "defaultSort": 1024, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Merienda", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 226360, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.444 + }, + "400": { + "thickness": 5, + "slant": 3, + "width": 8, + "lineHeight": 1.444 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.444 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.444 + }, + "700": { + "thickness": 6, + "slant": 3, + "width": 8, + "lineHeight": 1.444 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.444 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.444 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-03-21", + "dateAdded": "2012-10-31", + "popularity": 301, + "trending": 262, + "defaultSort": 299, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Merriweather", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 150902, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.257 + }, + "300i": { + "thickness": 4, + "slant": 3, + "width": 7, + "lineHeight": 1.257 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.257 + }, + "400i": { + "thickness": 5, + "slant": 3, + "width": 7, + "lineHeight": 1.257 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.257 + }, + "700i": { + "thickness": 6, + "slant": 3, + "width": 7, + "lineHeight": 1.257 + }, + "900": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.257 + }, + "900i": { + "thickness": 7, + "slant": 3, + "width": 7, + "lineHeight": 1.257 + } + }, + "axes": [], + "designers": [ + "Sorkin Type" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-05-11", + "popularity": 26, + "trending": 919, + "defaultSort": 27, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Merriweather Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 251640, + "subsets": [ + "menu", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.257 + }, + "300i": { + "thickness": 4, + "slant": 3, + "width": 7, + "lineHeight": 1.257 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.257 + }, + "400i": { + "thickness": 5, + "slant": 3, + "width": 7, + "lineHeight": 1.257 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.257 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.257 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.257 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.257 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.257 + }, + "700i": { + "thickness": 6, + "slant": 3, + "width": 7, + "lineHeight": 1.257 + }, + "800": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.257 + }, + "800i": { + "thickness": 7, + "slant": 3, + "width": 7, + "lineHeight": 1.257 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Sorkin Type" + ], + "lastModified": "2023-04-27", + "dateAdded": "2013-03-06", + "popularity": 123, + "trending": 1276, + "defaultSort": 119, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Metal", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 142428, + "subsets": [ + "menu", + "khmer", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.05078125 + } + }, + "axes": [], + "designers": [ + "Danh Hong" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-03-02", + "popularity": 1323, + "trending": 1497, + "defaultSort": 1282, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Metal Mania", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 123068, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.23828125 + } + }, + "axes": [], + "designers": [ + "Open Window" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-07-11", + "popularity": 1150, + "trending": 265, + "defaultSort": 1127, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Metamorphous", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 135740, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "James Grieshaber" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-07", + "popularity": 790, + "trending": 442, + "defaultSort": 789, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Metrophobic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 79772, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.23291015625 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-05-02", + "dateAdded": "2011-05-11", + "popularity": 577, + "trending": 900, + "defaultSort": 586, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Michroma", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 64344, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.421875 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-03-30", + "popularity": 473, + "trending": 368, + "defaultSort": 475, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Milonga", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 209948, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Impallari Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-11-30", + "popularity": 1078, + "trending": 487, + "defaultSort": 1061, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Miltonian", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 126804, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.192 + } + }, + "axes": [], + "designers": [ + "Impallari Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-04-06", + "popularity": 1424, + "trending": 1419, + "defaultSort": 1367, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Miltonian Tattoo", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 107880, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.192 + } + }, + "axes": [], + "designers": [ + "Impallari Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-04-06", + "popularity": 1431, + "trending": 353, + "defaultSort": 1373, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mina", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 151922, + "subsets": [ + "menu", + "bengali", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.59 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.59 + } + }, + "axes": [], + "designers": [ + "Suman Bhandary", + "Natanael Gama", + "Mooniak" + ], + "lastModified": "2022-09-21", + "dateAdded": "2018-02-28", + "popularity": 848, + "trending": 29, + "defaultSort": 293, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mingzat", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 191316, + "subsets": [ + "menu", + "latin", + "latin-ext", + "lepcha" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.097 + } + }, + "axes": [], + "designers": [ + "SIL International" + ], + "lastModified": "2023-09-13", + "dateAdded": "2022-05-25", + "popularity": 1564, + "trending": 1431, + "defaultSort": 1455, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Lepc", + "primaryLanguage": "" + }, + { + "family": "Miniver", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 45824, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 5, + "width": 7, + "lineHeight": 1.4580078125 + } + }, + "axes": [], + "designers": [ + "Open Window" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 1004, + "trending": 251, + "defaultSort": 992, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Miriam Libre", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 74702, + "subsets": [ + "menu", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 2, + "slant": 1, + "width": 3, + "lineHeight": 1.313 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 3, + "lineHeight": 1.313 + } + }, + "axes": [], + "designers": [ + "Michal Sahar" + ], + "lastModified": "2023-05-02", + "dateAdded": "2016-06-20", + "popularity": 554, + "trending": 280, + "defaultSort": 565, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mirza", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 177353, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "KB Studio" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-06-15", + "popularity": 710, + "trending": 921, + "defaultSort": 719, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Miss Fajardose", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 30209, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 9, + "width": 3, + "lineHeight": 1.248 + } + }, + "axes": [], + "designers": [ + "Sudtipos" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-11-30", + "popularity": 1382, + "trending": 1513, + "defaultSort": 1332, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mitr", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 217766, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.57 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.57 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.57 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.57 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.57 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.57 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-06-15", + "popularity": 251, + "trending": 472, + "defaultSort": 247, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mochiy Pop One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 5163948, + "subsets": [ + "menu", + "japanese", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "FONTDASU" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-04-14", + "popularity": 837, + "trending": 1427, + "defaultSort": 830, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mochiy Pop P One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 5164140, + "subsets": [ + "menu", + "japanese", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "FONTDASU" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-04-14", + "popularity": 1034, + "trending": 223, + "defaultSort": 1020, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Modak", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 271464, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 10, + "slant": 1, + "width": 4, + "lineHeight": 1.505859375 + } + }, + "axes": [], + "designers": [ + "Ek Type" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-02-18", + "popularity": 688, + "trending": 176, + "defaultSort": 697, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Modern Antiqua", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 70108, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.13427734375 + } + }, + "axes": [], + "designers": [ + "Wojciech Kalinowski" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-07-13", + "popularity": 1156, + "trending": 1653, + "defaultSort": 1134, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mogra", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 323028, + "subsets": [ + "menu", + "gujarati", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Lipi Raval" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-06-15", + "popularity": 863, + "trending": 1036, + "defaultSort": 852, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mohave", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 66806, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.393 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.393 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.393 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.393 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.393 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.393 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.393 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.393 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.393 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.393 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Gumpita Rahayu" + ], + "lastModified": "2023-09-14", + "dateAdded": "2020-01-23", + "popularity": 1225, + "trending": 616, + "defaultSort": 1193, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Moirai One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 2102128, + "subsets": [ + "menu", + "korean", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Jiyeon Park", + "JAMO" + ], + "lastModified": "2023-06-07", + "dateAdded": "2023-06-05", + "popularity": 1547, + "trending": 1287, + "defaultSort": 612, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Kore", + "primaryLanguage": "" + }, + { + "family": "Molengo", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 33658, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.1962890625 + } + }, + "axes": [], + "designers": [ + "Denis Jacquerye" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-04-19", + "popularity": 624, + "trending": 1434, + "defaultSort": 634, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Molle", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 50964, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400i": { + "thickness": 6, + "slant": 8, + "width": 7, + "lineHeight": 1.24658203125 + } + }, + "axes": [], + "designers": [ + "Elena Albertoni" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-09-18", + "popularity": 1110, + "trending": 858, + "defaultSort": 1092, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Monda", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 159436, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.62890625 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.62890625 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-11-30", + "popularity": 366, + "trending": 489, + "defaultSort": 367, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Monofett", + "displayName": null, + "category": "Monospace", + "stroke": null, + "classifications": [ + "Monospace" + ], + "size": 72328, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 10, + "slant": 1, + "width": 7, + "lineHeight": 1.130859375 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-05-23", + "dateAdded": "2011-05-04", + "popularity": 1040, + "trending": 826, + "defaultSort": 1026, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Monomaniac One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 122056, + "subsets": [ + "menu", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Maniackers Design" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-05-23", + "popularity": 1289, + "trending": 1698, + "defaultSort": 679, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Hira", + "primaryLanguage": "" + }, + { + "family": "Monoton", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 51604, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.556640625 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-08-24", + "popularity": 346, + "trending": 1312, + "defaultSort": 344, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Monsieur La Doulaise", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 54288, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 10, + "width": 5, + "lineHeight": 1.561 + } + }, + "axes": [], + "designers": [ + "Sudtipos" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-30", + "popularity": 588, + "trending": 963, + "defaultSort": 596, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Montaga", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 17847, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.232 + } + }, + "axes": [], + "designers": [ + "Alejandra Rodriguez" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-01-18", + "popularity": 844, + "trending": 1005, + "defaultSort": 836, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Montagu Slab", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [ + "Display" + ], + "size": 529316, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.282 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.282 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.282 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.282 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.282 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.282 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.282 + } + }, + "axes": [ + { + "tag": "opsz", + "min": 16, + "max": 144, + "defaultValue": 144 + }, + { + "tag": "wght", + "min": 100, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Florian Karsten" + ], + "lastModified": "2023-09-27", + "dateAdded": "2021-09-20", + "popularity": 976, + "trending": 287, + "defaultSort": 967, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "MonteCarlo", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 393456, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.7 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-05-14", + "popularity": 1095, + "trending": 1047, + "defaultSort": 1077, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Montez", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 77132, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 5, + "lineHeight": 1.30810546875 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-08-17", + "popularity": 785, + "trending": 1558, + "defaultSort": 784, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Montserrat", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 423806, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": 1, + "slant": 1, + "width": 7, + "lineHeight": 1.219 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "300": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.219 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "400": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.219 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.219 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "900": { + "thickness": 8, + "slant": 1, + "width": 8, + "lineHeight": 1.219 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Julieta Ulanovsky", + "Sol Matas", + "Juan Pablo del Peral", + "Jacques Le Bailly" + ], + "lastModified": "2023-09-14", + "dateAdded": "2011-12-13", + "popularity": 7, + "trending": 591, + "defaultSort": 8, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Montserrat Alternates", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 215384, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "400": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.219 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.219 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.219 + } + }, + "axes": [], + "designers": [ + "Julieta Ulanovsky", + "Sol Matas", + "Juan Pablo del Peral", + "Jacques Le Bailly" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-10-01", + "popularity": 168, + "trending": 364, + "defaultSort": 160, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Montserrat Subrayada", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 24348, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.219 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.219 + } + }, + "axes": [], + "designers": [ + "Julieta Ulanovsky" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-10-01", + "popularity": 731, + "trending": 1374, + "defaultSort": 739, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Moo Lah Lah", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 316228, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.22 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-11-26", + "popularity": 1572, + "trending": 1484, + "defaultSort": 1462, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mooli", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 62600, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-09-13", + "dateAdded": "2023-09-12", + "popularity": 1131, + "trending": 11, + "defaultSort": 43, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Moon Dance", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 276360, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.34 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-11-18", + "popularity": 1072, + "trending": 1814, + "defaultSort": 1055, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Moul", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 166200, + "subsets": [ + "menu", + "khmer", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.806640625 + } + }, + "axes": [], + "designers": [ + "Danh Hong" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-03-02", + "popularity": 1102, + "trending": 1285, + "defaultSort": 1084, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Moulpali", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 100364, + "subsets": [ + "menu", + "khmer", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.197265625 + } + }, + "axes": [], + "designers": [ + "Danh Hong" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-03-02", + "popularity": 1423, + "trending": 317, + "defaultSort": 1365, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mountains of Christmas", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 122774, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 6, + "lineHeight": 1.38671875 + }, + "700": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.38671875 + } + }, + "axes": [], + "designers": [ + "Tart Workshop" + ], + "lastModified": "2023-08-25", + "dateAdded": "2010-12-14", + "popularity": 867, + "trending": 882, + "defaultSort": 856, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mouse Memoirs", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 55932, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 2, + "lineHeight": 1.14501953125 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-11-02", + "popularity": 765, + "trending": 1100, + "defaultSort": 768, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mr Bedfort", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 21797, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.676 + } + }, + "axes": [], + "designers": [ + "Sudtipos" + ], + "lastModified": "2023-05-02", + "dateAdded": "2012-01-11", + "popularity": 1385, + "trending": 974, + "defaultSort": 1334, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mr Dafoe", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 24726, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 10, + "width": 6, + "lineHeight": 1.397 + } + }, + "axes": [], + "designers": [ + "Sudtipos" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-11-30", + "popularity": 359, + "trending": 992, + "defaultSort": 359, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mr De Haviland", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 23988, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 9, + "width": 4, + "lineHeight": 1.317 + } + }, + "axes": [], + "designers": [ + "Sudtipos" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-11-30", + "popularity": 813, + "trending": 1347, + "defaultSort": 809, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mrs Saint Delafield", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 26511, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 9, + "width": 4, + "lineHeight": 1.525 + } + }, + "axes": [], + "designers": [ + "Sudtipos" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-01-11", + "popularity": 569, + "trending": 1317, + "defaultSort": 578, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mrs Sheppards", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 42384, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 10, + "width": 5, + "lineHeight": 1.337 + } + }, + "axes": [], + "designers": [ + "Sudtipos" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-30", + "popularity": 1199, + "trending": 467, + "defaultSort": 1172, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ms Madi", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 144208, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2022-09-21", + "dateAdded": "2022-03-23", + "popularity": 768, + "trending": 504, + "defaultSort": 772, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mukta", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 417222, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + } + }, + "axes": [], + "designers": [ + "Ek Type" + ], + "lastModified": "2023-05-02", + "dateAdded": "2017-01-26", + "popularity": 31, + "trending": 1637, + "defaultSort": 32, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mukta Mahee", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 211430, + "subsets": [ + "menu", + "gurmukhi", + "latin", + "latin-ext" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + } + }, + "axes": [], + "designers": [ + "Ek Type" + ], + "lastModified": "2023-05-02", + "dateAdded": "2017-05-19", + "popularity": 892, + "trending": 1172, + "defaultSort": 884, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mukta Malar", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 246319, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tamil" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + } + }, + "axes": [], + "designers": [ + "Ek Type" + ], + "lastModified": "2022-09-21", + "dateAdded": "2017-02-13", + "popularity": 276, + "trending": 624, + "defaultSort": 274, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mukta Vaani", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 469868, + "subsets": [ + "menu", + "gujarati", + "latin", + "latin-ext" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.662 + } + }, + "axes": [], + "designers": [ + "Ek Type" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-06-15", + "popularity": 740, + "trending": 298, + "defaultSort": 748, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mulish", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 215768, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "1000": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "1000i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.255 + } + }, + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 1000, + "defaultValue": 400 + } + ], + "designers": [ + "Vernon Adams", + "Cyreal", + "Jacques Le Bailly" + ], + "lastModified": "2023-09-14", + "dateAdded": "2011-05-25", + "popularity": 38, + "trending": 169, + "defaultSort": 38, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Murecho", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 1430664, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Neil Summerour" + ], + "lastModified": "2023-06-29", + "dateAdded": "2021-10-27", + "popularity": 1101, + "trending": 1745, + "defaultSort": 1083, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "en_Latn" + }, + { + "family": "MuseoModerno", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 203500, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.59 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.59 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.59 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.59 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.59 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.59 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.59 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.59 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.59 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.59 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.59 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.59 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.59 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.59 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.59 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.59 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.59 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.59 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-05-17", + "popularity": 839, + "trending": 1542, + "defaultSort": 832, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "My Soul", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 145468, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.325 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-03-23", + "popularity": 1467, + "trending": 1160, + "defaultSort": 1396, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mynerve", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 279224, + "subsets": [ + "menu", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.31 + } + }, + "axes": [], + "designers": [ + "Carolina Short" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-01-03", + "popularity": 1241, + "trending": 1775, + "defaultSort": 1167, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Mystery Quest", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 27518, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.365234375 + } + }, + "axes": [], + "designers": [ + "Sideshow" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-02-29", + "popularity": 1022, + "trending": 376, + "defaultSort": 1010, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "NTR", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 147346, + "subsets": [ + "menu", + "latin", + "telugu" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 2.1201171875 + } + }, + "axes": [], + "designers": [ + "Purushoth Kumar Guttula" + ], + "lastModified": "2022-09-21", + "dateAdded": "2014-12-10", + "popularity": 657, + "trending": 879, + "defaultSort": 670, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nabla", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 1643616, + "subsets": [ + "menu", + "cyrillic-ext", + "latin", + "latin-ext", + "math", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.643 + } + }, + "axes": [ + { + "tag": "EDPT", + "min": 0, + "max": 200, + "defaultValue": 100 + }, + { + "tag": "EHLT", + "min": 0, + "max": 24, + "defaultValue": 12 + } + ], + "designers": [ + "Arthur Reinders Folmer", + "Just van Rossum" + ], + "lastModified": "2023-06-07", + "dateAdded": "2022-08-15", + "popularity": 1317, + "trending": 183, + "defaultSort": 1278, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [ + "COLRV1", + "OTSVG" + ], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nanum Brush Script", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 3745376, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.15 + } + }, + "axes": [], + "designers": [ + "Sandoll" + ], + "lastModified": "2022-09-27", + "dateAdded": "2018-02-05", + "popularity": 523, + "trending": 1742, + "defaultSort": 529, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nanum Gothic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 2080444, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.15 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.15 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.15 + } + }, + "axes": [], + "designers": [ + "Sandoll Communication" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-02-05", + "popularity": 56, + "trending": 1622, + "defaultSort": 54, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nanum Gothic Coding", + "displayName": null, + "category": "Handwriting", + "stroke": "Sans Serif", + "classifications": [ + "Monospace" + ], + "size": 2281082, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Sandoll Communication" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-02-05", + "popularity": 289, + "trending": 1297, + "defaultSort": 286, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nanum Myeongjo", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 3104652, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.150390625 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.150390625 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.150390625 + } + }, + "axes": [], + "designers": [ + "Sandoll Communication" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-02-05", + "popularity": 130, + "trending": 1496, + "defaultSort": 124, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nanum Pen Script", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 3789752, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.15 + } + }, + "axes": [], + "designers": [ + "Sandoll" + ], + "lastModified": "2022-09-27", + "dateAdded": "2018-02-05", + "popularity": 373, + "trending": 1681, + "defaultSort": 374, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Narnoor", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 88492, + "subsets": [ + "menu", + "gunjala-gondi", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.551 + } + }, + "axes": [], + "designers": [ + "SIL International" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-06-27", + "popularity": 1591, + "trending": 1789, + "defaultSort": 494, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Gong", + "primaryLanguage": "" + }, + { + "family": "Neonderthaw", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 276228, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.35 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-11-18", + "popularity": 1353, + "trending": 1003, + "defaultSort": 1306, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nerko One", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 102416, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.211 + } + }, + "axes": [], + "designers": [ + "Nermin Kahrimanovic" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-11-06", + "popularity": 1208, + "trending": 1669, + "defaultSort": 1180, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Neucha", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 67476, + "subsets": [ + "menu", + "cyrillic", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.1015625 + } + }, + "axes": [], + "designers": [ + "Jovanny Lemonad" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-09-21", + "popularity": 297, + "trending": 569, + "defaultSort": 295, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Neuton", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 59692, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "200": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.26513671875 + }, + "300": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.26513671875 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.26513671875 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 6, + "lineHeight": 1.26513671875 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 6, + "lineHeight": 1.26513671875 + }, + "800": { + "thickness": 8, + "slant": 1, + "width": 7, + "lineHeight": 1.26513671875 + } + }, + "axes": [], + "designers": [ + "Brian Zick" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-02-09", + "popularity": 191, + "trending": 1385, + "defaultSort": 183, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "New Rocker", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 64235, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.229 + } + }, + "axes": [], + "designers": [ + "Impallari Type" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-11-30", + "popularity": 1130, + "trending": 1298, + "defaultSort": 1110, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "New Tegomin", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 7450688, + "subsets": [ + "menu", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Kousuke Nagai" + ], + "lastModified": "2022-09-27", + "dateAdded": "2020-12-13", + "popularity": 1140, + "trending": 1617, + "defaultSort": 1119, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "News Cycle", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 79988, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 3, + "lineHeight": 1.64453125 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 4, + "lineHeight": 1.64453125 + } + }, + "axes": [], + "designers": [ + "Nathan Willis" + ], + "lastModified": "2023-05-02", + "dateAdded": "2011-04-27", + "popularity": 271, + "trending": 873, + "defaultSort": 269, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Newsreader", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 473674, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [ + { + "tag": "opsz", + "min": 6, + "max": 72, + "defaultValue": 16 + }, + { + "tag": "wght", + "min": 200, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Production Type" + ], + "lastModified": "2023-09-14", + "dateAdded": "2020-07-01", + "popularity": 403, + "trending": 846, + "defaultSort": 407, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Niconne", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 24707, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 6, + "width": 5, + "lineHeight": 1.21240234375 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-11-23", + "popularity": 553, + "trending": 924, + "defaultSort": 564, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Niramit", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 111950, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2022-09-21", + "dateAdded": "2018-09-10", + "popularity": 383, + "trending": 1079, + "defaultSort": 386, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nixie One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 40924, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 2, + "slant": 1, + "width": 8, + "lineHeight": 1.136 + } + }, + "axes": [], + "designers": [ + "Jovanny Lemonad" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-06-21", + "popularity": 637, + "trending": 237, + "defaultSort": 648, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nobile", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 77044, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.12744140625 + }, + "400i": { + "thickness": 4, + "slant": 3, + "width": 7, + "lineHeight": 1.4150390625 + }, + "500": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.12744140625 + }, + "500i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.4150390625 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.12744140625 + }, + "700i": { + "thickness": 6, + "slant": 4, + "width": 7, + "lineHeight": 1.4150390625 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-05-10", + "popularity": 611, + "trending": 469, + "defaultSort": 622, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nokora", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 58633, + "subsets": [ + "menu", + "khmer", + "latin" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32177734375 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32177734375 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32177734375 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32177734375 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32177734375 + } + }, + "axes": [], + "designers": [ + "Danh Hong" + ], + "lastModified": "2023-09-06", + "dateAdded": "2011-11-09", + "popularity": 945, + "trending": 394, + "defaultSort": 936, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Norican", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 83416, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 5, + "width": 6, + "lineHeight": 1.4091796875 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-09-13", + "dateAdded": "2012-02-08", + "popularity": 571, + "trending": 1033, + "defaultSort": 581, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nosifer", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 43272, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 1, + "width": 9, + "lineHeight": 1.740234375 + } + }, + "axes": [], + "designers": [ + "Typomondo" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 1155, + "trending": 1410, + "defaultSort": 1133, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Notable", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 38216, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [], + "designers": [ + "Eli Block", + "Hana Tanimura", + "Noemie Le Coz" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-08-02", + "popularity": 722, + "trending": 1626, + "defaultSort": 730, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nothing You Could Do", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 34920, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 8, + "width": 8, + "lineHeight": 1.333984375 + } + }, + "axes": [], + "designers": [ + "Kimberly Geswein" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-05-11", + "popularity": 389, + "trending": 788, + "defaultSort": 392, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noticia Text", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 60942, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.36474609375 + }, + "400i": { + "thickness": 5, + "slant": 3, + "width": 7, + "lineHeight": 1.36474609375 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.36474609375 + }, + "700i": { + "thickness": 6, + "slant": 3, + "width": 8, + "lineHeight": 1.36474609375 + } + }, + "axes": [], + "designers": [ + "JM Sol\u00E9" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-02-08", + "popularity": 185, + "trending": 793, + "defaultSort": 177, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Color Emoji", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 24066744, + "subsets": [ + "menu", + "emoji" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171875 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-05-31", + "dateAdded": "2021-02-16", + "popularity": 54, + "trending": 932, + "defaultSort": 1558, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [ + "COLRV1", + "OTSVG" + ], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Emoji", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 1966648, + "subsets": [ + "menu", + "emoji" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171875 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171875 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171875 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171875 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171875 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2022-04-29", + "popularity": 1146, + "trending": 929, + "defaultSort": 1563, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Kufi Arabic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 367488, + "subsets": [ + "menu", + "arabic" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.897 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.897 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.897 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.897 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.897 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.897 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.897 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.897 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.897 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-14", + "dateAdded": "2020-11-19", + "popularity": 160, + "trending": 1368, + "defaultSort": 1560, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Music", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Symbols" + ], + "size": 181128, + "subsets": [ + "menu", + "latin", + "latin-ext", + "music" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.787 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2020-11-19", + "popularity": 1483, + "trending": 55, + "defaultSort": 869, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Naskh Arabic", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 311212, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.703 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.703 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.703 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.703 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-11-19", + "popularity": 243, + "trending": 401, + "defaultSort": 240, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Noto Nastaliq Urdu", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 690188, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.5 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.5 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.5 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.5 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-03-21", + "dateAdded": "2020-11-19", + "popularity": 598, + "trending": 1324, + "defaultSort": 605, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Noto Rashi Hebrew", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 102208, + "subsets": [ + "menu", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.186 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.186 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.186 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.186 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.186 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.186 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.186 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.186 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.186 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-03-09", + "dateAdded": "2020-11-19", + "popularity": 1403, + "trending": 112, + "defaultSort": 1351, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Hebr", + "primaryLanguage": "" + }, + { + "family": "Noto Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 486534, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "devanagari", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.362 + }, + "400i": { + "thickness": 5, + "slant": 5, + "width": 7, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.362 + }, + "700i": { + "thickness": 7, + "slant": 5, + "width": 7, + "lineHeight": 1.362 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-27", + "dateAdded": "2013-02-27", + "popularity": 18, + "trending": 1251, + "defaultSort": 19, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Adlam", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 136472, + "subsets": [ + "menu", + "adlam", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-14", + "dateAdded": "2020-11-19", + "popularity": 1484, + "trending": 1697, + "defaultSort": 1407, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Adlam Unjoined", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 74148, + "subsets": [ + "menu", + "adlam", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-03-09", + "dateAdded": "2020-11-19", + "popularity": 1542, + "trending": 1815, + "defaultSort": 1442, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Adlm", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Anatolian Hieroglyphs", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 375344, + "subsets": [ + "menu", + "anatolian-hieroglyphs", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.406 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-24", + "dateAdded": "2020-11-19", + "popularity": 1310, + "trending": 1433, + "defaultSort": 1272, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Hluw", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Arabic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 771644, + "subsets": [ + "menu", + "arabic" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.112 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.112 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.112 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.112 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.112 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.112 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.112 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.112 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.112 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2022-06-01", + "dateAdded": "2020-11-19", + "popularity": 106, + "trending": 1792, + "defaultSort": 1559, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Armenian", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 221724, + "subsets": [ + "menu", + "armenian", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-03-21", + "dateAdded": "2020-11-19", + "popularity": 888, + "trending": 259, + "defaultSort": 880, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Armn", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Avestan", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 60532, + "subsets": [ + "menu", + "avestan", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-13", + "dateAdded": "2020-11-19", + "popularity": 1609, + "trending": 1476, + "defaultSort": 1485, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Avst", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Balinese", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 194288, + "subsets": [ + "menu", + "balinese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.201 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.201 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.201 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.201 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-11-19", + "popularity": 1632, + "trending": 810, + "defaultSort": 1504, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Bali", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Bamum", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 204724, + "subsets": [ + "menu", + "bamum", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-14", + "dateAdded": "2020-11-19", + "popularity": 1555, + "trending": 111, + "defaultSort": 1451, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Bassa Vah", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 61308, + "subsets": [ + "menu", + "bassa-vah", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2022-11-09", + "dateAdded": "2020-11-19", + "popularity": 1636, + "trending": 1624, + "defaultSort": 1508, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Batak", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 72040, + "subsets": [ + "menu", + "batak", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-13", + "dateAdded": "2020-11-19", + "popularity": 1596, + "trending": 1636, + "defaultSort": 1476, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Batk", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Bengali", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 624604, + "subsets": [ + "menu", + "bengali", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.325 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.325 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.325 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.325 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.325 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.325 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.325 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.325 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.325 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2022-09-21", + "dateAdded": "2020-11-19", + "popularity": 444, + "trending": 21, + "defaultSort": 154, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Bhaiksuki", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 370124, + "subsets": [ + "menu", + "bhaiksuki", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.42 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2020-11-19", + "popularity": 1628, + "trending": 1641, + "defaultSort": 1500, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Bhks", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Brahmi", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 108984, + "subsets": [ + "menu", + "brahmi", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.375 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-24", + "dateAdded": "2020-11-19", + "popularity": 1611, + "trending": 1498, + "defaultSort": 1487, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Brah", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Buginese", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 51976, + "subsets": [ + "menu", + "buginese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-11-19", + "popularity": 1660, + "trending": 1579, + "defaultSort": 1527, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Buhid", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 30844, + "subsets": [ + "menu", + "buhid", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-13", + "dateAdded": "2020-11-19", + "popularity": 1595, + "trending": 1191, + "defaultSort": 1475, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Buhd", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Canadian Aboriginal", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 260700, + "subsets": [ + "menu", + "canadian-aboriginal", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-14", + "dateAdded": "2020-11-19", + "popularity": 1548, + "trending": 1262, + "defaultSort": 1447, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Carian", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 53300, + "subsets": [ + "menu", + "carian", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-24", + "dateAdded": "2020-11-19", + "popularity": 1489, + "trending": 1650, + "defaultSort": 1409, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Cari", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Caucasian Albanian", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 26852, + "subsets": [ + "menu", + "caucasian-albanian" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-05-10", + "dateAdded": "2020-11-19", + "popularity": 1663, + "trending": 1575, + "defaultSort": 1567, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Chakma", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 126960, + "subsets": [ + "menu", + "chakma", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.46 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-11-09", + "dateAdded": "2020-11-19", + "popularity": 1644, + "trending": 1593, + "defaultSort": 1515, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Cham", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 160260, + "subsets": [ + "menu", + "cham", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.468 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.468 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.468 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.468 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.468 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.468 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.468 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.468 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.468 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2020-11-19", + "popularity": 1581, + "trending": 1651, + "defaultSort": 1467, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Cham", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Cherokee", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 224360, + "subsets": [ + "menu", + "cherokee", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-14", + "dateAdded": "2020-11-19", + "popularity": 1570, + "trending": 1701, + "defaultSort": 1461, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Chorasmian", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 68808, + "subsets": [ + "menu", + "chorasmian", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-05-23", + "dateAdded": "2023-05-23", + "popularity": 1430, + "trending": 1831, + "defaultSort": 680, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Chrs", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Coptic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 92764, + "subsets": [ + "menu", + "coptic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2020-11-19", + "popularity": 1512, + "trending": 1545, + "defaultSort": 1424, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Copt", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Cuneiform", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 1425840, + "subsets": [ + "menu", + "cuneiform", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.286 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-24", + "dateAdded": "2020-11-19", + "popularity": 1567, + "trending": 936, + "defaultSort": 1460, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Xsux", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Cypriot", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 15080, + "subsets": [ + "menu", + "cypriot" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-05-10", + "dateAdded": "2020-11-19", + "popularity": 1519, + "trending": 1281, + "defaultSort": 1564, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Cypro Minoan", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 63164, + "subsets": [ + "menu", + "cypro-minoan", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-13", + "dateAdded": "2023-07-10", + "popularity": 1522, + "trending": 1547, + "defaultSort": 426, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Deseret", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 60572, + "subsets": [ + "menu", + "deseret", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-24", + "dateAdded": "2020-11-19", + "popularity": 1538, + "trending": 943, + "defaultSort": 1439, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Dsrt", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Devanagari", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 934280, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-04-27", + "dateAdded": "2020-11-19", + "popularity": 317, + "trending": 1490, + "defaultSort": 316, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Deva", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Display", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 1621940, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-14", + "dateAdded": "2020-11-19", + "popularity": 172, + "trending": 178, + "defaultSort": 164, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Duployan", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 1823534, + "subsets": [ + "menu", + "duployan", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-06-22", + "dateAdded": "2020-11-19", + "popularity": 1684, + "trending": 1842, + "defaultSort": 1546, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Dupl", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Egyptian Hieroglyphs", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 1008180, + "subsets": [ + "menu", + "egyptian-hieroglyphs", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.65 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-24", + "dateAdded": "2020-11-19", + "popularity": 1563, + "trending": 987, + "defaultSort": 1457, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Egyp", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Elbasan", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 60084, + "subsets": [ + "menu", + "elbasan", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.117 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-05-23", + "dateAdded": "2020-11-19", + "popularity": 1694, + "trending": 1786, + "defaultSort": 1554, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Elba", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Elymaic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 9024, + "subsets": [ + "menu", + "elymaic" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-05-10", + "dateAdded": "2020-11-19", + "popularity": 1689, + "trending": 1766, + "defaultSort": 1569, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Ethiopic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 1143168, + "subsets": [ + "menu", + "ethiopic", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-13", + "dateAdded": "2016-04-15", + "popularity": 1254, + "trending": 1119, + "defaultSort": 1218, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Ethi", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Georgian", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 311728, + "subsets": [ + "menu", + "georgian", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-11-19", + "popularity": 880, + "trending": 916, + "defaultSort": 872, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Geor", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Glagolitic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 81396, + "subsets": [ + "menu", + "cyrillic-ext", + "glagolitic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-24", + "dateAdded": "2020-11-19", + "popularity": 1633, + "trending": 1526, + "defaultSort": 1505, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Glag", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Gothic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 49956, + "subsets": [ + "menu", + "gothic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-24", + "dateAdded": "2020-11-19", + "popularity": 1306, + "trending": 1551, + "defaultSort": 1268, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Goth", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Grantha", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 407456, + "subsets": [ + "menu", + "grantha", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.824 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-09-27", + "dateAdded": "2020-11-19", + "popularity": 1657, + "trending": 1464, + "defaultSort": 1525, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Gujarati", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 688976, + "subsets": [ + "menu", + "gujarati", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-04-27", + "dateAdded": "2020-11-19", + "popularity": 1174, + "trending": 1402, + "defaultSort": 1150, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Gujr", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Gunjala Gondi", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 172464, + "subsets": [ + "menu", + "gunjala-gondi", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2020-11-19", + "popularity": 1676, + "trending": 1494, + "defaultSort": 1540, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Gong", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Gurmukhi", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 268608, + "subsets": [ + "menu", + "gurmukhi", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-04-27", + "dateAdded": "2020-11-19", + "popularity": 1472, + "trending": 1466, + "defaultSort": 1400, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Guru", + "primaryLanguage": "" + }, + { + "family": "Noto Sans HK", + "displayName": "Noto Sans Hong Kong", + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 11905808, + "subsets": [ + "menu", + "chinese-hongkong", + "cyrillic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-08-17", + "dateAdded": "2019-03-12", + "popularity": 136, + "trending": 1395, + "defaultSort": 130, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Hant", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Hanifi Rohingya", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 109148, + "subsets": [ + "menu", + "hanifi-rohingya", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2020-11-19", + "popularity": 1681, + "trending": 1763, + "defaultSort": 1543, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Rohg", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Hanunoo", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 52188, + "subsets": [ + "menu", + "hanunoo", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-13", + "dateAdded": "2020-11-19", + "popularity": 1606, + "trending": 1320, + "defaultSort": 1482, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Hano", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Hatran", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 50744, + "subsets": [ + "menu", + "hatran", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-13", + "dateAdded": "2020-11-19", + "popularity": 1679, + "trending": 1740, + "defaultSort": 1541, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Hatr", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Hebrew", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 183076, + "subsets": [ + "menu", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-11-19", + "popularity": 479, + "trending": 1178, + "defaultSort": 481, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Hebr", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Imperial Aramaic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 52184, + "subsets": [ + "menu", + "imperial-aramaic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-08-08", + "dateAdded": "2020-11-19", + "popularity": 1549, + "trending": 915, + "defaultSort": 1448, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Armi", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Indic Siyaq Numbers", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 73460, + "subsets": [ + "menu", + "indic-siyaq-numbers", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.562 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-08-17", + "dateAdded": "2020-11-19", + "popularity": 1588, + "trending": 1654, + "defaultSort": 1470, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Inscriptional Pahlavi", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 52076, + "subsets": [ + "menu", + "inscriptional-pahlavi", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.421 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-08-17", + "dateAdded": "2020-11-19", + "popularity": 1640, + "trending": 1683, + "defaultSort": 1511, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Phli", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Inscriptional Parthian", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 52504, + "subsets": [ + "menu", + "inscriptional-parthian", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.37 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-05-23", + "dateAdded": "2020-11-19", + "popularity": 1656, + "trending": 1659, + "defaultSort": 1524, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Prti", + "primaryLanguage": "" + }, + { + "family": "Noto Sans JP", + "displayName": "Noto Sans Japanese", + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 9589900, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-05-02", + "dateAdded": "2015-01-29", + "popularity": 5, + "trending": 1296, + "defaultSort": 6, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Jpan", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Javanese", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 252904, + "subsets": [ + "menu", + "javanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.036 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.036 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.036 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.036 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2020-11-19", + "popularity": 1449, + "trending": 1328, + "defaultSort": 1389, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Java", + "primaryLanguage": "" + }, + { + "family": "Noto Sans KR", + "displayName": "Noto Sans Korean", + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 10414588, + "subsets": [ + "menu", + "cyrillic", + "korean", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-08-17", + "dateAdded": "2018-02-05", + "popularity": 30, + "trending": 1574, + "defaultSort": 31, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Kore", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Kaithi", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 138336, + "subsets": [ + "menu", + "kaithi", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.502 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-13", + "dateAdded": "2020-11-19", + "popularity": 1668, + "trending": 1531, + "defaultSort": 1533, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Kthi", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Kannada", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 668232, + "subsets": [ + "menu", + "kannada", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.349 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.349 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.349 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.349 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.349 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.349 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.349 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.349 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.349 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-04-27", + "dateAdded": "2020-11-19", + "popularity": 756, + "trending": 1206, + "defaultSort": 762, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Knda", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Kayah Li", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 52440, + "subsets": [ + "menu", + "kayah-li", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-14", + "dateAdded": "2020-11-19", + "popularity": 1594, + "trending": 1755, + "defaultSort": 1474, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Kharoshthi", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 91472, + "subsets": [ + "menu", + "kharoshthi", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.37 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-04-27", + "dateAdded": "2020-11-19", + "popularity": 1688, + "trending": 1824, + "defaultSort": 1549, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Khar", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Khmer", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 344568, + "subsets": [ + "menu", + "khmer", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-03-21", + "dateAdded": "2020-11-19", + "popularity": 1166, + "trending": 252, + "defaultSort": 1142, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Khmr", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Khojki", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 106260, + "subsets": [ + "menu", + "khojki", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.856 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-13", + "dateAdded": "2020-11-19", + "popularity": 1698, + "trending": 1843, + "defaultSort": 1557, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Khoj", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Khudawadi", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 70660, + "subsets": [ + "menu", + "khudawadi", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.317 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2020-11-19", + "popularity": 1625, + "trending": 1605, + "defaultSort": 1498, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Sind", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Lao", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 176620, + "subsets": [ + "menu", + "lao", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.645 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.645 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.645 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.645 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.645 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.645 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.645 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.645 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.645 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2020-11-19", + "popularity": 1276, + "trending": 1819, + "defaultSort": 1239, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Laoo", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Lao Looped", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 231556, + "subsets": [ + "menu", + "lao", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2022-09-05", + "popularity": 1533, + "trending": 1386, + "defaultSort": 1346, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Laoo", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Lepcha", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 76440, + "subsets": [ + "menu", + "latin", + "latin-ext", + "lepcha" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.519 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-13", + "dateAdded": "2020-11-19", + "popularity": 1524, + "trending": 1563, + "defaultSort": 1429, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Lepc", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Limbu", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 60820, + "subsets": [ + "menu", + "latin", + "latin-ext", + "limbu" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-11-09", + "dateAdded": "2020-11-19", + "popularity": 1622, + "trending": 1658, + "defaultSort": 1495, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Linear A", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 162012, + "subsets": [ + "menu", + "latin", + "latin-ext", + "linear-a" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-24", + "dateAdded": "2020-11-19", + "popularity": 1662, + "trending": 1532, + "defaultSort": 1529, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Lina", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Linear B", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 135716, + "subsets": [ + "menu", + "latin", + "latin-ext", + "linear-b" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-24", + "dateAdded": "2020-11-19", + "popularity": 1554, + "trending": 1848, + "defaultSort": 1450, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Linb", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Lisu", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 56240, + "subsets": [ + "menu", + "latin", + "latin-ext", + "lisu" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-03-09", + "dateAdded": "2020-11-19", + "popularity": 1654, + "trending": 1541, + "defaultSort": 1522, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Lisu", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Lycian", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 4488, + "subsets": [ + "menu", + "lycian" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-05-10", + "dateAdded": "2020-11-19", + "popularity": 1658, + "trending": 1646, + "defaultSort": 1566, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Lydian", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 50536, + "subsets": [ + "menu", + "latin", + "latin-ext", + "lydian" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-24", + "dateAdded": "2020-11-19", + "popularity": 1653, + "trending": 1175, + "defaultSort": 1521, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Lydi", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Mahajani", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 63864, + "subsets": [ + "menu", + "latin", + "latin-ext", + "mahajani" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-13", + "dateAdded": "2020-11-19", + "popularity": 1685, + "trending": 1854, + "defaultSort": 1547, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Mahj", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Malayalam", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 504204, + "subsets": [ + "menu", + "latin", + "latin-ext", + "malayalam" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.247 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.247 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.247 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.247 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.247 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.247 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.247 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.247 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.247 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-04-27", + "dateAdded": "2020-11-19", + "popularity": 364, + "trending": 518, + "defaultSort": 365, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Mlym", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Mandaic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 65500, + "subsets": [ + "menu", + "latin", + "latin-ext", + "mandaic" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.147 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-08-08", + "dateAdded": "2020-11-19", + "popularity": 1669, + "trending": 1817, + "defaultSort": 1534, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Mand", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Manichaean", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 93732, + "subsets": [ + "menu", + "latin", + "latin-ext", + "manichaean" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.13 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-24", + "dateAdded": "2020-11-19", + "popularity": 1697, + "trending": 1840, + "defaultSort": 1556, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Mani", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Marchen", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 287684, + "subsets": [ + "menu", + "latin", + "latin-ext", + "marchen" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.641 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-13", + "dateAdded": "2020-11-19", + "popularity": 1619, + "trending": 1733, + "defaultSort": 1492, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Marc", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Masaram Gondi", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 86204, + "subsets": [ + "menu", + "latin", + "latin-ext", + "masaram-gondi" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-11-09", + "dateAdded": "2020-11-19", + "popularity": 1630, + "trending": 1667, + "defaultSort": 1502, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Math", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 590896, + "subsets": [ + "menu", + "math" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.492 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-05-10", + "dateAdded": "2020-11-19", + "popularity": 1057, + "trending": 335, + "defaultSort": 1562, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Mayan Numerals", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 50672, + "subsets": [ + "menu", + "latin", + "latin-ext", + "mayan-numerals" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-08-17", + "dateAdded": "2020-11-19", + "popularity": 1631, + "trending": 1673, + "defaultSort": 1503, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Medefaidrin", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 112788, + "subsets": [ + "menu", + "latin", + "latin-ext", + "medefaidrin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-14", + "dateAdded": "2020-11-19", + "popularity": 1649, + "trending": 1661, + "defaultSort": 1518, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Meetei Mayek", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 95616, + "subsets": [ + "menu", + "latin", + "latin-ext", + "meetei-mayek" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.39 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.39 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.39 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.39 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.39 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.39 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.39 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.39 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.39 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-14", + "dateAdded": "2020-11-19", + "popularity": 1466, + "trending": 1405, + "defaultSort": 1395, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Mende Kikakui", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 94212, + "subsets": [ + "menu", + "latin", + "latin-ext", + "mende-kikakui" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.267 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-11-09", + "dateAdded": "2020-11-19", + "popularity": 1623, + "trending": 1598, + "defaultSort": 1496, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Meroitic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 87636, + "subsets": [ + "menu", + "latin", + "latin-ext", + "meroitic" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-06-22", + "dateAdded": "2020-11-19", + "popularity": 1690, + "trending": 1846, + "defaultSort": 1550, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Mero", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Miao", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 100188, + "subsets": [ + "menu", + "latin", + "latin-ext", + "miao" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.492 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-09-27", + "dateAdded": "2020-11-19", + "popularity": 1544, + "trending": 1577, + "defaultSort": 1444, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Modi", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 108332, + "subsets": [ + "menu", + "latin", + "latin-ext", + "modi" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.354 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2020-11-19", + "popularity": 1620, + "trending": 1509, + "defaultSort": 1493, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Modi", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Mongolian", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 285152, + "subsets": [ + "menu", + "latin", + "latin-ext", + "mongolian" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.75 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-11-09", + "dateAdded": "2020-11-19", + "popularity": 1506, + "trending": 32, + "defaultSort": 354, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Mono", + "displayName": null, + "category": "Monospace", + "stroke": "Sans Serif", + "classifications": [ + "Monospace" + ], + "size": 1692740, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-11-19", + "popularity": 459, + "trending": 1096, + "defaultSort": 461, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Mro", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 54272, + "subsets": [ + "menu", + "latin", + "latin-ext", + "mro" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-12-07", + "dateAdded": "2020-11-19", + "popularity": 1608, + "trending": 1663, + "defaultSort": 1484, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Multani", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 57728, + "subsets": [ + "menu", + "latin", + "latin-ext", + "multani" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-11-09", + "dateAdded": "2020-11-19", + "popularity": 1562, + "trending": 576, + "defaultSort": 1456, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Myanmar", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 203725, + "subsets": [ + "menu", + "myanmar" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.184 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.184 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.184 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.184 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.184 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.184 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.184 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.184 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.184 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-09-27", + "dateAdded": "2020-11-19", + "popularity": 894, + "trending": 162, + "defaultSort": 1561, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans NKo", + "displayName": "Noto Sans N'Ko", + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 79696, + "subsets": [ + "menu", + "latin", + "latin-ext", + "nko" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2020-11-19", + "popularity": 1666, + "trending": 1515, + "defaultSort": 1532, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Nkoo", + "primaryLanguage": "" + }, + { + "family": "Noto Sans NKo Unjoined", + "displayName": "Noto Sans N'Ko Unjoined", + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 63800, + "subsets": [ + "menu", + "latin", + "latin-ext", + "nko" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2023-09-26", + "popularity": 993, + "trending": 1, + "defaultSort": 2, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Nkoo", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Nabataean", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 55600, + "subsets": [ + "menu", + "latin", + "latin-ext", + "nabataean" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-06-22", + "dateAdded": "2020-11-19", + "popularity": 1599, + "trending": 1372, + "defaultSort": 1478, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Nbat", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Nag Mundari", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 59644, + "subsets": [ + "menu", + "latin", + "latin-ext", + "nag-mundari" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-05-09", + "dateAdded": "2023-05-08", + "popularity": 1604, + "trending": 1719, + "defaultSort": 722, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Nagm", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Nandinagari", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 261380, + "subsets": [ + "menu", + "latin", + "latin-ext", + "nandinagari" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.46 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-05-09", + "dateAdded": "2023-05-08", + "popularity": 1560, + "trending": 1355, + "defaultSort": 747, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Nand", + "primaryLanguage": "" + }, + { + "family": "Noto Sans New Tai Lue", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 78872, + "subsets": [ + "menu", + "latin", + "latin-ext", + "new-tai-lue" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2020-11-19", + "popularity": 1672, + "trending": 1850, + "defaultSort": 1537, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Talu", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Newa", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 259668, + "subsets": [ + "menu", + "latin", + "latin-ext", + "newa" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.432 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-11-09", + "dateAdded": "2020-11-19", + "popularity": 1614, + "trending": 1670, + "defaultSort": 1489, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Nushu", + "displayName": "Noto Sans N\u00FCshu", + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 187204, + "subsets": [ + "menu", + "latin", + "latin-ext", + "nushu" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.39 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-04-27", + "dateAdded": "2020-11-19", + "popularity": 1693, + "trending": 1834, + "defaultSort": 1553, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Ogham", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 47540, + "subsets": [ + "menu", + "latin", + "latin-ext", + "ogham" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-24", + "dateAdded": "2020-11-19", + "popularity": 1673, + "trending": 1801, + "defaultSort": 1538, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Ogam", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Ol Chiki", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 91152, + "subsets": [ + "menu", + "latin", + "latin-ext", + "ol-chiki" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-14", + "dateAdded": "2020-11-19", + "popularity": 1646, + "trending": 1677, + "defaultSort": 1517, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Olck", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Old Hungarian", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 113692, + "subsets": [ + "menu", + "latin", + "latin-ext", + "old-hungarian" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.036 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-13", + "dateAdded": "2020-11-19", + "popularity": 1530, + "trending": 323, + "defaultSort": 1435, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Old Italic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 51064, + "subsets": [ + "menu", + "latin", + "latin-ext", + "old-italic" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-13", + "dateAdded": "2020-11-19", + "popularity": 1529, + "trending": 1442, + "defaultSort": 1434, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Ital", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Old North Arabian", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 53664, + "subsets": [ + "menu", + "latin", + "latin-ext", + "old-north-arabian" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-13", + "dateAdded": "2020-11-19", + "popularity": 1651, + "trending": 1274, + "defaultSort": 1520, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Narb", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Old Permic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 52264, + "subsets": [ + "menu", + "cyrillic-ext", + "latin", + "latin-ext", + "old-permic" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-13", + "dateAdded": "2020-11-19", + "popularity": 1664, + "trending": 1852, + "defaultSort": 1530, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Perm", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Old Persian", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 59860, + "subsets": [ + "menu", + "latin", + "latin-ext", + "old-persian" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-13", + "dateAdded": "2020-11-19", + "popularity": 1577, + "trending": 1512, + "defaultSort": 1464, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Xpeo", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Old Sogdian", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 66184, + "subsets": [ + "menu", + "latin", + "latin-ext", + "old-sogdian" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-06-22", + "dateAdded": "2020-11-19", + "popularity": 1692, + "trending": 1844, + "defaultSort": 1552, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Sogo", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Old South Arabian", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 51336, + "subsets": [ + "menu", + "latin", + "latin-ext", + "old-south-arabian" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-13", + "dateAdded": "2020-11-19", + "popularity": 1641, + "trending": 1203, + "defaultSort": 1512, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Sarb", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Old Turkic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 57452, + "subsets": [ + "menu", + "latin", + "latin-ext", + "old-turkic" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-13", + "dateAdded": "2020-11-19", + "popularity": 1601, + "trending": 906, + "defaultSort": 1479, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Orkh", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Oriya", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 467912, + "subsets": [ + "menu", + "latin", + "latin-ext", + "oriya" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-11-19", + "popularity": 1138, + "trending": 608, + "defaultSort": 1117, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Orya", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Osage", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 60076, + "subsets": [ + "menu", + "latin", + "latin-ext", + "osage" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-11-09", + "dateAdded": "2020-11-19", + "popularity": 1621, + "trending": 1250, + "defaultSort": 1494, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Osmanya", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 57652, + "subsets": [ + "menu", + "latin", + "latin-ext", + "osmanya" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-11-09", + "dateAdded": "2020-11-19", + "popularity": 1661, + "trending": 1856, + "defaultSort": 1528, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Pahawh Hmong", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 73820, + "subsets": [ + "menu", + "latin", + "latin-ext", + "pahawh-hmong" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-11-19", + "popularity": 1610, + "trending": 1678, + "defaultSort": 1486, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Palmyrene", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 64084, + "subsets": [ + "menu", + "latin", + "latin-ext", + "palmyrene" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-06-22", + "dateAdded": "2020-11-19", + "popularity": 1624, + "trending": 1704, + "defaultSort": 1497, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Palm", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Pau Cin Hau", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 56924, + "subsets": [ + "menu", + "latin", + "latin-ext", + "pau-cin-hau" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-11-19", + "popularity": 1691, + "trending": 1847, + "defaultSort": 1551, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Phags Pa", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 39292, + "subsets": [ + "menu", + "phags-pa" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-05-10", + "dateAdded": "2020-11-19", + "popularity": 1686, + "trending": 1713, + "defaultSort": 1568, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Phoenician", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 52012, + "subsets": [ + "menu", + "latin", + "latin-ext", + "phoenician" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-24", + "dateAdded": "2020-11-19", + "popularity": 1680, + "trending": 1732, + "defaultSort": 1542, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Phnx", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Psalter Pahlavi", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 76400, + "subsets": [ + "menu", + "latin", + "latin-ext", + "psalter-pahlavi" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.291 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-06-22", + "dateAdded": "2020-11-19", + "popularity": 1617, + "trending": 934, + "defaultSort": 1490, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Phlp", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Rejang", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 54828, + "subsets": [ + "menu", + "latin", + "latin-ext", + "rejang" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2020-11-19", + "popularity": 1638, + "trending": 1529, + "defaultSort": 1510, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Rjng", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Runic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 55800, + "subsets": [ + "menu", + "latin", + "latin-ext", + "runic" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-24", + "dateAdded": "2020-11-19", + "popularity": 1682, + "trending": 1586, + "defaultSort": 1544, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Runr", + "primaryLanguage": "" + }, + { + "family": "Noto Sans SC", + "displayName": "Noto Sans Simplified Chinese", + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 17772300, + "subsets": [ + "menu", + "chinese-simplified", + "cyrillic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-08-17", + "dateAdded": "2018-10-22", + "popularity": 85, + "trending": 1443, + "defaultSort": 82, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Hans", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Samaritan", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 51740, + "subsets": [ + "menu", + "latin", + "latin-ext", + "samaritan" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-06-22", + "dateAdded": "2020-11-19", + "popularity": 1354, + "trending": 1396, + "defaultSort": 1308, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Samr", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Saurashtra", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 74668, + "subsets": [ + "menu", + "latin", + "latin-ext", + "saurashtra" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-13", + "dateAdded": "2020-11-19", + "popularity": 1613, + "trending": 1665, + "defaultSort": 1488, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Saur", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Sharada", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 122368, + "subsets": [ + "menu", + "latin", + "latin-ext", + "sharada" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.38 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-11-17", + "dateAdded": "2020-11-19", + "popularity": 1590, + "trending": 1693, + "defaultSort": 1472, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Shavian", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 54064, + "subsets": [ + "menu", + "latin", + "latin-ext", + "shavian" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-24", + "dateAdded": "2020-11-19", + "popularity": 1674, + "trending": 1855, + "defaultSort": 1539, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Shaw", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Siddham", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 231580, + "subsets": [ + "menu", + "latin", + "latin-ext", + "siddham" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.03 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2020-11-19", + "popularity": 1634, + "trending": 1716, + "defaultSort": 1506, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Sidd", + "primaryLanguage": "" + }, + { + "family": "Noto Sans SignWriting", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 7881488, + "subsets": [ + "menu", + "latin", + "latin-ext", + "signwriting" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.002 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2022-10-30", + "popularity": 1678, + "trending": 1635, + "defaultSort": 1312, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Sinhala", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 1181956, + "subsets": [ + "menu", + "latin", + "latin-ext", + "sinhala" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2022-09-27", + "dateAdded": "2020-11-19", + "popularity": 778, + "trending": 1093, + "defaultSort": 777, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Sogdian", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 141656, + "subsets": [ + "menu", + "latin", + "latin-ext", + "sogdian" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.382 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-06-22", + "dateAdded": "2020-11-19", + "popularity": 1687, + "trending": 1853, + "defaultSort": 1548, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Sogd", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Sora Sompeng", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 60240, + "subsets": [ + "menu", + "latin", + "latin-ext", + "sora-sompeng" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-03-09", + "dateAdded": "2020-11-19", + "popularity": 1541, + "trending": 1426, + "defaultSort": 1441, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Sora", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Soyombo", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 132532, + "subsets": [ + "menu", + "latin", + "latin-ext", + "soyombo" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.596 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-24", + "dateAdded": "2020-11-19", + "popularity": 1695, + "trending": 1841, + "defaultSort": 1555, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Soyo", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Sundanese", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 60620, + "subsets": [ + "menu", + "latin", + "latin-ext", + "sundanese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-03-01", + "dateAdded": "2020-11-19", + "popularity": 1586, + "trending": 1603, + "defaultSort": 1469, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Sund", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Syloti Nagri", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 66364, + "subsets": [ + "menu", + "latin", + "latin-ext", + "syloti-nagri" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-11-09", + "dateAdded": "2020-11-19", + "popularity": 1435, + "trending": 1816, + "defaultSort": 1376, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Symbols", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 372684, + "subsets": [ + "menu", + "latin", + "latin-ext", + "symbols" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.05 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.05 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.05 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.05 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.05 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.05 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.05 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.05 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.05 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2020-11-19", + "popularity": 973, + "trending": 1439, + "defaultSort": 964, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Symbols 2", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Symbols" + ], + "size": 1225636, + "subsets": [ + "menu", + "braille", + "latin", + "latin-ext", + "mayan-numerals", + "symbols" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.699 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2020-11-19", + "popularity": 1253, + "trending": 829, + "defaultSort": 1217, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Syriac", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 171996, + "subsets": [ + "menu", + "latin", + "latin-ext", + "syriac" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.412 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.412 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.412 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.412 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.412 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.412 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.412 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.412 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.412 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-04-27", + "dateAdded": "2020-11-19", + "popularity": 1665, + "trending": 1559, + "defaultSort": 1531, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Syrc", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Syriac Eastern", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 146308, + "subsets": [ + "menu", + "latin", + "latin-ext", + "syriac" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.412 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.412 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.412 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.412 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.412 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.412 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.412 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.412 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.412 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-07-13", + "dateAdded": "2023-07-10", + "popularity": 1583, + "trending": 1770, + "defaultSort": 361, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Syrc", + "primaryLanguage": "" + }, + { + "family": "Noto Sans TC", + "displayName": "Noto Sans Traditional Chinese", + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 11941968, + "subsets": [ + "menu", + "chinese-traditional", + "cyrillic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-08-17", + "dateAdded": "2018-10-22", + "popularity": 34, + "trending": 1095, + "defaultSort": 35, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Hant", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Tagalog", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 53012, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tagalog" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2020-11-19", + "popularity": 1454, + "trending": 87, + "defaultSort": 1390, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Tglg", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Tagbanwa", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 46212, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tagbanwa" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-11-19", + "popularity": 1655, + "trending": 1749, + "defaultSort": 1523, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Tai Le", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 57620, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tai-le" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-11-09", + "dateAdded": "2020-11-19", + "popularity": 1670, + "trending": 1779, + "defaultSort": 1535, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Tai Tham", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 172864, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tai-tham" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.589 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.589 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.589 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.589 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-14", + "dateAdded": "2020-11-19", + "popularity": 1607, + "trending": 1753, + "defaultSort": 1483, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Tai Viet", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 70236, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tai-viet" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2020-11-19", + "popularity": 1597, + "trending": 1689, + "defaultSort": 1477, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Tavt", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Takri", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 71096, + "subsets": [ + "menu", + "latin", + "latin-ext", + "takri" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.262 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-08-17", + "dateAdded": "2020-11-19", + "popularity": 1575, + "trending": 1680, + "defaultSort": 1463, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Takr", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Tamil", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 340668, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tamil" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-04-27", + "dateAdded": "2020-11-19", + "popularity": 336, + "trending": 153, + "defaultSort": 335, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Taml", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Tamil Supplement", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 67716, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tamil-supplement" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-06-29", + "dateAdded": "2020-11-19", + "popularity": 1683, + "trending": 1566, + "defaultSort": 1545, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Taml", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Tangsa", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 87624, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tangsa" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2022-09-11", + "popularity": 1537, + "trending": 306, + "defaultSort": 1366, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Tnsa", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Telugu", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 902620, + "subsets": [ + "menu", + "latin", + "latin-ext", + "telugu" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.352 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.352 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.352 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.352 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.352 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.352 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.352 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.352 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.352 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-04-04", + "dateAdded": "2020-11-19", + "popularity": 969, + "trending": 1722, + "defaultSort": 959, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Telu", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Thaana", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 112776, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thaana" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.493 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.493 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.493 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.493 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.493 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.493 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.493 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.493 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.493 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-03-09", + "dateAdded": "2020-11-19", + "popularity": 1543, + "trending": 422, + "defaultSort": 1443, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Thaa", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Thai", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 218404, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.511 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.511 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.511 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.511 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.511 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.511 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.511 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.511 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.511 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2022-09-21", + "dateAdded": "2020-11-19", + "popularity": 249, + "trending": 1520, + "defaultSort": 245, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Thai Looped", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 104587, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-04-27", + "dateAdded": "2020-11-19", + "popularity": 1395, + "trending": 911, + "defaultSort": 1342, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Thai", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Tifinagh", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 117568, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tifinagh" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2020-11-19", + "popularity": 1645, + "trending": 413, + "defaultSort": 1516, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Tfng", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Tirhuta", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 137848, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tirhuta" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.545 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-07-24", + "dateAdded": "2020-11-19", + "popularity": 1635, + "trending": 1664, + "defaultSort": 1507, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Tirh", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Ugaritic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 53244, + "subsets": [ + "menu", + "latin", + "latin-ext", + "ugaritic" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.124 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-05-23", + "dateAdded": "2020-11-19", + "popularity": 1589, + "trending": 1331, + "defaultSort": 1471, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Ugar", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Vai", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 128852, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vai" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-09-27", + "dateAdded": "2020-11-19", + "popularity": 1637, + "trending": 1404, + "defaultSort": 1509, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Vithkuqi", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 121084, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vithkuqi" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-07-24", + "dateAdded": "2022-10-10", + "popularity": 1550, + "trending": 1760, + "defaultSort": 1327, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Vith", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Wancho", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 64880, + "subsets": [ + "menu", + "latin", + "latin-ext", + "wancho" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.257 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-09-27", + "dateAdded": "2020-11-19", + "popularity": 1659, + "trending": 1599, + "defaultSort": 1526, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Warang Citi", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 86880, + "subsets": [ + "menu", + "latin", + "latin-ext", + "warang-citi" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.142 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-09-27", + "dateAdded": "2020-11-19", + "popularity": 1642, + "trending": 1684, + "defaultSort": 1513, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Yi", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 331328, + "subsets": [ + "menu", + "latin", + "latin-ext", + "yi" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-11-19", + "popularity": 1618, + "trending": 1537, + "defaultSort": 1491, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Sans Zanabazar Square", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 71400, + "subsets": [ + "menu", + "latin", + "latin-ext", + "zanabazar-square" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.442 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2020-11-19", + "popularity": 1643, + "trending": 1534, + "defaultSort": 1514, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Zanb", + "primaryLanguage": "" + }, + { + "family": "Noto Serif", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 2415170, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.362 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.362 + }, + "700i": { + "thickness": 6, + "slant": 5, + "width": 8, + "lineHeight": 1.362 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-05-31", + "dateAdded": "2013-02-27", + "popularity": 46, + "trending": 398, + "defaultSort": 45, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Ahom", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 84780, + "subsets": [ + "menu", + "ahom", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.655 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-04-27", + "dateAdded": "2020-11-19", + "popularity": 1565, + "trending": 1601, + "defaultSort": 1458, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Ahom", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Armenian", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 288484, + "subsets": [ + "menu", + "armenian", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-11-19", + "popularity": 1205, + "trending": 128, + "defaultSort": 1177, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Armn", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Balinese", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 125940, + "subsets": [ + "menu", + "balinese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.795 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-05-09", + "dateAdded": "2020-11-19", + "popularity": 1603, + "trending": 1711, + "defaultSort": 1480, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Bali", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Bengali", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 1055548, + "subsets": [ + "menu", + "bengali", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.594 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.594 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.594 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.594 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.594 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.594 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.594 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.594 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.594 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2022-09-21", + "dateAdded": "2020-11-19", + "popularity": 340, + "trending": 1292, + "defaultSort": 338, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Devanagari", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 860548, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.555 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.555 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.555 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.555 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.555 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.555 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.555 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.555 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.555 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-11-19", + "popularity": 360, + "trending": 53, + "defaultSort": 360, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Deva", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Display", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 1917960, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-11-19", + "popularity": 497, + "trending": 1516, + "defaultSort": 503, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Dogra", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 63576, + "subsets": [ + "menu", + "dogra", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.494 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-13", + "dateAdded": "2020-11-19", + "popularity": 1671, + "trending": 1570, + "defaultSort": 1536, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Dogr", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Ethiopic", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 1057996, + "subsets": [ + "menu", + "ethiopic", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-14", + "dateAdded": "2020-11-19", + "popularity": 1504, + "trending": 1048, + "defaultSort": 1419, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Ethi", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Georgian", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 383484, + "subsets": [ + "menu", + "georgian", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-11-19", + "popularity": 1073, + "trending": 266, + "defaultSort": 1056, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Geor", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Grantha", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 428384, + "subsets": [ + "menu", + "grantha", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.824 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-09-27", + "dateAdded": "2020-11-19", + "popularity": 1650, + "trending": 1629, + "defaultSort": 1519, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Gujarati", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 377904, + "subsets": [ + "menu", + "gujarati", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.447 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.447 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.447 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.447 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.447 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.447 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.447 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.447 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.447 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-04-27", + "dateAdded": "2020-11-19", + "popularity": 1397, + "trending": 1303, + "defaultSort": 1344, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Gujr", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Gurmukhi", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 144664, + "subsets": [ + "menu", + "gurmukhi", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.434 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.434 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.434 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.434 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.434 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.434 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.434 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.434 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.434 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-04-27", + "dateAdded": "2020-11-19", + "popularity": 1629, + "trending": 1657, + "defaultSort": 1501, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Guru", + "primaryLanguage": "" + }, + { + "family": "Noto Serif HK", + "displayName": "Noto Serif Hong Kong", + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 59915920, + "subsets": [ + "menu", + "chinese-hongkong", + "cyrillic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2022-09-27", + "dateAdded": "2022-05-11", + "popularity": 1249, + "trending": 1731, + "defaultSort": 1213, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Hebrew", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 175792, + "subsets": [ + "menu", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.186 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.186 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.186 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.186 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.186 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.186 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.186 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.186 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.186 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-11-19", + "popularity": 952, + "trending": 1647, + "defaultSort": 942, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Hebr", + "primaryLanguage": "" + }, + { + "family": "Noto Serif JP", + "displayName": "Noto Serif Japanese", + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 6178404, + "subsets": [ + "menu", + "japanese", + "latin" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-09-27", + "dateAdded": "2018-08-22", + "popularity": 73, + "trending": 362, + "defaultSort": 69, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Serif KR", + "displayName": "Noto Serif Korean", + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 7149412, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-09-27", + "dateAdded": "2018-08-22", + "popularity": 219, + "trending": 1627, + "defaultSort": 213, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Kannada", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 491276, + "subsets": [ + "menu", + "kannada", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.62 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.62 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.62 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.62 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.62 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.62 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.62 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.62 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.62 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-04-27", + "dateAdded": "2020-11-19", + "popularity": 1259, + "trending": 80, + "defaultSort": 1222, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Knda", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Khitan Small Script", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 851848, + "subsets": [ + "menu", + "khitan-small-script", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 4 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-07-10", + "popularity": 1585, + "trending": 1748, + "defaultSort": 427, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Khmer", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 479080, + "subsets": [ + "menu", + "khmer", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-11-19", + "popularity": 1393, + "trending": 268, + "defaultSort": 1340, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Khmr", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Khojki", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 230576, + "subsets": [ + "menu", + "khojki", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.856 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.856 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.856 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.856 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-13", + "dateAdded": "2022-08-29", + "popularity": 1574, + "trending": 1499, + "defaultSort": 1383, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Khoj", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Lao", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 217332, + "subsets": [ + "menu", + "lao", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.656 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.656 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.656 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.656 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.656 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.656 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.656 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.656 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.656 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-09-27", + "dateAdded": "2020-11-19", + "popularity": 1510, + "trending": 1851, + "defaultSort": 1421, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Laoo", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Makasar", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 57888, + "subsets": [ + "menu", + "latin", + "latin-ext", + "makasar" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-06-29", + "dateAdded": "2023-06-27", + "popularity": 1576, + "trending": 1725, + "defaultSort": 493, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Maka", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Malayalam", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 242048, + "subsets": [ + "menu", + "latin", + "latin-ext", + "malayalam" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.247 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.247 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.247 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.247 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.247 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.247 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.247 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.247 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.247 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-11-19", + "popularity": 821, + "trending": 273, + "defaultSort": 816, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Mlym", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Myanmar", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 250640, + "subsets": [ + "menu", + "myanmar" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.499 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.499 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.499 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.499 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.499 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.499 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.499 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.499 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.499 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-09-27", + "dateAdded": "2020-11-19", + "popularity": 1520, + "trending": 1699, + "defaultSort": 1565, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Serif NP Hmong", + "displayName": "Noto Serif Nyiakeng Puachue Hmong", + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 133168, + "subsets": [ + "menu", + "latin", + "nyiakeng-puachue-hmong" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2022-12-07", + "dateAdded": "2020-11-19", + "popularity": 1281, + "trending": 13, + "defaultSort": 58, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Oriya", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 241144, + "subsets": [ + "menu", + "latin", + "latin-ext", + "oriya" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.409 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.409 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.409 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.409 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-03-09", + "dateAdded": "2022-07-04", + "popularity": 1652, + "trending": 1401, + "defaultSort": 1422, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Orya", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Ottoman Siyaq", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 80000, + "subsets": [ + "menu", + "latin", + "latin-ext", + "ottoman-siyaq-numbers" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.703 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-09-13", + "dateAdded": "2023-06-21", + "popularity": 1515, + "trending": 485, + "defaultSort": 526, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Serif SC", + "displayName": "Noto Serif Simplified Chinese", + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 11217064, + "subsets": [ + "menu", + "chinese-simplified", + "latin" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-09-27", + "dateAdded": "2018-12-03", + "popularity": 352, + "trending": 556, + "defaultSort": 352, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Sinhala", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 1026928, + "subsets": [ + "menu", + "latin", + "latin-ext", + "sinhala" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.304 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-11-19", + "popularity": 1419, + "trending": 1300, + "defaultSort": 1364, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Sinh", + "primaryLanguage": "" + }, + { + "family": "Noto Serif TC", + "displayName": "Noto Serif Traditional Chinese", + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 5832886, + "subsets": [ + "menu", + "chinese-traditional", + "latin" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.437 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2022-09-27", + "dateAdded": "2018-12-03", + "popularity": 193, + "trending": 1448, + "defaultSort": 186, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Tamil", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 421226, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tamil" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.561 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.561 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.561 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.561 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.561 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.561 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.561 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.561 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.561 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.561 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.561 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.561 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.561 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.561 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.561 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.561 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.561 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.561 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-04-27", + "dateAdded": "2020-11-19", + "popularity": 1505, + "trending": 1561, + "defaultSort": 1420, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Taml", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Tangut", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 5726004, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tangut" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.006 + } + }, + "axes": [], + "designers": [ + "Google" + ], + "lastModified": "2023-05-23", + "dateAdded": "2020-11-19", + "popularity": 1389, + "trending": 944, + "defaultSort": 1337, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Tang", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Telugu", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 550624, + "subsets": [ + "menu", + "latin", + "latin-ext", + "telugu" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.352 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.352 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.352 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.352 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.352 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.352 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.352 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.352 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.352 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-04-04", + "dateAdded": "2020-11-19", + "popularity": 1178, + "trending": 1804, + "defaultSort": 1154, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Telu", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Thai", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 281076, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.598 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.598 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.598 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.598 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.598 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.598 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.598 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.598 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.598 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2022-09-21", + "dateAdded": "2020-11-19", + "popularity": 1024, + "trending": 1796, + "defaultSort": 1012, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Tibetan", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 2063504, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tibetan" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.815 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.815 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.815 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.815 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.815 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.815 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.815 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.815 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.815 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-03-09", + "dateAdded": "2020-11-19", + "popularity": 1511, + "trending": 383, + "defaultSort": 1423, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Tibt", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Toto", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 68452, + "subsets": [ + "menu", + "latin", + "latin-ext", + "toto" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.303 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.303 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.303 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.303 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-03-09", + "dateAdded": "2022-09-04", + "popularity": 1573, + "trending": 1208, + "defaultSort": 1375, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Toto", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Vithkuqi", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 134540, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vithkuqi" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.362 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-07-24", + "dateAdded": "2022-10-10", + "popularity": 1408, + "trending": 1781, + "defaultSort": 1326, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Vith", + "primaryLanguage": "" + }, + { + "family": "Noto Serif Yezidi", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 112384, + "subsets": [ + "menu", + "latin", + "latin-ext", + "yezidi" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-07-24", + "dateAdded": "2020-11-19", + "popularity": 1605, + "trending": 1459, + "defaultSort": 1481, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "Yezi", + "primaryLanguage": "" + }, + { + "family": "Noto Traditional Nushu", + "displayName": "Noto Traditional N\u00FCshu", + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 292524, + "subsets": [ + "menu", + "latin", + "latin-ext", + "nushu" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.172 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.172 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.172 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.172 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.172 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Google" + ], + "lastModified": "2023-05-23", + "dateAdded": "2020-11-19", + "popularity": 1561, + "trending": 1125, + "defaultSort": 1454, + "androidFragment": null, + "isNoto": true, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nova Cut", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 40359, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.20703125 + } + }, + "axes": [], + "designers": [ + "Wojciech Kalinowski" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-03-23", + "popularity": 1404, + "trending": 949, + "defaultSort": 1352, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nova Flat", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 39835, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.20703125 + } + }, + "axes": [], + "designers": [ + "Wojciech Kalinowski" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-03-23", + "popularity": 1127, + "trending": 1383, + "defaultSort": 1107, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nova Mono", + "displayName": null, + "category": "Monospace", + "stroke": null, + "classifications": [ + "Monospace", + "Display" + ], + "size": 302380, + "subsets": [ + "menu", + "greek", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.3935546875 + } + }, + "axes": [], + "designers": [ + "Wojciech Kalinowski" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-03-23", + "popularity": 615, + "trending": 1201, + "defaultSort": 626, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nova Oval", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 41727, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.20703125 + } + }, + "axes": [], + "designers": [ + "Wojciech Kalinowski" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-03-23", + "popularity": 1392, + "trending": 229, + "defaultSort": 1339, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nova Round", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 41309, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.20703125 + } + }, + "axes": [], + "designers": [ + "Wojciech Kalinowski" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-03-23", + "popularity": 902, + "trending": 314, + "defaultSort": 891, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nova Script", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 117388, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.20703125 + } + }, + "axes": [], + "designers": [ + "Wojciech Kalinowski" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-03-23", + "popularity": 1416, + "trending": 1196, + "defaultSort": 1361, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nova Slim", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 39969, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.20703125 + } + }, + "axes": [], + "designers": [ + "Wojciech Kalinowski" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-03-23", + "popularity": 1344, + "trending": 1146, + "defaultSort": 1299, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nova Square", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 87968, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.20703125 + } + }, + "axes": [], + "designers": [ + "Wojciech Kalinowski" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-04-14", + "popularity": 1055, + "trending": 1104, + "defaultSort": 1039, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Numans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 19302, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.1748046875 + } + }, + "axes": [], + "designers": [ + "Jovanny Lemonad" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-08-17", + "popularity": 824, + "trending": 861, + "defaultSort": 818, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nunito", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 279382, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "1000": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "1000i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "300": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.364 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.364 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.364 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + } + }, + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 1000, + "defaultValue": 400 + } + ], + "designers": [ + "Vernon Adams", + "Cyreal", + "Jacques Le Bailly" + ], + "lastModified": "2023-09-14", + "dateAdded": "2012-08-12", + "popularity": 25, + "trending": 973, + "defaultSort": 26, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nunito Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 564826, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "1000": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "1000i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.364 + } + }, + "axes": [ + { + "tag": "YTLC", + "min": 440, + "max": 540, + "defaultValue": 500 + }, + { + "tag": "opsz", + "min": 6, + "max": 12, + "defaultValue": 12 + }, + { + "tag": "wdth", + "min": 75, + "max": 125, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 200, + "max": 1000, + "defaultValue": 400 + } + ], + "designers": [ + "Vernon Adams", + "Jacques Le Bailly", + "Manvel Shmavonyan", + "Alexei Vanyashin" + ], + "lastModified": "2023-04-27", + "dateAdded": "2016-12-07", + "popularity": 20, + "trending": 863, + "defaultSort": 20, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Nuosu SIL", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 259188, + "subsets": [ + "menu", + "latin", + "latin-ext", + "yi" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.318359375 + } + }, + "axes": [], + "designers": [ + "SIL International" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-04-28", + "popularity": 1238, + "trending": 1256, + "defaultSort": 1204, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Yiii", + "primaryLanguage": "" + }, + { + "family": "Odibee Sans", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 46220, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.108 + } + }, + "axes": [], + "designers": [ + "James Barnard" + ], + "lastModified": "2023-08-25", + "dateAdded": "2019-11-08", + "popularity": 646, + "trending": 892, + "defaultSort": 657, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Odor Mean Chey", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 103900, + "subsets": [ + "menu", + "khmer", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.806640625 + } + }, + "axes": [], + "designers": [ + "Danh Hong" + ], + "lastModified": "2022-05-10", + "dateAdded": "2011-03-02", + "popularity": 1250, + "trending": 1830, + "defaultSort": 1214, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Offside", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 61824, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.261 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-10-26", + "popularity": 1098, + "trending": 1181, + "defaultSort": 1080, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Oi", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 345584, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "tamil", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.58 + } + }, + "axes": [], + "designers": [ + "Kostas Bartsokas" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-02-03", + "popularity": 1441, + "trending": 1128, + "defaultSort": 1381, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Old Standard TT", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 263162, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.236 + }, + "400i": { + "thickness": 4, + "slant": 5, + "width": 7, + "lineHeight": 1.236 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.236 + } + }, + "axes": [], + "designers": [ + "Alexey Kryukov" + ], + "lastModified": "2023-08-25", + "dateAdded": "2010-05-18", + "popularity": 223, + "trending": 809, + "defaultSort": 217, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Oldenburg", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 46248, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.25439453125 + } + }, + "axes": [], + "designers": [ + "Nicole Fally" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 1202, + "trending": 786, + "defaultSort": 1175, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ole", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 194772, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2022-09-21", + "dateAdded": "2021-12-02", + "popularity": 1580, + "trending": 1688, + "defaultSort": 1466, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Oleo Script", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 18710, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 4, + "width": 6, + "lineHeight": 1.383 + }, + "700": { + "thickness": 7, + "slant": 4, + "width": 6, + "lineHeight": 1.383 + } + }, + "axes": [], + "designers": [ + "soytutype fonts" + ], + "lastModified": "2022-05-10", + "dateAdded": "2012-03-29", + "popularity": 407, + "trending": 1188, + "defaultSort": 410, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Oleo Script Swash Caps", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 18710, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 4, + "width": 6, + "lineHeight": 1.383 + }, + "700": { + "thickness": 8, + "slant": 4, + "width": 6, + "lineHeight": 1.383 + } + }, + "axes": [], + "designers": [ + "soytutype fonts" + ], + "lastModified": "2022-05-10", + "dateAdded": "2012-11-12", + "popularity": 729, + "trending": 1046, + "defaultSort": 737, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Onest", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 124376, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.275 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.275 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.275 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.275 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.275 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.275 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.275 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.275 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.275 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Andrey Kudryavtsev", + "Dmitri Voloshin" + ], + "lastModified": "2023-09-27", + "dateAdded": "2023-09-26", + "popularity": 1209, + "trending": 6, + "defaultSort": 14, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Oooh Baby", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 135104, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.225 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-05-02", + "dateAdded": "2021-11-26", + "popularity": 793, + "trending": 1527, + "defaultSort": 792, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Open Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 558374, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "hebrew", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": 3, + "slant": 1, + "width": 7, + "lineHeight": 1.36181640625 + }, + "300i": { + "thickness": 3, + "slant": 5, + "width": 7, + "lineHeight": 1.36181640625 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.36181640625 + }, + "400i": { + "thickness": 4, + "slant": 5, + "width": 7, + "lineHeight": 1.36181640625 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36181640625 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36181640625 + }, + "600": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.36181640625 + }, + "600i": { + "thickness": 6, + "slant": 4, + "width": 7, + "lineHeight": 1.36181640625 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.36181640625 + }, + "700i": { + "thickness": 7, + "slant": 5, + "width": 7, + "lineHeight": 1.36181640625 + }, + "800": { + "thickness": 8, + "slant": 1, + "width": 8, + "lineHeight": 1.36181640625 + }, + "800i": { + "thickness": 8, + "slant": 5, + "width": 8, + "lineHeight": 1.36181640625 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 300, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Steve Matteson" + ], + "lastModified": "2023-09-14", + "dateAdded": "2011-02-02", + "popularity": 4, + "trending": 917, + "defaultSort": 5, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Oranienbaum", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 141220, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.155 + } + }, + "axes": [], + "designers": [ + "Oleg Pospelov", + "Jovanny Lemonad" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-08-20", + "popularity": 496, + "trending": 1226, + "defaultSort": 502, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Orbit", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 784480, + "subsets": [ + "menu", + "korean", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Sooun Cho", + "JAMO" + ], + "lastModified": "2023-06-07", + "dateAdded": "2023-06-05", + "popularity": 1553, + "trending": 765, + "defaultSort": 613, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Kore", + "primaryLanguage": "" + }, + { + "family": "Orbitron", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 38576, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.254 + }, + "500": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.254 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.254 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.254 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.254 + }, + "900": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.254 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Matt McInerney" + ], + "lastModified": "2023-08-25", + "dateAdded": "2010-12-15", + "popularity": 143, + "trending": 907, + "defaultSort": 136, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Oregano", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 83660, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 5, + "lineHeight": 1.291015625 + }, + "400i": { + "thickness": 5, + "slant": 9, + "width": 6, + "lineHeight": 1.2900390625 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-08-13", + "popularity": 774, + "trending": 715, + "defaultSort": 774, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Orelega One", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 133732, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.09033203125 + } + }, + "axes": [], + "designers": [ + "Haruki Wakamatsu" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-03-11", + "popularity": 953, + "trending": 1277, + "defaultSort": 943, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Orienta", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 55176, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.195 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-03-21", + "dateAdded": "2012-09-07", + "popularity": 938, + "trending": 550, + "defaultSort": 930, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Original Surfer", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 57792, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.2509765625 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-07", + "popularity": 762, + "trending": 1097, + "defaultSort": 767, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Oswald", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 172088, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.482 + }, + "300": { + "thickness": 4, + "slant": 1, + "width": 5, + "lineHeight": 1.482 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.482 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.482 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.482 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.482 + } + }, + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Vernon Adams", + "Kalapi Gajjar", + "Cyreal" + ], + "lastModified": "2023-08-17", + "dateAdded": "2012-02-29", + "popularity": 16, + "trending": 596, + "defaultSort": 16, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Outfit", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 110884, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Smartsheet Inc", + "Rodrigo Fuenzalida" + ], + "lastModified": "2023-04-27", + "dateAdded": "2021-09-27", + "popularity": 91, + "trending": 392, + "defaultSort": 87, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Over the Rainbow", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 47508, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 2.0400390625 + } + }, + "axes": [], + "designers": [ + "Kimberly Geswein" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-04-27", + "popularity": 890, + "trending": 1540, + "defaultSort": 882, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Overlock", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 44762, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.22 + }, + "400i": { + "thickness": 4, + "slant": 3, + "width": 6, + "lineHeight": 1.22 + }, + "700": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.22 + }, + "700i": { + "thickness": 5, + "slant": 3, + "width": 6, + "lineHeight": 1.22 + }, + "900": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.22 + }, + "900i": { + "thickness": 7, + "slant": 3, + "width": 7, + "lineHeight": 1.22 + } + }, + "axes": [], + "designers": [ + "Dario Manuel Muhafara" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 526, + "trending": 797, + "defaultSort": 534, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Overlock SC", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 36640, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.22 + } + }, + "axes": [], + "designers": [ + "Dario Manuel Muhafara" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 1035, + "trending": 1438, + "defaultSort": 1021, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Overpass", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 304014, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Delve Withrington", + "Dave Bailey", + "Thomas Jockin" + ], + "lastModified": "2023-09-14", + "dateAdded": "2016-12-02", + "popularity": 108, + "trending": 714, + "defaultSort": 103, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Overpass Mono", + "displayName": null, + "category": "Monospace", + "stroke": null, + "classifications": [ + "Monospace" + ], + "size": 258800, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.266 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Delve Withrington", + "Dave Bailey", + "Thomas Jockin" + ], + "lastModified": "2023-09-14", + "dateAdded": "2016-12-02", + "popularity": 567, + "trending": 541, + "defaultSort": 575, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ovo", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 23887, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.125 + } + }, + "axes": [], + "designers": [ + "Nicole Fally" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-07-20", + "popularity": 593, + "trending": 842, + "defaultSort": 601, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Oxanium", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 43536, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Severin Meyer" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-01-30", + "popularity": 225, + "trending": 18, + "defaultSort": 115, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Oxygen", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 46828, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.2626953125 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.2626953125 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.2626953125 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-03-29", + "popularity": 71, + "trending": 910, + "defaultSort": 66, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Oxygen Mono", + "displayName": null, + "category": "Monospace", + "stroke": null, + "classifications": [ + "Monospace" + ], + "size": 34272, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.31201171875 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-05-02", + "dateAdded": "2012-09-08", + "popularity": 630, + "trending": 605, + "defaultSort": 639, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "PT Mono", + "displayName": null, + "category": "Monospace", + "stroke": null, + "classifications": [ + "Monospace" + ], + "size": 100999, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.12 + } + }, + "axes": [], + "designers": [ + "ParaType" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-02-29", + "popularity": 320, + "trending": 933, + "defaultSort": 319, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "PT Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 229341, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.294 + }, + "400i": { + "thickness": 4, + "slant": 5, + "width": 6, + "lineHeight": 1.294 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.294 + }, + "700i": { + "thickness": 6, + "slant": 5, + "width": 6, + "lineHeight": 1.294 + } + }, + "axes": [], + "designers": [ + "ParaType" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-09-21", + "popularity": 27, + "trending": 925, + "defaultSort": 28, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "PT Sans Caption", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 197494, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.294 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.294 + } + }, + "axes": [], + "designers": [ + "ParaType" + ], + "lastModified": "2023-05-02", + "dateAdded": "2010-09-21", + "popularity": 202, + "trending": 1000, + "defaultSort": 194, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "PT Sans Narrow", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 198698, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.294 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.294 + } + }, + "axes": [], + "designers": [ + "ParaType" + ], + "lastModified": "2023-05-02", + "dateAdded": "2010-09-21", + "popularity": 63, + "trending": 631, + "defaultSort": 59, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "PT Serif", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 180768, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.325 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.325 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.325 + }, + "700i": { + "thickness": 6, + "slant": 4, + "width": 7, + "lineHeight": 1.325 + } + }, + "axes": [], + "designers": [ + "ParaType" + ], + "lastModified": "2023-05-02", + "dateAdded": "2011-02-09", + "popularity": 45, + "trending": 1163, + "defaultSort": 44, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "PT Serif Caption", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 204576, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.325 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.325 + } + }, + "axes": [], + "designers": [ + "ParaType" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-02-09", + "popularity": 446, + "trending": 288, + "defaultSort": 448, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Pacifico", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 329380, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 4, + "width": 6, + "lineHeight": 1.756 + } + }, + "axes": [], + "designers": [ + "Vernon Adams", + "Jacques Le Bailly", + "Botjo Nikoltchev", + "Ani Petrova" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-03-09", + "popularity": 84, + "trending": 590, + "defaultSort": 81, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Padauk", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 499082, + "subsets": [ + "menu", + "latin", + "latin-ext", + "myanmar" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.474609375 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.474609375 + } + }, + "axes": [], + "designers": [ + "SIL International" + ], + "lastModified": "2022-11-09", + "dateAdded": "2016-11-08", + "popularity": 723, + "trending": 1229, + "defaultSort": 731, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Mymr", + "primaryLanguage": "" + }, + { + "family": "Padyakke Expanded One", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [ + "Display" + ], + "size": 390600, + "subsets": [ + "menu", + "kannada", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.441 + } + }, + "axes": [], + "designers": [ + "James Puckett" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-12-05", + "popularity": 1647, + "trending": 1467, + "defaultSort": 1244, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Knda", + "primaryLanguage": "" + }, + { + "family": "Palanquin", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 478114, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": 3, + "slant": 1, + "width": 6, + "lineHeight": 1.811 + }, + "200": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.811 + }, + "300": { + "thickness": 4, + "slant": 1, + "width": 5, + "lineHeight": 1.811 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 5, + "lineHeight": 1.811 + }, + "500": { + "thickness": 5, + "slant": 1, + "width": 5, + "lineHeight": 1.811 + }, + "600": { + "thickness": 5, + "slant": 1, + "width": 5, + "lineHeight": 1.811 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.811 + } + }, + "axes": [], + "designers": [ + "Pria Ravichandran" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-01-28", + "popularity": 416, + "trending": 397, + "defaultSort": 421, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Palanquin Dark", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 511753, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.811 + }, + "500": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.811 + }, + "600": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.811 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.811 + } + }, + "axes": [], + "designers": [ + "Pria Ravichandran" + ], + "lastModified": "2023-08-25", + "dateAdded": "2015-01-28", + "popularity": 456, + "trending": 738, + "defaultSort": 458, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Palette Mosaic", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 142520, + "subsets": [ + "menu", + "japanese", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Shibuya Font" + ], + "lastModified": "2023-05-31", + "dateAdded": "2021-04-13", + "popularity": 1500, + "trending": 1569, + "defaultSort": 1416, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Hira", + "primaryLanguage": "" + }, + { + "family": "Pangolin", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 592688, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.249 + } + }, + "axes": [], + "designers": [ + "Kevin Burke" + ], + "lastModified": "2022-09-21", + "dateAdded": "2017-01-11", + "popularity": 361, + "trending": 1084, + "defaultSort": 362, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Paprika", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 90580, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 3, + "width": 8, + "lineHeight": 1.419 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-10-26", + "popularity": 1083, + "trending": 1133, + "defaultSort": 1066, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Parisienne", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 34951, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 8, + "width": 6, + "lineHeight": 1.3623046875 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-01-25", + "popularity": 323, + "trending": 767, + "defaultSort": 322, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Passero One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 33624, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.1904296875 + } + }, + "axes": [], + "designers": [ + "Viktoriya Grabowska" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-08-31", + "popularity": 1318, + "trending": 1676, + "defaultSort": 1279, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Passion One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 24648, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 1, + "width": 6, + "lineHeight": 1.101 + }, + "700": { + "thickness": 8, + "slant": 1, + "width": 7, + "lineHeight": 1.101 + }, + "900": { + "thickness": 9, + "slant": 1, + "width": 7, + "lineHeight": 1.101 + } + }, + "axes": [], + "designers": [ + "Fontstage" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-13", + "popularity": 188, + "trending": 455, + "defaultSort": 180, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Passions Conflict", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 149128, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-10-07", + "popularity": 1172, + "trending": 854, + "defaultSort": 1148, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Pathway Extreme", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 265264, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.356 + } + }, + "axes": [ + { + "tag": "opsz", + "min": 8, + "max": 144, + "defaultValue": 12 + }, + { + "tag": "wdth", + "min": 75, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-04-20", + "dateAdded": "2023-04-19", + "popularity": 489, + "trending": 326, + "defaultSort": 492, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Pathway Gothic One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 49944, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 5, + "lineHeight": 1.152 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-04-27", + "dateAdded": "2013-06-05", + "popularity": 222, + "trending": 972, + "defaultSort": 216, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Patrick Hand", + "displayName": null, + "category": "Handwriting", + "stroke": "Sans Serif", + "classifications": [ + "Handwriting" + ], + "size": 214772, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.354 + } + }, + "axes": [], + "designers": [ + "Patrick Wagesreiter" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-07-06", + "popularity": 282, + "trending": 601, + "defaultSort": 279, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Patrick Hand SC", + "displayName": null, + "category": "Handwriting", + "stroke": "Sans Serif", + "classifications": [ + "Handwriting" + ], + "size": 167376, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.354 + } + }, + "axes": [], + "designers": [ + "Patrick Wagesreiter" + ], + "lastModified": "2023-08-25", + "dateAdded": "2013-02-27", + "popularity": 751, + "trending": 537, + "defaultSort": 757, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Pattaya", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 420092, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3876953125 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-05-31", + "popularity": 508, + "trending": 1390, + "defaultSort": 514, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Patua One", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 35624, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.219 + } + }, + "axes": [], + "designers": [ + "LatinoType" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 190, + "trending": 535, + "defaultSort": 182, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Pavanam", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 63100, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tamil" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.291 + } + }, + "axes": [], + "designers": [ + "Tharique Azeez" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-06-15", + "popularity": 964, + "trending": 1562, + "defaultSort": 954, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Paytone One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 114648, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 1, + "width": 8, + "lineHeight": 1.396 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-05-04", + "popularity": 211, + "trending": 81, + "defaultSort": 205, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Peddana", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 281364, + "subsets": [ + "menu", + "latin", + "telugu" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 5, + "lineHeight": 1.628 + } + }, + "axes": [], + "designers": [ + "Appaji Ambarisha Darbha" + ], + "lastModified": "2022-09-21", + "dateAdded": "2014-12-10", + "popularity": 1147, + "trending": 1308, + "defaultSort": 1125, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Peralta", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [ + "Display" + ], + "size": 59600, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.29443359375 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-07-11", + "popularity": 928, + "trending": 1015, + "defaultSort": 920, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Permanent Marker", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 74632, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 6, + "width": 8, + "lineHeight": 1.45703125 + } + }, + "axes": [], + "designers": [ + "Font Diner" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-01-06", + "popularity": 146, + "trending": 341, + "defaultSort": 139, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Petemoss", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 143236, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-10-07", + "popularity": 1485, + "trending": 1465, + "defaultSort": 1408, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Petit Formal Script", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 175068, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 7, + "width": 8, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Impallari Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-09-07", + "popularity": 563, + "trending": 294, + "defaultSort": 572, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Petrona", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 224374, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.128 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.128 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.128 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.128 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.128 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.128 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.128 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.128 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.128 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.128 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.128 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.128 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.128 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.128 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.128 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.128 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.128 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.128 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Ringo R. Seeber" + ], + "lastModified": "2023-03-21", + "dateAdded": "2020-07-14", + "popularity": 302, + "trending": 1492, + "defaultSort": 300, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Philosopher", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 113415, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.12 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.12 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.12 + }, + "700i": { + "thickness": 6, + "slant": 4, + "width": 7, + "lineHeight": 1.12 + } + }, + "axes": [], + "designers": [ + "Jovanny Lemonad" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-08-31", + "popularity": 189, + "trending": 1344, + "defaultSort": 181, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Phudu", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 129144, + "subsets": [ + "menu", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.225 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.225 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.225 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.225 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.225 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.225 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.225 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "D\u01B0\u01A1ng Tr\u1EA7n" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-01-30", + "popularity": 1160, + "trending": 1773, + "defaultSort": 1045, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Piazzolla", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 621536, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.42 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.42 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.42 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.42 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.42 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.42 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.42 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.42 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.42 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.42 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.42 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.42 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.42 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.42 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.42 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.42 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.42 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.42 + } + }, + "axes": [ + { + "tag": "opsz", + "min": 8, + "max": 30, + "defaultValue": 14 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Juan Pablo del Peral", + "Huerta Tipogr\u00E1fica" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-08-27", + "popularity": 1141, + "trending": 776, + "defaultSort": 1120, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Piedra", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 75984, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 6, + "lineHeight": 1.301 + } + }, + "axes": [], + "designers": [ + "Sudtipos" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-30", + "popularity": 1173, + "trending": 1798, + "defaultSort": 1149, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Pinyon Script", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 146484, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 9, + "width": 6, + "lineHeight": 1.24755859375 + } + }, + "axes": [], + "designers": [ + "Nicole Fally" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-10-12", + "popularity": 408, + "trending": 371, + "defaultSort": 411, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Pirata One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 56316, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.285 + } + }, + "axes": [], + "designers": [ + "Rodrigo Fuenzalida", + "Nicolas Massi" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-10-31", + "popularity": 531, + "trending": 356, + "defaultSort": 540, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Pixelify Sans", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 79160, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Stefie Justprince" + ], + "lastModified": "2023-09-27", + "dateAdded": "2023-09-26", + "popularity": 1084, + "trending": 5, + "defaultSort": 11, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Plaster", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 18428, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 1, + "width": 9, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Sorkin Type" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-13", + "popularity": 1295, + "trending": 1729, + "defaultSort": 1259, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Play", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 204862, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.157 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.157 + } + }, + "axes": [], + "designers": [ + "Jonas Hecksher" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-05-04", + "popularity": 114, + "trending": 312, + "defaultSort": 109, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Playball", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 190720, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 7, + "width": 6, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 325, + "trending": 584, + "defaultSort": 324, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Playfair", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 1144870, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "opsz", + "min": 5, + "max": 1200, + "defaultValue": 14 + }, + { + "tag": "wdth", + "min": 87.5, + "max": 112.5, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 300, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Claus Eggers S\u00F8rensen" + ], + "lastModified": "2023-06-21", + "dateAdded": "2023-04-12", + "popularity": 431, + "trending": 351, + "defaultSort": 435, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Playfair Display", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 289706, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.333 + }, + "400i": { + "thickness": 4, + "slant": 5, + "width": 7, + "lineHeight": 1.333 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.333 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.333 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.333 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.333 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.333 + }, + "700i": { + "thickness": 6, + "slant": 5, + "width": 7, + "lineHeight": 1.333 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.333 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.333 + }, + "900": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.333 + }, + "900i": { + "thickness": 7, + "slant": 5, + "width": 7, + "lineHeight": 1.333 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Claus Eggers S\u00F8rensen" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-16", + "popularity": 22, + "trending": 568, + "defaultSort": 22, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Playfair Display SC", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 202728, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.333 + }, + "400i": { + "thickness": 4, + "slant": 5, + "width": 8, + "lineHeight": 1.333 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.333 + }, + "700i": { + "thickness": 6, + "slant": 5, + "width": 8, + "lineHeight": 1.333 + }, + "900": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.333 + }, + "900i": { + "thickness": 7, + "slant": 5, + "width": 8, + "lineHeight": 1.333 + } + }, + "axes": [], + "designers": [ + "Claus Eggers S\u00F8rensen" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-10-26", + "popularity": 260, + "trending": 555, + "defaultSort": 258, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Plus Jakarta Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 179738, + "subsets": [ + "menu", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + } + }, + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Tokotype" + ], + "lastModified": "2023-06-22", + "dateAdded": "2022-03-23", + "popularity": 158, + "trending": 1591, + "defaultSort": 151, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Podkova", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 163368, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.108 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.108 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.108 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.108 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.108 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Cyreal" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-05-18", + "popularity": 546, + "trending": 544, + "defaultSort": 557, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Poiret One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 130176, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 2, + "slant": 1, + "width": 7, + "lineHeight": 1.17 + } + }, + "axes": [], + "designers": [ + "Denis Masharov" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-02-29", + "popularity": 250, + "trending": 415, + "defaultSort": 246, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Poller One", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 31588, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 1, + "width": 8, + "lineHeight": 1.1884765625 + } + }, + "axes": [], + "designers": [ + "Yvonne Sch\u00FCttler" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-09-28", + "popularity": 597, + "trending": 64, + "defaultSort": 604, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Poltawski Nowy", + "displayName": "P\u00F3\u0142tawski Nowy", + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 400108, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Adam P\u00F3\u0142tawski", + "Mateusz Machalski", + "Borys Kosmynka", + "Ania Wielu\u0144ska" + ], + "lastModified": "2023-05-31", + "dateAdded": "2023-04-19", + "popularity": 1356, + "trending": 1049, + "defaultSort": 769, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Poly", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 33294, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.188 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.188 + } + }, + "axes": [], + "designers": [ + "Nicol\u00E1s Silva" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-11-02", + "popularity": 850, + "trending": 1348, + "defaultSort": 840, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Pompiere", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 36632, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 5, + "lineHeight": 1.20166015625 + } + }, + "axes": [], + "designers": [ + "Karolina Lach" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-07-20", + "popularity": 830, + "trending": 551, + "defaultSort": 824, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Pontano Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 78532, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.28125 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.28125 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.28125 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.28125 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.28125 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-09-27", + "dateAdded": "2012-03-14", + "popularity": 386, + "trending": 836, + "defaultSort": 389, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Poor Story", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 3966768, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Yoon Design" + ], + "lastModified": "2022-09-27", + "dateAdded": "2018-02-23", + "popularity": 1134, + "trending": 342, + "defaultSort": 1113, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Poppins", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 170738, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "300": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.5 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.5 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "500": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.5 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "600": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.5 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + } + }, + "axes": [], + "designers": [ + "Indian Type Foundry", + "Jonny Pinhorn" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-06-03", + "popularity": 9, + "trending": 864, + "defaultSort": 10, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Port Lligat Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 34388, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.071 + } + }, + "axes": [], + "designers": [ + "Tipo" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-01-18", + "popularity": 1082, + "trending": 1273, + "defaultSort": 1065, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Port Lligat Slab", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 38160, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.071 + } + }, + "axes": [], + "designers": [ + "Tipo" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-01-18", + "popularity": 921, + "trending": 970, + "defaultSort": 911, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Potta One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 4918516, + "subsets": [ + "menu", + "japanese", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Font Zone 108" + ], + "lastModified": "2022-09-27", + "dateAdded": "2020-12-14", + "popularity": 919, + "trending": 389, + "defaultSort": 909, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Pragati Narrow", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 147822, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 3, + "lineHeight": 1.692 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 3, + "lineHeight": 1.692 + } + }, + "axes": [], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-04-22", + "popularity": 331, + "trending": 869, + "defaultSort": 329, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Praise", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 694316, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-10-12", + "popularity": 1288, + "trending": 531, + "defaultSort": 1255, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Prata", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 101284, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.355 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-09-07", + "popularity": 196, + "trending": 402, + "defaultSort": 189, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Preahvihear", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 91520, + "subsets": [ + "menu", + "khmer", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.806640625 + } + }, + "axes": [], + "designers": [ + "Danh Hong" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-03-02", + "popularity": 1329, + "trending": 599, + "defaultSort": 1286, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Press Start 2P", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 118204, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 1, + "width": 10, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "CodeMan38" + ], + "lastModified": "2023-05-02", + "dateAdded": "2012-04-04", + "popularity": 229, + "trending": 275, + "defaultSort": 223, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Pridi", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 213464, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.6 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.55 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.55 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.55 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.55 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.55 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-06-15", + "popularity": 382, + "trending": 1017, + "defaultSort": 384, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Princess Sofia", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 272628, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 3, + "width": 6, + "lineHeight": 1.546875 + } + }, + "axes": [], + "designers": [ + "Tart Workshop" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-02-15", + "popularity": 1076, + "trending": 1309, + "defaultSort": 1059, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Prociono", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 31136, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.22 + } + }, + "axes": [], + "designers": [ + "Barry Schwartz" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-08-31", + "popularity": 914, + "trending": 812, + "defaultSort": 903, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Prompt", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 164480, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.512 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.512 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.512 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.512 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.512 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.512 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.512 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.512 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.512 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.512 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.512 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.512 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.512 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.512 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.512 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.512 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.512 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.512 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-06-15", + "popularity": 88, + "trending": 1219, + "defaultSort": 84, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Prosto One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 96868, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.235 + } + }, + "axes": [], + "designers": [ + "Jovanny Lemonad", + "Pavel Emelyanov" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-02-29", + "popularity": 791, + "trending": 1187, + "defaultSort": 790, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Proza Libre", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 98388, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.365234375 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.357421875 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.357421875 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.357421875 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.357421875 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.357421875 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.357421875 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.357421875 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.365234375 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.357421875 + } + }, + "axes": [], + "designers": [ + "Jasper de Waard" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-06-15", + "popularity": 641, + "trending": 763, + "defaultSort": 652, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Public Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 105628, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.175 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.175 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.175 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.175 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.175 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.175 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.175 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.175 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.175 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.175 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.175 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.175 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.175 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.175 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.175 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.175 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.175 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.175 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "USWDS", + "Dan Williams", + "Pablo Impallari", + "Rodrigo Fuenzalida" + ], + "lastModified": "2023-09-14", + "dateAdded": "2019-06-07", + "popularity": 110, + "trending": 1023, + "defaultSort": 105, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Puppies Play", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 167944, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-10-12", + "popularity": 1578, + "trending": 1613, + "defaultSort": 1465, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Puritan", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 28730, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.1103515625 + }, + "400i": { + "thickness": 5, + "slant": 3, + "width": 7, + "lineHeight": 1.109375 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.125 + }, + "700i": { + "thickness": 6, + "slant": 3, + "width": 7, + "lineHeight": 1.125 + } + }, + "axes": [], + "designers": [ + "Ben Weiner" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-11-30", + "popularity": 947, + "trending": 579, + "defaultSort": 938, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Purple Purse", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 62868, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 1, + "width": 7, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-11-16", + "popularity": 1359, + "trending": 1730, + "defaultSort": 1311, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Qahiri", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 35996, + "subsets": [ + "menu", + "arabic", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.13333333333333 + } + }, + "axes": [], + "designers": [ + "Khaled Hosny" + ], + "lastModified": "2022-12-07", + "dateAdded": "2021-04-03", + "popularity": 1300, + "trending": 1588, + "defaultSort": 1264, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Quando", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 119688, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Joana Correia" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-07-10", + "popularity": 733, + "trending": 808, + "defaultSort": 741, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Quantico", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 21160, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.43 + }, + "400i": { + "thickness": 5, + "slant": 3, + "width": 7, + "lineHeight": 1.43 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.43 + }, + "700i": { + "thickness": 6, + "slant": 3, + "width": 7, + "lineHeight": 1.43 + } + }, + "axes": [], + "designers": [ + "MADType" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 385, + "trending": 289, + "defaultSort": 388, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Quattrocento", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 161574, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.108 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.108 + } + }, + "axes": [], + "designers": [ + "Impallari Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-03-20", + "popularity": 256, + "trending": 725, + "defaultSort": 252, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Quattrocento Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 39176, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.108 + }, + "400i": { + "thickness": 4, + "slant": 4, + "width": 7, + "lineHeight": 1.108 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.108 + }, + "700i": { + "thickness": 6, + "slant": 4, + "width": 7, + "lineHeight": 1.108 + } + }, + "axes": [], + "designers": [ + "Impallari Type" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-02-15", + "popularity": 233, + "trending": 966, + "defaultSort": 227, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Questrial", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 184176, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.03 + } + }, + "axes": [], + "designers": [ + "Joe Prince", + "Laura Meseguer" + ], + "lastModified": "2023-01-06", + "dateAdded": "2011-08-10", + "popularity": 134, + "trending": 433, + "defaultSort": 129, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Quicksand", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 124824, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": 1, + "slant": 1, + "width": 8, + "lineHeight": 1.25 + }, + "400": { + "thickness": 3, + "slant": 1, + "width": 8, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.25 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Andrew Paglinawan" + ], + "lastModified": "2023-09-14", + "dateAdded": "2011-10-19", + "popularity": 37, + "trending": 557, + "defaultSort": 37, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Quintessential", + "displayName": null, + "category": "Handwriting", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 73892, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.533203125 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-11-02", + "popularity": 445, + "trending": 245, + "defaultSort": 447, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Qwigley", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 87336, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 7, + "width": 4, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 693, + "trending": 1373, + "defaultSort": 702, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Qwitcher Grypen", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 193576, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-11-26", + "popularity": 1027, + "trending": 1387, + "defaultSort": 1015, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "REM", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 203176, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Octavio Pardo" + ], + "lastModified": "2023-07-24", + "dateAdded": "2023-07-20", + "popularity": 1159, + "trending": 26, + "defaultSort": 237, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Racing Sans One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 145796, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 5, + "width": 7, + "lineHeight": 1.26 + } + }, + "axes": [], + "designers": [ + "Impallari Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-08-13", + "popularity": 454, + "trending": 428, + "defaultSort": 456, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Radio Canada", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 466288, + "subsets": [ + "menu", + "canadian-aboriginal", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Charles Daoud", + "Coppers and Brasses", + "Alexandre Saumier Demers", + "Jacques Le Bailly" + ], + "lastModified": "2023-05-09", + "dateAdded": "2022-04-25", + "popularity": 891, + "trending": 110, + "defaultSort": 883, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Radley", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 86712, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.263671875 + }, + "400i": { + "thickness": 5, + "slant": 5, + "width": 7, + "lineHeight": 1.263671875 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-13", + "popularity": 759, + "trending": 1122, + "defaultSort": 764, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rajdhani", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 387431, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": 2, + "slant": 1, + "width": 6, + "lineHeight": 1.276 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.276 + }, + "500": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.276 + }, + "600": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.276 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.276 + } + }, + "axes": [], + "designers": [ + "Indian Type Foundry" + ], + "lastModified": "2022-09-21", + "dateAdded": "2014-07-09", + "popularity": 103, + "trending": 1511, + "defaultSort": 99, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rakkas", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 146824, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.491 + } + }, + "axes": [], + "designers": [ + "Zeynep Akay" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-06-15", + "popularity": 622, + "trending": 346, + "defaultSort": 632, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Raleway", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 315414, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": 1, + "slant": 1, + "width": 7, + "lineHeight": 1.174 + }, + "100i": { + "thickness": 1, + "slant": 4, + "width": 7, + "lineHeight": 1.174 + }, + "200": { + "thickness": 2, + "slant": 1, + "width": 7, + "lineHeight": 1.174 + }, + "200i": { + "thickness": 2, + "slant": 4, + "width": 7, + "lineHeight": 1.174 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 7, + "lineHeight": 1.174 + }, + "300i": { + "thickness": 3, + "slant": 4, + "width": 7, + "lineHeight": 1.174 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.174 + }, + "400i": { + "thickness": 4, + "slant": 4, + "width": 7, + "lineHeight": 1.174 + }, + "500": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.174 + }, + "500i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.174 + }, + "600": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.174 + }, + "600i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.174 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.174 + }, + "700i": { + "thickness": 6, + "slant": 4, + "width": 7, + "lineHeight": 1.174 + }, + "800": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.174 + }, + "800i": { + "thickness": 7, + "slant": 4, + "width": 7, + "lineHeight": 1.174 + }, + "900": { + "thickness": 8, + "slant": 1, + "width": 8, + "lineHeight": 1.174 + }, + "900i": { + "thickness": 8, + "slant": 4, + "width": 7, + "lineHeight": 1.174 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Matt McInerney", + "Pablo Impallari", + "Rodrigo Fuenzalida" + ], + "lastModified": "2023-09-14", + "dateAdded": "2012-09-07", + "popularity": 17, + "trending": 845, + "defaultSort": 17, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Raleway Dots", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 464888, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 1, + "slant": 1, + "width": 7, + "lineHeight": 1.131 + } + }, + "axes": [], + "designers": [ + "Matt McInerney", + "Pablo Impallari", + "Rodrigo Fuenzalida", + "Brenda Gallo" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-09-07", + "popularity": 746, + "trending": 189, + "defaultSort": 753, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ramabhadra", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 251151, + "subsets": [ + "menu", + "latin", + "telugu" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.89759036144578 + } + }, + "axes": [], + "designers": [ + "Purushoth Kumar Guttula" + ], + "lastModified": "2022-04-27", + "dateAdded": "2014-12-10", + "popularity": 368, + "trending": 523, + "defaultSort": 369, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ramaraja", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 272499, + "subsets": [ + "menu", + "latin", + "telugu" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.71333333333333 + } + }, + "axes": [], + "designers": [ + "Appaji Ambarisha Darbha" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-01-08", + "popularity": 1066, + "trending": 1708, + "defaultSort": 1049, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rambla", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 16956, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.224 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 6, + "lineHeight": 1.224 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.224 + }, + "700i": { + "thickness": 7, + "slant": 4, + "width": 7, + "lineHeight": 1.224 + } + }, + "axes": [], + "designers": [ + "Martin Sommaruga" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-10-31", + "popularity": 498, + "trending": 1474, + "defaultSort": 504, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rammetto One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 30420, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 1, + "width": 8, + "lineHeight": 1.68896484375 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-02", + "popularity": 428, + "trending": 379, + "defaultSort": 432, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rampart One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 3722352, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Fontworks Inc." + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-06-08", + "popularity": 807, + "trending": 1042, + "defaultSort": 804, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ranchers", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 167420, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Impallari Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-09-07", + "popularity": 963, + "trending": 1064, + "defaultSort": 953, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rancho", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 44832, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 5, + "lineHeight": 1.2421875 + } + }, + "axes": [], + "designers": [ + "Sideshow" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-10-12", + "popularity": 550, + "trending": 1327, + "defaultSort": 561, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ranga", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 123208, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 5, + "width": 5, + "lineHeight": 1.46302975653742 + }, + "700": { + "thickness": 6, + "slant": 5, + "width": 5, + "lineHeight": 1.46302975653742 + } + }, + "axes": [], + "designers": [ + "TipTopTyp" + ], + "lastModified": "2023-08-25", + "dateAdded": "2015-01-28", + "popularity": 961, + "trending": 136, + "defaultSort": 951, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rasa", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 382116, + "subsets": [ + "menu", + "gujarati", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.218 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.218 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.218 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.218 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.218 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.218 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.218 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.218 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.218 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.218 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Rosetta", + "Anna Giedry\u015B", + "David B\u0159ezina" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-06-15", + "popularity": 664, + "trending": 1687, + "defaultSort": 674, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rationale", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 57156, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.153 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-08-03", + "popularity": 1042, + "trending": 1278, + "defaultSort": 1028, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ravi Prakash", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 128642, + "subsets": [ + "menu", + "latin", + "telugu" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 6, + "lineHeight": 1.583984375 + } + }, + "axes": [], + "designers": [ + "Appaji Ambarisha Darbha" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-01-12", + "popularity": 1103, + "trending": 355, + "defaultSort": 1085, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Readex Pro", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 286208, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [ + { + "tag": "HEXP", + "min": 0, + "max": 100, + "defaultValue": 0 + }, + { + "tag": "wght", + "min": 160, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Thomas Jockin", + "Nadine Chahine", + "Bonnie Shaver-Troup", + "Santiago Orozco", + "H\u00E9ctor G\u00F3mez" + ], + "lastModified": "2023-04-27", + "dateAdded": "2021-09-16", + "popularity": 278, + "trending": 1414, + "defaultSort": 276, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Recursive", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 2379132, + "subsets": [ + "menu", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "1000": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "CASL", + "min": 0, + "max": 1, + "defaultValue": 0 + }, + { + "tag": "CRSV", + "min": 0, + "max": 1, + "defaultValue": 0.5 + }, + { + "tag": "MONO", + "min": 0, + "max": 1, + "defaultValue": 0 + }, + { + "tag": "slnt", + "min": -15, + "max": 0, + "defaultValue": 0 + }, + { + "tag": "wght", + "min": 300, + "max": 1000, + "defaultValue": 400 + } + ], + "designers": [ + "Arrow Type", + "Stephen Nixon" + ], + "lastModified": "2023-09-14", + "dateAdded": "2019-06-28", + "popularity": 934, + "trending": 712, + "defaultSort": 926, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Red Hat Display", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 99692, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "MCKL" + ], + "lastModified": "2023-08-25", + "dateAdded": "2019-04-09", + "popularity": 119, + "trending": 484, + "defaultSort": 114, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Red Hat Mono", + "displayName": null, + "category": "Monospace", + "stroke": null, + "classifications": [ + "Monospace" + ], + "size": 71012, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "MCKL" + ], + "lastModified": "2023-09-14", + "dateAdded": "2021-06-10", + "popularity": 847, + "trending": 435, + "defaultSort": 839, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Red Hat Text", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 98324, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.323 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "MCKL" + ], + "lastModified": "2023-09-14", + "dateAdded": "2019-04-09", + "popularity": 316, + "trending": 1150, + "defaultSort": 315, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Red Rose", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 114928, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.249 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.249 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.249 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.249 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.249 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Jaikishan Patel" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-07-02", + "popularity": 923, + "trending": 1776, + "defaultSort": 913, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Redacted", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Symbols", + "Display" + ], + "size": 15920, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Christian Naths" + ], + "lastModified": "2023-08-25", + "dateAdded": "2013-09-18", + "popularity": 1143, + "trending": 92, + "defaultSort": 1122, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Redacted Script", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Symbols" + ], + "size": 84900, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Christian Naths" + ], + "lastModified": "2023-08-25", + "dateAdded": "2013-09-18", + "popularity": 1513, + "trending": 621, + "defaultSort": 1425, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Redressed", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 79220, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.17236328125 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-06-21", + "popularity": 1132, + "trending": 1099, + "defaultSort": 1111, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Reem Kufi", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 130976, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Khaled Hosny", + "Santiago Orozco" + ], + "lastModified": "2023-09-14", + "dateAdded": "2016-05-31", + "popularity": 358, + "trending": 1458, + "defaultSort": 358, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Reem Kufi Fun", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 142736, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Khaled Hosny", + "Santiago Orozco" + ], + "lastModified": "2023-03-09", + "dateAdded": "2021-11-01", + "popularity": 1471, + "trending": 1507, + "defaultSort": 1399, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [ + "COLRV0" + ], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Reem Kufi Ink", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 242992, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5 + } + }, + "axes": [], + "designers": [ + "Khaled Hosny", + "Santiago Orozco" + ], + "lastModified": "2023-05-31", + "dateAdded": "2021-11-01", + "popularity": 1478, + "trending": 1555, + "defaultSort": 1404, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [ + "COLRV1", + "OTSVG" + ], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Reenie Beanie", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 147036, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "James Grieshaber" + ], + "lastModified": "2023-08-25", + "dateAdded": "2010-05-10", + "popularity": 417, + "trending": 807, + "defaultSort": 422, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Reggae One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 2153256, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Fontworks Inc." + ], + "lastModified": "2023-09-06", + "dateAdded": "2020-12-15", + "popularity": 825, + "trending": 131, + "defaultSort": 819, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Revalia", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 61436, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 9, + "lineHeight": 1.234375 + } + }, + "axes": [], + "designers": [ + "Johan Kallas", + "Mihkel Virkus" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-03-14", + "popularity": 1304, + "trending": 1067, + "defaultSort": 1267, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rhodium Libre", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 233792, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 5, + "lineHeight": 1.71 + } + }, + "axes": [], + "designers": [ + "James Puckett" + ], + "lastModified": "2023-08-25", + "dateAdded": "2015-06-03", + "popularity": 1079, + "trending": 233, + "defaultSort": 1062, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ribeye", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 78492, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.3662109375 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-23", + "popularity": 966, + "trending": 735, + "defaultSort": 956, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ribeye Marrow", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 84896, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.3662109375 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-23", + "popularity": 1246, + "trending": 857, + "defaultSort": 1210, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Righteous", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 43104, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.24169921875 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-23", + "popularity": 163, + "trending": 1094, + "defaultSort": 156, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Risque", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 59392, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 2, + "width": 7, + "lineHeight": 1.15576171875 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-11-11", + "popularity": 1258, + "trending": 1070, + "defaultSort": 1221, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Road Rage", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 427472, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-10-21", + "popularity": 992, + "trending": 143, + "defaultSort": 981, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Roboto", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 173710, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": 2, + "slant": 1, + "width": 7, + "lineHeight": 1.171875 + }, + "100i": { + "thickness": 2, + "slant": 4, + "width": 7, + "lineHeight": 1.171875 + }, + "300": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.171875 + }, + "300i": { + "thickness": 4, + "slant": 4, + "width": 7, + "lineHeight": 1.171875 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.171875 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.171875 + }, + "500": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.171875 + }, + "500i": { + "thickness": 6, + "slant": 4, + "width": 7, + "lineHeight": 1.171875 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.171875 + }, + "700i": { + "thickness": 6, + "slant": 4, + "width": 7, + "lineHeight": 1.171875 + }, + "900": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.171875 + }, + "900i": { + "thickness": 7, + "slant": 4, + "width": 7, + "lineHeight": 1.171875 + } + }, + "axes": [], + "designers": [ + "Christian Robertson" + ], + "lastModified": "2022-09-21", + "dateAdded": "2013-01-09", + "popularity": 2, + "trending": 984, + "defaultSort": 1, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Roboto Condensed", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 172424, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.171875 + }, + "300i": { + "thickness": 4, + "slant": 4, + "width": 6, + "lineHeight": 1.171875 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.171875 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 6, + "lineHeight": 1.171875 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.171875 + }, + "700i": { + "thickness": 6, + "slant": 4, + "width": 6, + "lineHeight": 1.171875 + } + }, + "axes": [], + "designers": [ + "Christian Robertson" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-06-26", + "popularity": 11, + "trending": 871, + "defaultSort": 12, + "androidFragment": "name=Roboto&width=75.0", + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Roboto Flex", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 1755856, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "1000": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [ + { + "tag": "GRAD", + "min": -200, + "max": 150, + "defaultValue": 0 + }, + { + "tag": "XTRA", + "min": 323, + "max": 603, + "defaultValue": 468 + }, + { + "tag": "YOPQ", + "min": 25, + "max": 135, + "defaultValue": 79 + }, + { + "tag": "YTAS", + "min": 649, + "max": 854, + "defaultValue": 750 + }, + { + "tag": "YTDE", + "min": -305, + "max": -98, + "defaultValue": -203 + }, + { + "tag": "YTFI", + "min": 560, + "max": 788, + "defaultValue": 738 + }, + { + "tag": "YTLC", + "min": 416, + "max": 570, + "defaultValue": 514 + }, + { + "tag": "YTUC", + "min": 528, + "max": 760, + "defaultValue": 712 + }, + { + "tag": "opsz", + "min": 8, + "max": 144, + "defaultValue": 14 + }, + { + "tag": "slnt", + "min": -10, + "max": 0, + "defaultValue": 0 + }, + { + "tag": "wdth", + "min": 25, + "max": 151, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 1000, + "defaultValue": 400 + } + ], + "designers": [ + "Font Bureau", + "David Berlow", + "Santiago Orozco", + "Irene Vlachou", + "Ilya Ruderman", + "Yury Ostromentsky", + "Mikhail Strukov" + ], + "lastModified": "2023-01-06", + "dateAdded": "2022-05-02", + "popularity": 180, + "trending": 493, + "defaultSort": 173, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Roboto Mono", + "displayName": null, + "category": "Monospace", + "stroke": null, + "classifications": [ + "Monospace" + ], + "size": 191258, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.31884765625 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.31884765625 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.31884765625 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.31884765625 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.31884765625 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.31884765625 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.31884765625 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.31884765625 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.31884765625 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.31884765625 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.31884765625 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.31884765625 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.31884765625 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.31884765625 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Christian Robertson" + ], + "lastModified": "2023-09-14", + "dateAdded": "2015-05-13", + "popularity": 15, + "trending": 948, + "defaultSort": 15, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Roboto Serif", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 4312646, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.171 + } + }, + "axes": [ + { + "tag": "GRAD", + "min": -50, + "max": 100, + "defaultValue": 0 + }, + { + "tag": "opsz", + "min": 8, + "max": 144, + "defaultValue": 14 + }, + { + "tag": "wdth", + "min": 50, + "max": 150, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Commercial Type", + "Greg Gazdowicz" + ], + "lastModified": "2023-04-04", + "dateAdded": "2022-02-10", + "popularity": 273, + "trending": 250, + "defaultSort": 271, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Roboto Slab", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [], + "size": 251688, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": 2, + "slant": 1, + "width": 7, + "lineHeight": 1.31884765625 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.31884765625 + }, + "300": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.31884765625 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.31884765625 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.31884765625 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.31884765625 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.31884765625 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.31884765625 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.31884765625 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Christian Robertson" + ], + "lastModified": "2023-09-14", + "dateAdded": "2013-04-10", + "popularity": 21, + "trending": 1080, + "defaultSort": 21, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rochester", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 37144, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 5, + "lineHeight": 1.28759765625 + } + }, + "axes": [], + "designers": [ + "Sideshow" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-08-03", + "popularity": 600, + "trending": 969, + "defaultSort": 607, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rock 3D", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 444468, + "subsets": [ + "menu", + "japanese", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Shibuya Font" + ], + "lastModified": "2023-05-31", + "dateAdded": "2020-12-14", + "popularity": 1582, + "trending": 1809, + "defaultSort": 1468, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Hira", + "primaryLanguage": "" + }, + { + "family": "Rock Salt", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 124372, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 2, + "width": 8, + "lineHeight": 2.3857421875 + } + }, + "axes": [], + "designers": [ + "Sideshow" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-01-06", + "popularity": 355, + "trending": 1254, + "defaultSort": 356, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "RocknRoll One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 2682824, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Fontworks Inc." + ], + "lastModified": "2022-09-27", + "dateAdded": "2020-12-15", + "popularity": 754, + "trending": 1117, + "defaultSort": 760, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rokkitt", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [], + "size": 134592, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.137 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.137 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.137 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.137 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 7, + "lineHeight": 1.137 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.137 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.137 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.137 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.137 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.137 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.137 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.137 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.137 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.137 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.137 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.137 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.137 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.137 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-07-27", + "popularity": 228, + "trending": 367, + "defaultSort": 222, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Romanesco", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 28547, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 6, + "width": 1, + "lineHeight": 1.14697265625 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-08-13", + "popularity": 1214, + "trending": 762, + "defaultSort": 1184, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ropa Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 57920, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.072 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.072 + } + }, + "axes": [], + "designers": [ + "Botjo Nikoltchev" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-01-25", + "popularity": 290, + "trending": 374, + "defaultSort": 287, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rosario", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 150196, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.212 + }, + "400i": { + "thickness": 5, + "slant": 3, + "width": 6, + "lineHeight": 1.212 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.212 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.212 + }, + "700i": { + "thickness": 6, + "slant": 3, + "width": 6, + "lineHeight": 1.212 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2023-03-21", + "dateAdded": "2011-09-07", + "popularity": 635, + "trending": 942, + "defaultSort": 646, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rosarivo", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Handwriting" + ], + "size": 40294, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.403 + }, + "400i": { + "thickness": 4, + "slant": 4, + "width": 7, + "lineHeight": 1.403 + } + }, + "axes": [], + "designers": [ + "Pablo Ugerman" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-03-29", + "popularity": 997, + "trending": 412, + "defaultSort": 985, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rouge Script", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 46752, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 4, + "width": 5, + "lineHeight": 1.1752 + } + }, + "axes": [], + "designers": [ + "Sabrina Mariela Lopez" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-01-11", + "popularity": 741, + "trending": 261, + "defaultSort": 749, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rowdies", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 76261, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.242 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.242 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.242 + } + }, + "axes": [], + "designers": [ + "Jaikishan Patel" + ], + "lastModified": "2023-08-25", + "dateAdded": "2019-10-10", + "popularity": 151, + "trending": 772, + "defaultSort": 144, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rozha One", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 322828, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.42 + } + }, + "axes": [], + "designers": [ + "Indian Type Foundry" + ], + "lastModified": "2023-08-25", + "dateAdded": "2014-08-13", + "popularity": 495, + "trending": 928, + "defaultSort": 501, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rubik", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 357394, + "subsets": [ + "menu", + "arabic", + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Hubert and Fischer", + "Meir Sadan", + "Cyreal", + "Daniel Grumer", + "Omaima Dajani" + ], + "lastModified": "2023-06-29", + "dateAdded": "2015-07-22", + "popularity": 24, + "trending": 862, + "defaultSort": 25, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rubik 80s Fade", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 3448044, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + } + }, + "axes": [], + "designers": [ + "NaN", + "Luke Prowse" + ], + "lastModified": "2023-05-02", + "dateAdded": "2022-11-24", + "popularity": 1461, + "trending": 1210, + "defaultSort": 1247, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rubik Beastly", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 512684, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + } + }, + "axes": [], + "designers": [ + "NaN", + "Luke Prowse" + ], + "lastModified": "2022-09-21", + "dateAdded": "2021-09-02", + "popularity": 1368, + "trending": 850, + "defaultSort": 1318, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rubik Bubbles", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 219564, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + } + }, + "axes": [], + "designers": [ + "NaN", + "Luke Prowse" + ], + "lastModified": "2023-05-02", + "dateAdded": "2022-02-17", + "popularity": 1470, + "trending": 1737, + "defaultSort": 1398, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rubik Burned", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 605348, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + } + }, + "axes": [], + "designers": [ + "NaN", + "Luke Prowse" + ], + "lastModified": "2022-09-21", + "dateAdded": "2022-06-15", + "popularity": 1587, + "trending": 1544, + "defaultSort": 1431, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rubik Dirt", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 1492292, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + } + }, + "axes": [], + "designers": [ + "NaN", + "Luke Prowse" + ], + "lastModified": "2023-05-02", + "dateAdded": "2022-06-15", + "popularity": 881, + "trending": 151, + "defaultSort": 873, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rubik Distressed", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 892544, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + } + }, + "axes": [], + "designers": [ + "NaN", + "Luke Prowse" + ], + "lastModified": "2022-09-21", + "dateAdded": "2022-06-15", + "popularity": 1426, + "trending": 1215, + "defaultSort": 1369, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rubik Gemstones", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 265004, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + } + }, + "axes": [], + "designers": [ + "NaN", + "Luke Prowse" + ], + "lastModified": "2022-12-07", + "dateAdded": "2022-11-24", + "popularity": 1568, + "trending": 1357, + "defaultSort": 1250, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rubik Glitch", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 407304, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + } + }, + "axes": [], + "designers": [ + "NaN", + "Luke Prowse" + ], + "lastModified": "2022-09-21", + "dateAdded": "2022-02-17", + "popularity": 1360, + "trending": 603, + "defaultSort": 1313, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rubik Iso", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 132376, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + } + }, + "axes": [], + "designers": [ + "NaN", + "Luke Prowse" + ], + "lastModified": "2023-05-02", + "dateAdded": "2022-06-15", + "popularity": 1429, + "trending": 1849, + "defaultSort": 1372, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rubik Marker Hatch", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 363876, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + } + }, + "axes": [], + "designers": [ + "NaN", + "Luke Prowse" + ], + "lastModified": "2022-09-21", + "dateAdded": "2022-06-15", + "popularity": 1569, + "trending": 1518, + "defaultSort": 1430, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rubik Maze", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 459040, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + } + }, + "axes": [], + "designers": [ + "NaN", + "Luke Prowse" + ], + "lastModified": "2023-05-02", + "dateAdded": "2022-06-15", + "popularity": 1615, + "trending": 1523, + "defaultSort": 1432, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rubik Microbe", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 1444176, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + } + }, + "axes": [], + "designers": [ + "NaN", + "Luke Prowse" + ], + "lastModified": "2022-09-21", + "dateAdded": "2022-02-17", + "popularity": 1534, + "trending": 1388, + "defaultSort": 1436, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rubik Mono One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Monospace" + ], + "size": 141088, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 1, + "width": 9, + "lineHeight": 1.238 + } + }, + "axes": [], + "designers": [ + "Hubert and Fischer" + ], + "lastModified": "2023-08-25", + "dateAdded": "2014-05-05", + "popularity": 265, + "trending": 575, + "defaultSort": 264, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rubik Moonrocks", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 403712, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + } + }, + "axes": [], + "designers": [ + "NaN", + "Luke Prowse" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-02-17", + "popularity": 493, + "trending": 585, + "defaultSort": 499, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rubik Pixels", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 5627648, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + } + }, + "axes": [], + "designers": [ + "NaN", + "Luke Prowse" + ], + "lastModified": "2023-04-04", + "dateAdded": "2023-03-31", + "popularity": 1488, + "trending": 1481, + "defaultSort": 867, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rubik Puddles", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 404956, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + } + }, + "axes": [], + "designers": [ + "NaN", + "Luke Prowse" + ], + "lastModified": "2022-09-21", + "dateAdded": "2022-02-17", + "popularity": 1373, + "trending": 227, + "defaultSort": 1323, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rubik Spray Paint", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 941576, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + } + }, + "axes": [], + "designers": [ + "NaN", + "Luke Prowse" + ], + "lastModified": "2022-12-07", + "dateAdded": "2022-11-24", + "popularity": 1464, + "trending": 1051, + "defaultSort": 1248, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rubik Storm", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 795704, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + } + }, + "axes": [], + "designers": [ + "NaN", + "Luke Prowse" + ], + "lastModified": "2022-12-07", + "dateAdded": "2022-11-24", + "popularity": 1499, + "trending": 895, + "defaultSort": 1249, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rubik Vinyl", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 414752, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + } + }, + "axes": [], + "designers": [ + "NaN", + "Luke Prowse" + ], + "lastModified": "2022-12-07", + "dateAdded": "2022-11-24", + "popularity": 1387, + "trending": 357, + "defaultSort": 1246, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rubik Wet Paint", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 442628, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.185 + } + }, + "axes": [], + "designers": [ + "NaN", + "Luke Prowse" + ], + "lastModified": "2022-09-21", + "dateAdded": "2022-02-17", + "popularity": 1340, + "trending": 1302, + "defaultSort": 1295, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ruda", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 84420, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.217 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.217 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.217 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.217 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.217 + }, + "900": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.217 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Mariela Monsalve", + "Angelina Sanchez" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-01-11", + "popularity": 342, + "trending": 913, + "defaultSort": 340, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rufina", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 40048, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.235 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.235 + } + }, + "axes": [], + "designers": [ + "Martin Sommaruga" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-10-31", + "popularity": 405, + "trending": 1557, + "defaultSort": 408, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ruge Boogie", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 329956, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 5, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 1314, + "trending": 470, + "defaultSort": 1275, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ruluko", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 27436, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.155 + } + }, + "axes": [], + "designers": [ + "Ana Sanfelippo", + "Ang\u00E9lica D\u00EDaz", + "Meme Hern\u00E1ndez" + ], + "lastModified": "2022-04-27", + "dateAdded": "2012-01-11", + "popularity": 1230, + "trending": 1375, + "defaultSort": 1198, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Rum Raisin", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 61812, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.2900390625 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-11-02", + "popularity": 1021, + "trending": 142, + "defaultSort": 1009, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ruslan Display", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 57288, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 1, + "width": 8, + "lineHeight": 1.085 + } + }, + "axes": [], + "designers": [ + "Denis Masharov" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-05-18", + "popularity": 860, + "trending": 420, + "defaultSort": 849, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Russo One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 39124, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.205 + } + }, + "axes": [], + "designers": [ + "Jovanny Lemonad" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-04-04", + "popularity": 142, + "trending": 800, + "defaultSort": 135, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ruthie", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 71856, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 7, + "width": 4, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 1009, + "trending": 1286, + "defaultSort": 997, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ruwudu", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 122497, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.608 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.608 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.608 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.608 + } + }, + "axes": [], + "designers": [ + "SIL International" + ], + "lastModified": "2023-08-08", + "dateAdded": "2023-08-07", + "popularity": 1462, + "trending": 1757, + "defaultSort": 253, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Rye", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 183244, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Nicole Fally" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-08-21", + "popularity": 519, + "trending": 1319, + "defaultSort": 524, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "STIX Two Text", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 436662, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Tiro Typeworks", + "Ross Mills", + "John Hudson", + "Paul Hanslow" + ], + "lastModified": "2023-09-14", + "dateAdded": "2021-04-15", + "popularity": 486, + "trending": 634, + "defaultSort": 489, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sacramento", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 79696, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 5, + "lineHeight": 1.45947265625 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-11-01", + "popularity": 220, + "trending": 1167, + "defaultSort": 214, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sahitya", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 125026, + "subsets": [ + "menu", + "devanagari", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 4, + "lineHeight": 1.553 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 4, + "lineHeight": 1.553 + } + }, + "axes": [], + "designers": [ + "Juan Pablo del Peral" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-06-17", + "popularity": 1105, + "trending": 1756, + "defaultSort": 1087, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sail", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 32656, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 4, + "width": 6, + "lineHeight": 1.154 + } + }, + "axes": [], + "designers": [ + "Miguel Hernandez" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-19", + "popularity": 817, + "trending": 316, + "defaultSort": 812, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Saira", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 509206, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 50, + "max": 125, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2017-07-31", + "popularity": 238, + "trending": 387, + "defaultSort": 232, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Saira Condensed", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 95279, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + } + }, + "axes": [], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2022-09-21", + "dateAdded": "2017-07-31", + "popularity": 96, + "trending": 43, + "defaultSort": 93, + "androidFragment": "name=Saira&width=75.0", + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Saira Extra Condensed", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 95178, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + } + }, + "axes": [], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2017-07-31", + "popularity": 420, + "trending": 418, + "defaultSort": 425, + "androidFragment": "name=Saira&width=62.5", + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Saira Semi Condensed", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 95503, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + } + }, + "axes": [], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2017-07-31", + "popularity": 349, + "trending": 870, + "defaultSort": 350, + "androidFragment": "name=Saira&width=87.5", + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Saira Stencil One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 109944, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.574 + } + }, + "axes": [], + "designers": [ + "Hector Gatti", + "Omnibus-Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2019-06-18", + "popularity": 845, + "trending": 990, + "defaultSort": 837, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Salsa", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Handwriting" + ], + "size": 56680, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.226 + } + }, + "axes": [], + "designers": [ + "John Vargas Beltr\u00E1n" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-10-12", + "popularity": 736, + "trending": 30, + "defaultSort": 313, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sanchez", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [], + "size": 73882, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.278 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 8, + "lineHeight": 1.278 + } + }, + "axes": [], + "designers": [ + "Daniel Hernandez" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-10-31", + "popularity": 285, + "trending": 246, + "defaultSort": 282, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sancreek", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 49672, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.3876953125 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-10-12", + "popularity": 999, + "trending": 1371, + "defaultSort": 987, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sansita", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 114156, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2023-05-02", + "dateAdded": "2016-12-04", + "popularity": 348, + "trending": 423, + "defaultSort": 349, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sansita Swashed", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 234096, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2023-09-14", + "dateAdded": "2020-08-31", + "popularity": 649, + "trending": 774, + "defaultSort": 660, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sarabun", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 91764, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400": { + "thickness": 3, + "slant": 1, + "width": 5, + "lineHeight": 1.3 + }, + "400i": { + "thickness": 4, + "slant": 4, + "width": 5, + "lineHeight": 1.3 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700": { + "thickness": 5, + "slant": 1, + "width": 5, + "lineHeight": 1.3 + }, + "700i": { + "thickness": 5, + "slant": 5, + "width": 5, + "lineHeight": 1.3 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [], + "designers": [ + "Suppakit Chalermlarp" + ], + "lastModified": "2023-08-25", + "dateAdded": "2013-10-28", + "popularity": 144, + "trending": 534, + "defaultSort": 137, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sarala", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 240332, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 5, + "lineHeight": 1.63037109375 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 5, + "lineHeight": 1.63037109375 + } + }, + "axes": [], + "designers": [ + "Andres Torresi" + ], + "lastModified": "2023-08-25", + "dateAdded": "2015-06-17", + "popularity": 413, + "trending": 945, + "defaultSort": 416, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sarina", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 96104, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 7, + "width": 8, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "James Grieshaber" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 1120, + "trending": 1400, + "defaultSort": 1101, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sarpanch", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 294382, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.4 + }, + "500": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.4 + }, + "600": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.4 + }, + "700": { + "thickness": 8, + "slant": 1, + "width": 8, + "lineHeight": 1.4 + }, + "800": { + "thickness": 8, + "slant": 1, + "width": 8, + "lineHeight": 1.4 + }, + "900": { + "thickness": 9, + "slant": 1, + "width": 8, + "lineHeight": 1.4 + } + }, + "axes": [], + "designers": [ + "Indian Type Foundry" + ], + "lastModified": "2023-08-25", + "dateAdded": "2014-09-03", + "popularity": 909, + "trending": 1377, + "defaultSort": 898, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sassy Frass", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 162820, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-10-12", + "popularity": 1437, + "trending": 1827, + "defaultSort": 1377, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Satisfy", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 47928, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 5, + "width": 6, + "lineHeight": 1.4404296875 + } + }, + "axes": [], + "designers": [ + "Sideshow" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-10-12", + "popularity": 126, + "trending": 453, + "defaultSort": 120, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sawarabi Gothic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 1902848, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.472 + } + }, + "axes": [], + "designers": [ + "mshio" + ], + "lastModified": "2022-09-27", + "dateAdded": "2018-05-17", + "popularity": 209, + "trending": 258, + "defaultSort": 203, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sawarabi Mincho", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 1084300, + "subsets": [ + "menu", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.479 + } + }, + "axes": [], + "designers": [ + "mshio" + ], + "lastModified": "2022-09-27", + "dateAdded": "2018-05-17", + "popularity": 200, + "trending": 516, + "defaultSort": 192, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Scada", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 92999, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.244 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 7, + "lineHeight": 1.244 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.244 + }, + "700i": { + "thickness": 6, + "slant": 4, + "width": 7, + "lineHeight": 1.244 + } + }, + "axes": [], + "designers": [ + "Jovanny Lemonad" + ], + "lastModified": "2023-05-02", + "dateAdded": "2012-07-30", + "popularity": 455, + "trending": 188, + "defaultSort": 457, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Scheherazade New", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 517996, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.03955078125 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.03955078125 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.03955078125 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.03955078125 + } + }, + "axes": [], + "designers": [ + "SIL International" + ], + "lastModified": "2023-05-23", + "dateAdded": "2021-05-12", + "popularity": 1037, + "trending": 340, + "defaultSort": 1023, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Arab", + "primaryLanguage": "" + }, + { + "family": "Schibsted Grotesk", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 178754, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.234375 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.234375 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.234375 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.234375 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.234375 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.234375 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.234375 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.234375 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.234375 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.234375 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.234375 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.234375 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Bakken & B\u00E6ck", + "Henrik Kongsvoll" + ], + "lastModified": "2023-05-02", + "dateAdded": "2023-03-31", + "popularity": 797, + "trending": 375, + "defaultSort": 796, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Schoolbell", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 48904, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.392578125 + } + }, + "axes": [], + "designers": [ + "Font Diner" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-01-06", + "popularity": 681, + "trending": 1151, + "defaultSort": 690, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Scope One", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 93144, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 2, + "slant": 1, + "width": 5, + "lineHeight": 1.383 + } + }, + "axes": [], + "designers": [ + "Dalton Maag" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-06-15", + "popularity": 883, + "trending": 416, + "defaultSort": 875, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Seaweed Script", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 117072, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 7, + "width": 6, + "lineHeight": 1.357421875 + } + }, + "axes": [], + "designers": [ + "Neapolitan" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-02-29", + "popularity": 516, + "trending": 369, + "defaultSort": 521, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Secular One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 83916, + "subsets": [ + "menu", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 5, + "lineHeight": 1.455 + } + }, + "axes": [], + "designers": [ + "Michal Sahar" + ], + "lastModified": "2023-06-22", + "dateAdded": "2016-03-31", + "popularity": 241, + "trending": 157, + "defaultSort": 236, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sedgwick Ave", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 145332, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.249 + } + }, + "axes": [], + "designers": [ + "Pedro Vergani", + "Kevin Burke" + ], + "lastModified": "2022-09-21", + "dateAdded": "2017-08-01", + "popularity": 745, + "trending": 126, + "defaultSort": 752, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sedgwick Ave Display", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 140148, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.249 + } + }, + "axes": [], + "designers": [ + "Pedro Vergani", + "Kevin Burke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2017-08-01", + "popularity": 1161, + "trending": 23, + "defaultSort": 184, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sen", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 50824, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.203125 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.203125 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.203125 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.203125 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.203125 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Kosal Sen" + ], + "lastModified": "2023-07-24", + "dateAdded": "2020-01-17", + "popularity": 253, + "trending": 286, + "defaultSort": 249, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Send Flowers", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 127692, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.325 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-03-11", + "popularity": 1400, + "trending": 1423, + "defaultSort": 1348, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sevillana", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 162872, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.35693359375 + } + }, + "axes": [], + "designers": [ + "Brownfox" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-02-22", + "popularity": 1440, + "trending": 901, + "defaultSort": 1380, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Seymour One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 93576, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 10, + "slant": 1, + "width": 9, + "lineHeight": 1.2568359375 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-09-13", + "dateAdded": "2012-10-24", + "popularity": 1273, + "trending": 1266, + "defaultSort": 1236, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Shadows Into Light", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 54304, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 6, + "lineHeight": 1.6064453125 + } + }, + "axes": [], + "designers": [ + "Kimberly Geswein" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-06-08", + "popularity": 116, + "trending": 719, + "defaultSort": 111, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Shadows Into Light Two", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 39396, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 6, + "lineHeight": 1.451171875 + } + }, + "axes": [], + "designers": [ + "Kimberly Geswein" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-02-22", + "popularity": 485, + "trending": 874, + "defaultSort": 488, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Shalimar", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 220724, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.22 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-10-14", + "popularity": 851, + "trending": 284, + "defaultSort": 841, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Shantell Sans", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Handwriting" + ], + "size": 1380826, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.34 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.34 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.34 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.34 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.34 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.34 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.34 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.34 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.34 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.34 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.34 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.34 + } + }, + "axes": [ + { + "tag": "BNCE", + "min": -100, + "max": 100, + "defaultValue": 0 + }, + { + "tag": "INFM", + "min": 0, + "max": 100, + "defaultValue": 0 + }, + { + "tag": "SPAC", + "min": 0, + "max": 100, + "defaultValue": 0 + }, + { + "tag": "wght", + "min": 300, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Shantell Martin", + "Arrow Type", + "Anya Danilova" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-01-16", + "popularity": 885, + "trending": 1168, + "defaultSort": 877, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Shanti", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 49755, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.27490234375 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-05-11", + "popularity": 1051, + "trending": 446, + "defaultSort": 1036, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Share", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 83900, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.127 + }, + "400i": { + "thickness": 5, + "slant": 3, + "width": 6, + "lineHeight": 1.127 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.127 + }, + "700i": { + "thickness": 6, + "slant": 2, + "width": 7, + "lineHeight": 1.127 + } + }, + "axes": [], + "designers": [ + "Carrois Apostrophe" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-02-08", + "popularity": 608, + "trending": 214, + "defaultSort": 619, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Share Tech", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 53096, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.127 + } + }, + "axes": [], + "designers": [ + "Carrois Apostrophe" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-10-31", + "popularity": 920, + "trending": 947, + "defaultSort": 910, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Share Tech Mono", + "displayName": null, + "category": "Monospace", + "stroke": null, + "classifications": [ + "Monospace" + ], + "size": 12544, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.127 + } + }, + "axes": [], + "designers": [ + "Carrois Apostrophe" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-10-31", + "popularity": 374, + "trending": 500, + "defaultSort": 375, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Shippori Antique", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 7404988, + "subsets": [ + "menu", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "FONTDASU" + ], + "lastModified": "2022-09-27", + "dateAdded": "2021-04-14", + "popularity": 1067, + "trending": 1326, + "defaultSort": 1050, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Shippori Antique B1", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 13095332, + "subsets": [ + "menu", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "FONTDASU" + ], + "lastModified": "2022-09-27", + "dateAdded": "2021-04-14", + "popularity": 1157, + "trending": 203, + "defaultSort": 1135, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Shippori Mincho", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 8626632, + "subsets": [ + "menu", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "FONTDASU" + ], + "lastModified": "2022-09-27", + "dateAdded": "2021-01-04", + "popularity": 362, + "trending": 1062, + "defaultSort": 363, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Shippori Mincho B1", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 15150545, + "subsets": [ + "menu", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "FONTDASU" + ], + "lastModified": "2023-09-14", + "dateAdded": "2021-01-04", + "popularity": 587, + "trending": 359, + "defaultSort": 595, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Shizuru", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 251244, + "subsets": [ + "menu", + "japanese", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Shibuya Font" + ], + "lastModified": "2023-05-31", + "dateAdded": "2020-12-08", + "popularity": 1558, + "trending": 1666, + "defaultSort": 1452, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Hira", + "primaryLanguage": "" + }, + { + "family": "Shojumaru", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 41714, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 1, + "width": 9, + "lineHeight": 1.32421875 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-01-25", + "popularity": 904, + "trending": 962, + "defaultSort": 893, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Short Stack", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 35460, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.2314453125 + } + }, + "axes": [], + "designers": [ + "James Grieshaber" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-08-17", + "popularity": 436, + "trending": 320, + "defaultSort": 440, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Shrikhand", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 220804, + "subsets": [ + "menu", + "gujarati", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.458 + } + }, + "axes": [], + "designers": [ + "Jonny Pinhorn" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-06-15", + "popularity": 375, + "trending": 1349, + "defaultSort": 376, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Siemreap", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 285320, + "subsets": [ + "menu", + "khmer" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.83935546875 + } + }, + "axes": [], + "designers": [ + "Danh Hong" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-04-20", + "popularity": 1274, + "trending": 1063, + "defaultSort": 1237, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sigmar", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 209084, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.638 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-02-23", + "popularity": 1475, + "trending": 811, + "defaultSort": 1032, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sigmar One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 172512, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 10, + "slant": 1, + "width": 8, + "lineHeight": 1.638 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-05-04", + "popularity": 696, + "trending": 938, + "defaultSort": 705, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Signika", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 637392, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.232 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.232 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.232 + }, + "600": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.232 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.232 + } + }, + "axes": [ + { + "tag": "GRAD", + "min": -30, + "max": 0, + "defaultValue": 0 + }, + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Anna Giedry\u015B" + ], + "lastModified": "2023-07-24", + "dateAdded": "2011-11-23", + "popularity": 145, + "trending": 1205, + "defaultSort": 138, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Signika Negative", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 428416, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.232 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.232 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.232 + }, + "600": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.232 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.232 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Anna Giedry\u015B" + ], + "lastModified": "2023-09-14", + "dateAdded": "2011-11-23", + "popularity": 74, + "trending": 191, + "defaultSort": 70, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Silkscreen", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 31426, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.28 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.28 + } + }, + "axes": [], + "designers": [ + "Jason Kottke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-06-22", + "popularity": 737, + "trending": 217, + "defaultSort": 743, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Simonetta", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 109959, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.251953125 + }, + "400i": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.251953125 + }, + "900": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.251953125 + }, + "900i": { + "thickness": 7, + "slant": 2, + "width": 7, + "lineHeight": 1.251953125 + } + }, + "axes": [], + "designers": [ + "Brownfox" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-04-04", + "popularity": 1144, + "trending": 1069, + "defaultSort": 1123, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Single Day", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 816524, + "subsets": [ + "menu", + "korean" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "DXKorea Inc" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-02-22", + "popularity": 1347, + "trending": 1769, + "defaultSort": 1301, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sintony", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 25864, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.303 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.303 + } + }, + "axes": [], + "designers": [ + "Eduardo Rodriguez Tunni" + ], + "lastModified": "2023-08-25", + "dateAdded": "2013-01-30", + "popularity": 440, + "trending": 1407, + "defaultSort": 444, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sirin Stencil", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 69332, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.45703125 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-01-18", + "popularity": 1212, + "trending": 1240, + "defaultSort": 1183, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Six Caps", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 46388, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 1, + "lineHeight": 1.31591796875 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-02-16", + "popularity": 379, + "trending": 903, + "defaultSort": 380, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Skranji", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 97076, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.3583984375 + }, + "700": { + "thickness": 8, + "slant": 1, + "width": 8, + "lineHeight": 1.3583984375 + } + }, + "axes": [], + "designers": [ + "Neapolitan" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-08-21", + "popularity": 776, + "trending": 42, + "defaultSort": 579, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Slabo 13px", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [], + "size": 55796, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.23076923076923 + } + }, + "axes": [], + "designers": [ + "John Hudson" + ], + "lastModified": "2023-08-25", + "dateAdded": "2014-05-30", + "popularity": 699, + "trending": 768, + "defaultSort": 710, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Slabo 27px", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [], + "size": 56088, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.22222222222222 + } + }, + "axes": [], + "designers": [ + "John Hudson" + ], + "lastModified": "2023-08-25", + "dateAdded": "2014-05-30", + "popularity": 95, + "trending": 197, + "defaultSort": 92, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Slackey", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 37896, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.4228515625 + } + }, + "axes": [], + "designers": [ + "Sideshow" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-01-06", + "popularity": 905, + "trending": 530, + "defaultSort": 894, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Slackside One", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 171736, + "subsets": [ + "menu", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Maniackers Design" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-05-23", + "popularity": 1556, + "trending": 1674, + "defaultSort": 681, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Hira", + "primaryLanguage": "" + }, + { + "family": "Smokum", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 63080, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 2, + "slant": 1, + "width": 5, + "lineHeight": 1.2197265625 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-08-03", + "popularity": 1154, + "trending": 1642, + "defaultSort": 1132, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Smooch", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 364436, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-11-02", + "popularity": 1283, + "trending": 1682, + "defaultSort": 1251, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Smooch Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 92880, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-12-17", + "popularity": 1326, + "trending": 1774, + "defaultSort": 1284, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Smythe", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 47182, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 5, + "lineHeight": 1.15380859375 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-04-20", + "popularity": 1309, + "trending": 1260, + "defaultSort": 1271, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sniglet", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 33431, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.245 + }, + "800": { + "thickness": 9, + "slant": 1, + "width": 8, + "lineHeight": 1.245 + } + }, + "axes": [], + "designers": [ + "Haley Fiege" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-12-15", + "popularity": 583, + "trending": 1283, + "defaultSort": 592, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Snippet", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 19466, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.151 + } + }, + "axes": [], + "designers": [ + "Gesine Todt" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-07-20", + "popularity": 1145, + "trending": 198, + "defaultSort": 1124, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Snowburst One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 46962, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 8, + "lineHeight": 1.263671875 + } + }, + "axes": [], + "designers": [ + "Annet Stirling" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-11-26", + "popularity": 1401, + "trending": 1323, + "defaultSort": 1349, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sofadi One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 52712, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.166 + } + }, + "axes": [], + "designers": [ + "Botjo Nikoltchev" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-09-30", + "popularity": 1376, + "trending": 481, + "defaultSort": 1328, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sofia", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 16989, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.576 + } + }, + "axes": [], + "designers": [ + "LatinoType" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-19", + "popularity": 585, + "trending": 1173, + "defaultSort": 594, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sofia Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 328500, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext" + ], + "fonts": { + "1": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "1000": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "1000i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "1i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 1, + "max": 1000, + "defaultValue": 400 + } + ], + "designers": [ + "Lettersoup", + "Botio Nikoltchev", + "Ani Petrova" + ], + "lastModified": "2023-03-21", + "dateAdded": "2021-01-13", + "popularity": 337, + "trending": 12, + "defaultSort": 52, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sofia Sans Condensed", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 329458, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext" + ], + "fonts": { + "1": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "1000": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "1000i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "1i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 1, + "max": 1000, + "defaultValue": 400 + } + ], + "designers": [ + "Lettersoup", + "Botio Nikoltchev", + "Ani Petrova" + ], + "lastModified": "2023-02-02", + "dateAdded": "2022-11-16", + "popularity": 308, + "trending": 9, + "defaultSort": 30, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sofia Sans Extra Condensed", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 327244, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext" + ], + "fonts": { + "1": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "1000": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "1000i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "1i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 1, + "max": 1000, + "defaultValue": 400 + } + ], + "designers": [ + "Lettersoup", + "Botio Nikoltchev", + "Ani Petrova" + ], + "lastModified": "2023-02-02", + "dateAdded": "2022-11-16", + "popularity": 659, + "trending": 19, + "defaultSort": 127, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sofia Sans Semi Condensed", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 331860, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext" + ], + "fonts": { + "1": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "1000": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "1000i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "1i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 1, + "max": 1000, + "defaultValue": 400 + } + ], + "designers": [ + "Lettersoup", + "Botio Nikoltchev", + "Ani Petrova" + ], + "lastModified": "2023-03-21", + "dateAdded": "2022-11-16", + "popularity": 1071, + "trending": 1835, + "defaultSort": 1054, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Solitreo", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 96968, + "subsets": [ + "menu", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.43 + } + }, + "axes": [], + "designers": [ + "Nathan Gross", + "Bryan Kirschen" + ], + "lastModified": "2023-05-02", + "dateAdded": "2022-12-14", + "popularity": 1327, + "trending": 1315, + "defaultSort": 1225, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Hebr", + "primaryLanguage": "" + }, + { + "family": "Solway", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 56588, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Mariya Lish", + "The Northern Block" + ], + "lastModified": "2023-02-16", + "dateAdded": "2018-08-06", + "popularity": 841, + "trending": 629, + "defaultSort": 833, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Song Myung", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 2035300, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "JIKJI" + ], + "lastModified": "2022-09-27", + "dateAdded": "2018-02-23", + "popularity": 1013, + "trending": 1623, + "defaultSort": 999, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sono", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Monospace" + ], + "size": 154620, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "MONO", + "min": 0, + "max": 1, + "defaultValue": 1 + }, + { + "tag": "wght", + "min": 200, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Tyler Finck" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-07-29", + "popularity": 1282, + "trending": 1837, + "defaultSort": 1245, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sonsie One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 35123, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 6, + "width": 9, + "lineHeight": 1.2939453125 + } + }, + "axes": [], + "designers": [ + "Riccardo De Franceschi" + ], + "lastModified": "2022-09-21", + "dateAdded": "2012-01-18", + "popularity": 955, + "trending": 1715, + "defaultSort": 945, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sora", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 111400, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Jonathan Barnbrook", + "Juli\u00E1n Moncada" + ], + "lastModified": "2023-09-14", + "dateAdded": "2020-06-10", + "popularity": 161, + "trending": 231, + "defaultSort": 153, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sorts Mill Goudy", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 48655, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.438 + }, + "400i": { + "thickness": 4, + "slant": 4, + "width": 6, + "lineHeight": 1.438 + } + }, + "axes": [], + "designers": [ + "Barry Schwartz" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-09-07", + "popularity": 394, + "trending": 817, + "defaultSort": 397, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Source Code Pro", + "displayName": null, + "category": "Monospace", + "stroke": null, + "classifications": [ + "Monospace" + ], + "size": 183396, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": 2, + "slant": 1, + "width": 8, + "lineHeight": 1.257 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.257 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 8, + "lineHeight": 1.257 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.257 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.257 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.257 + }, + "500": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.257 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.257 + }, + "600": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.257 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.257 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.257 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.257 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.257 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.257 + }, + "900": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.257 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.257 + } + }, + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Paul D. Hunt" + ], + "lastModified": "2023-09-14", + "dateAdded": "2012-09-20", + "popularity": 81, + "trending": 210, + "defaultSort": 77, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Source Sans 3", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 518112, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.424 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.424 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.424 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.424 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.424 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.424 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.424 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.424 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.424 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.424 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.424 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.424 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.424 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.424 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.424 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.424 + } + }, + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Paul D. Hunt" + ], + "lastModified": "2023-09-14", + "dateAdded": "2021-09-17", + "popularity": 178, + "trending": 28, + "defaultSort": 171, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Source Serif 4", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 1032470, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.371 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.371 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.371 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.371 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.371 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.371 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.371 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.371 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.371 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.371 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.371 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.371 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.371 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.371 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.371 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.371 + } + }, + "axes": [ + { + "tag": "opsz", + "min": 8, + "max": 60, + "defaultValue": 14 + }, + { + "tag": "wght", + "min": 200, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Frank Grie\u00DFhammer" + ], + "lastModified": "2023-09-14", + "dateAdded": "2021-11-16", + "popularity": 175, + "trending": 1483, + "defaultSort": 167, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Space Grotesk", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 136676, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.276 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.276 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.276 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.276 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.276 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Florian Karsten" + ], + "lastModified": "2023-09-14", + "dateAdded": "2020-10-06", + "popularity": 79, + "trending": 1723, + "defaultSort": 75, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Space Mono", + "displayName": null, + "category": "Monospace", + "stroke": null, + "classifications": [ + "Monospace" + ], + "size": 96329, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.481 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.481 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.481 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.481 + } + }, + "axes": [], + "designers": [ + "Colophon Foundry" + ], + "lastModified": "2023-06-22", + "dateAdded": "2016-06-15", + "popularity": 201, + "trending": 982, + "defaultSort": 193, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Special Elite", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 166180, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-04-20", + "popularity": 261, + "trending": 635, + "defaultSort": 259, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Spectral", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 286544, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + } + }, + "axes": [], + "designers": [ + "Production Type" + ], + "lastModified": "2023-01-06", + "dateAdded": "2017-06-12", + "popularity": 192, + "trending": 1270, + "defaultSort": 185, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Spectral SC", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 286580, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.522 + } + }, + "axes": [], + "designers": [ + "Production Type" + ], + "lastModified": "2023-05-02", + "dateAdded": "2017-10-10", + "popularity": 620, + "trending": 247, + "defaultSort": 630, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Spicy Rice", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 67244, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 1, + "width": 6, + "lineHeight": 1.37890625 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-13", + "popularity": 987, + "trending": 1295, + "defaultSort": 976, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Spinnaker", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 24988, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.17529296875 + } + }, + "axes": [], + "designers": [ + "Elena Albertoni" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-09-28", + "popularity": 666, + "trending": 1306, + "defaultSort": 676, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Spirax", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 22525, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.235 + } + }, + "axes": [], + "designers": [ + "Brenda Gallo" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-11-23", + "popularity": 1207, + "trending": 922, + "defaultSort": 1179, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Splash", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 1473200, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.63 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-05-18", + "popularity": 1465, + "trending": 897, + "defaultSort": 1394, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Spline Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 146896, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Eben Sorkin", + "Mirko Velimirovi\u0107" + ], + "lastModified": "2023-09-14", + "dateAdded": "2021-11-22", + "popularity": 970, + "trending": 983, + "defaultSort": 960, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Spline Sans Mono", + "displayName": null, + "category": "Monospace", + "stroke": "Sans Serif", + "classifications": [ + "Monospace" + ], + "size": 125448, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Eben Sorkin", + "Mirko Velimirovi\u0107" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-03-27", + "popularity": 1064, + "trending": 474, + "defaultSort": 1048, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Squada One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 19072, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 6, + "lineHeight": 1.057 + } + }, + "axes": [], + "designers": [ + "Joe Prince" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-15", + "popularity": 422, + "trending": 612, + "defaultSort": 428, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Square Peg", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 130916, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.32 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-03-23", + "popularity": 1017, + "trending": 125, + "defaultSort": 1003, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sree Krushnadevaraya", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 612636, + "subsets": [ + "menu", + "latin", + "telugu" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 2.05972222222222 + } + }, + "axes": [], + "designers": [ + "Purushoth Kumar Guttula" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-01-12", + "popularity": 977, + "trending": 1616, + "defaultSort": 968, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sriracha", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 319896, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.77 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2023-08-25", + "dateAdded": "2015-07-01", + "popularity": 313, + "trending": 155, + "defaultSort": 311, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Srisakdi", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 102214, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2022-09-21", + "dateAdded": "2018-09-10", + "popularity": 1081, + "trending": 452, + "defaultSort": 1064, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Staatliches", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 63316, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Brian LaRossa", + "Erica Carras" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-12-09", + "popularity": 237, + "trending": 542, + "defaultSort": 231, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Stalemate", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 75356, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 3, + "lineHeight": 1.4658203125 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-11-03", + "popularity": 1089, + "trending": 1381, + "defaultSort": 1071, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Stalinist One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 48808, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 7, + "width": 10, + "lineHeight": 1.476 + } + }, + "axes": [], + "designers": [ + "Alexey Maslov", + "Jovanny Lemonad" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-08-20", + "popularity": 1180, + "trending": 1784, + "defaultSort": 1156, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Stardos Stencil", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 37834, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.37939453125 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.37939453125 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-07-06", + "popularity": 653, + "trending": 1024, + "defaultSort": 664, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Stick", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 2215036, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Fontworks Inc." + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-12-15", + "popularity": 1005, + "trending": 1340, + "defaultSort": 993, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Stick No Bills", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 279212, + "subsets": [ + "menu", + "latin", + "latin-ext", + "sinhala" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.252 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.252 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.252 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.252 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.252 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.252 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.252 + } + }, + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Mooniak" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-06-29", + "popularity": 1264, + "trending": 117, + "defaultSort": 1227, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Stint Ultra Condensed", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [ + "Display" + ], + "size": 40272, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 1, + "lineHeight": 1.12890625 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-07", + "popularity": 827, + "trending": 1829, + "defaultSort": 821, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Stint Ultra Expanded", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [ + "Display" + ], + "size": 42788, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 8, + "lineHeight": 1.140625 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-02-15", + "popularity": 1177, + "trending": 1838, + "defaultSort": 1153, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Stoke", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 92080, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.25 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Nicole Fally" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-08-03", + "popularity": 1109, + "trending": 513, + "defaultSort": 1091, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Strait", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 58448, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.095 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-10-26", + "popularity": 1001, + "trending": 309, + "defaultSort": 989, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Style Script", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 603164, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.52 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-05-14", + "popularity": 662, + "trending": 888, + "defaultSort": 672, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Stylish", + "displayName": null, + "category": "Sans Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 10854004, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "AsiaSoft Inc" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-02-27", + "popularity": 1041, + "trending": 1424, + "defaultSort": 1027, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sue Ellen Francisco", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 60728, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 4, + "lineHeight": 1.94921875 + } + }, + "axes": [], + "designers": [ + "Kimberly Geswein" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-04-14", + "popularity": 783, + "trending": 851, + "defaultSort": 782, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Suez One", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 70856, + "subsets": [ + "menu", + "hebrew", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 1, + "width": 5, + "lineHeight": 1.306 + } + }, + "axes": [], + "designers": [ + "Michal Sahar" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-03-31", + "popularity": 544, + "trending": 292, + "defaultSort": 555, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sulphur Point", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 55693, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Dale Sattler" + ], + "lastModified": "2023-05-02", + "dateAdded": "2019-09-25", + "popularity": 922, + "trending": 1782, + "defaultSort": 912, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sumana", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 94523, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 3, + "lineHeight": 2.927 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 3, + "lineHeight": 2.927 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-04-29", + "popularity": 926, + "trending": 1580, + "defaultSort": 918, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sunflower", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 758389, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "JIKJISOFT" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-02-27", + "popularity": 492, + "trending": 127, + "defaultSort": 497, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sunshiney", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 160208, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.3203125 + } + }, + "axes": [], + "designers": [ + "Sideshow" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-01-06", + "popularity": 1303, + "trending": 536, + "defaultSort": 1266, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Supermercado One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 143180, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.197265625 + } + }, + "axes": [], + "designers": [ + "James Grieshaber" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-02", + "popularity": 773, + "trending": 880, + "defaultSort": 773, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Sura", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 144622, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 3, + "lineHeight": 1.57763671875 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 3, + "lineHeight": 1.57763671875 + } + }, + "axes": [], + "designers": [ + "Carolina Giovagnoli" + ], + "lastModified": "2023-08-25", + "dateAdded": "2015-06-17", + "popularity": 1000, + "trending": 834, + "defaultSort": 988, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Suranna", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 124163, + "subsets": [ + "menu", + "latin", + "telugu" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 2.18974358974359 + } + }, + "axes": [], + "designers": [ + "Purushoth Kumar Guttula" + ], + "lastModified": "2022-04-27", + "dateAdded": "2015-01-12", + "popularity": 715, + "trending": 1059, + "defaultSort": 724, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Suravaram", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 119552, + "subsets": [ + "menu", + "latin", + "telugu" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 2.13163265306122 + } + }, + "axes": [], + "designers": [ + "Purushoth Kumar Guttula" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-01-12", + "popularity": 1388, + "trending": 923, + "defaultSort": 1336, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Suwannaphum", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 101123, + "subsets": [ + "menu", + "khmer", + "latin" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.806640625 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.806640625 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.806640625 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.806640625 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.806640625 + } + }, + "axes": [], + "designers": [ + "Danh Hong" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-03-02", + "popularity": 1025, + "trending": 471, + "defaultSort": 1013, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Swanky and Moo Moo", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 31290, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.466796875 + } + }, + "axes": [], + "designers": [ + "Kimberly Geswein" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-04-27", + "popularity": 1211, + "trending": 1145, + "defaultSort": 1182, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Syncopate", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 119048, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 9, + "lineHeight": 1.041015625 + }, + "700": { + "thickness": 8, + "slant": 1, + "width": 9, + "lineHeight": 1.041015625 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-04-27", + "popularity": 449, + "trending": 465, + "defaultSort": 451, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Syne", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 146980, + "subsets": [ + "menu", + "greek", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Bonjour Monde", + "Lucas Descroix", + "George Triantafyllakos" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-08-25", + "popularity": 433, + "trending": 995, + "defaultSort": 437, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Syne Mono", + "displayName": null, + "category": "Monospace", + "stroke": null, + "classifications": [ + "Monospace" + ], + "size": 72240, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Bonjour Monde", + "Lucas Descroix" + ], + "lastModified": "2022-09-21", + "dateAdded": "2020-08-25", + "popularity": 735, + "trending": 1109, + "defaultSort": 742, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Syne Tactile", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 129820, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Bonjour Monde", + "Lucas Descroix" + ], + "lastModified": "2022-09-21", + "dateAdded": "2020-08-25", + "popularity": 1496, + "trending": 1780, + "defaultSort": 1414, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Tai Heritage Pro", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 288692, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tai-viet", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.099609375 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 2.099609375 + } + }, + "axes": [], + "designers": [ + "SIL International" + ], + "lastModified": "2023-05-31", + "dateAdded": "2022-05-12", + "popularity": 1428, + "trending": 559, + "defaultSort": 1371, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Tavt", + "primaryLanguage": "" + }, + { + "family": "Tajawal", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 59850, + "subsets": [ + "menu", + "arabic", + "latin" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Boutros Fonts", + "Mourad Boutros", + "Soulaf Khalifeh" + ], + "lastModified": "2022-09-21", + "dateAdded": "2018-04-04", + "popularity": 112, + "trending": 540, + "defaultSort": 107, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Tangerine", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 63056, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 10, + "width": 3, + "lineHeight": 1 + }, + "700": { + "thickness": 4, + "slant": 8, + "width": 4, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Toshi Omagari" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-06-08", + "popularity": 262, + "trending": 771, + "defaultSort": 260, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Tapestry", + "displayName": null, + "category": "Handwriting", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 137716, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-04-07", + "popularity": 1518, + "trending": 1703, + "defaultSort": 1427, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Taprom", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 203652, + "subsets": [ + "menu", + "khmer", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.806640625 + } + }, + "axes": [], + "designers": [ + "Danh Hong" + ], + "lastModified": "2022-04-27", + "dateAdded": "2011-03-02", + "popularity": 1417, + "trending": 1768, + "defaultSort": 1362, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Tauri", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 35140, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Yvonne Sch\u00FCttler" + ], + "lastModified": "2023-08-25", + "dateAdded": "2013-02-27", + "popularity": 1008, + "trending": 1101, + "defaultSort": 996, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Taviraj", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 226637, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.706 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.706 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.706 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.706 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.706 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.706 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.706 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.706 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.706 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.706 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.706 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.706 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.706 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.706 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.706 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.706 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.706 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.706 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-06-15", + "popularity": 307, + "trending": 930, + "defaultSort": 306, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Teko", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 292108, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": 4, + "slant": 1, + "width": 1, + "lineHeight": 1.433 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 2, + "lineHeight": 1.433 + }, + "500": { + "thickness": 6, + "slant": 1, + "width": 5, + "lineHeight": 1.433 + }, + "600": { + "thickness": 7, + "slant": 1, + "width": 6, + "lineHeight": 1.433 + }, + "700": { + "thickness": 8, + "slant": 1, + "width": 6, + "lineHeight": 1.433 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Indian Type Foundry" + ], + "lastModified": "2023-08-25", + "dateAdded": "2014-06-25", + "popularity": 83, + "trending": 740, + "defaultSort": 79, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Tektur", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 163160, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 400, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Adam Jagosz" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-06-15", + "popularity": 1192, + "trending": 617, + "defaultSort": 469, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Telex", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 38940, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.205 + } + }, + "axes": [], + "designers": [ + "Huerta Tipogr\u00E1fica" + ], + "lastModified": "2022-12-07", + "dateAdded": "2012-01-18", + "popularity": 547, + "trending": 583, + "defaultSort": 558, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Tenali Ramakrishna", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 278474, + "subsets": [ + "menu", + "latin", + "telugu" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.564 + } + }, + "axes": [], + "designers": [ + "Appaji Ambarisha Darbha" + ], + "lastModified": "2022-09-21", + "dateAdded": "2014-12-10", + "popularity": 704, + "trending": 1358, + "defaultSort": 714, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Tenor Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 131896, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.17 + } + }, + "axes": [], + "designers": [ + "Denis Masharov" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-05-25", + "popularity": 267, + "trending": 212, + "defaultSort": 266, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Text Me One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 37352, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 7, + "lineHeight": 1.221 + } + }, + "axes": [], + "designers": [ + "Julia Petretta" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-10-31", + "popularity": 1136, + "trending": 196, + "defaultSort": 1114, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Texturina", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 290320, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.56 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.56 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.56 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.56 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.56 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.56 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.56 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.56 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.56 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.56 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.56 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.56 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.56 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.56 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.56 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.56 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.56 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.56 + } + }, + "axes": [ + { + "tag": "opsz", + "min": 12, + "max": 72, + "defaultValue": 12 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Guillermo Torres", + "Omnibus-Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-10-23", + "popularity": 1206, + "trending": 114, + "defaultSort": 1178, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Thasadith", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 97012, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.3 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2023-08-25", + "dateAdded": "2018-09-10", + "popularity": 599, + "trending": 958, + "defaultSort": 606, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "The Girl Next Door", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 53364, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 7, + "lineHeight": 1.8427734375 + } + }, + "axes": [], + "designers": [ + "Kimberly Geswein" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-04-20", + "popularity": 1026, + "trending": 1189, + "defaultSort": 1014, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "The Nautigal", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 158298, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-11-18", + "popularity": 1193, + "trending": 507, + "defaultSort": 1168, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Tienne", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 72984, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.3447265625 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.3447265625 + }, + "900": { + "thickness": 8, + "slant": 1, + "width": 8, + "lineHeight": 1.3447265625 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-07-27", + "popularity": 986, + "trending": 1710, + "defaultSort": 975, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Tillana", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 313587, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 4, + "width": 7, + "lineHeight": 1.642 + }, + "500": { + "thickness": 5, + "slant": 5, + "width": 7, + "lineHeight": 1.642 + }, + "600": { + "thickness": 6, + "slant": 4, + "width": 8, + "lineHeight": 1.642 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.642 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.642 + } + }, + "axes": [], + "designers": [ + "Indian Type Foundry" + ], + "lastModified": "2023-08-25", + "dateAdded": "2015-06-03", + "popularity": 560, + "trending": 115, + "defaultSort": 570, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Tilt Neon", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 583288, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.262 + } + }, + "axes": [ + { + "tag": "XROT", + "min": -45, + "max": 45, + "defaultValue": 0 + }, + { + "tag": "YROT", + "min": -45, + "max": 45, + "defaultValue": 0 + } + ], + "designers": [ + "Andy Clymer" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-12-01", + "popularity": 1345, + "trending": 830, + "defaultSort": 1258, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Tilt Prism", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 1049672, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.262 + } + }, + "axes": [ + { + "tag": "XROT", + "min": -45, + "max": 45, + "defaultValue": 0 + }, + { + "tag": "YROT", + "min": -45, + "max": 45, + "defaultValue": 0 + } + ], + "designers": [ + "Andy Clymer" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-12-01", + "popularity": 1148, + "trending": 25, + "defaultSort": 219, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Tilt Warp", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 256812, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.262 + } + }, + "axes": [ + { + "tag": "XROT", + "min": -45, + "max": 45, + "defaultValue": 0 + }, + { + "tag": "YROT", + "min": -45, + "max": 45, + "defaultValue": 0 + } + ], + "designers": [ + "Andy Clymer" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-12-01", + "popularity": 1002, + "trending": 1001, + "defaultSort": 990, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Timmana", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 372715, + "subsets": [ + "menu", + "latin", + "telugu" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 3, + "width": 6, + "lineHeight": 1.62933333333333 + } + }, + "axes": [], + "designers": [ + "Appaji Ambarisha Darbha" + ], + "lastModified": "2022-09-21", + "dateAdded": "2015-01-12", + "popularity": 764, + "trending": 34, + "defaultSort": 398, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Tinos", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 459699, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "hebrew", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.14990234375 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 6, + "lineHeight": 1.14990234375 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.14990234375 + }, + "700i": { + "thickness": 6, + "slant": 4, + "width": 7, + "lineHeight": 1.14990234375 + } + }, + "axes": [], + "designers": [ + "Steve Matteson" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-11-18", + "popularity": 176, + "trending": 567, + "defaultSort": 168, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Tiro Bangla", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 326676, + "subsets": [ + "menu", + "bengali", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.33 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.33 + } + }, + "axes": [], + "designers": [ + "Tiro Typeworks", + "John Hudson", + "Fiona Ross", + "Neelakash Kshetrimayum" + ], + "lastModified": "2023-01-06", + "dateAdded": "2022-05-25", + "popularity": 1114, + "trending": 1014, + "defaultSort": 1096, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Beng", + "primaryLanguage": "" + }, + { + "family": "Tiro Devanagari Hindi", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 424430, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.33 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.33 + } + }, + "axes": [], + "designers": [ + "Tiro Typeworks", + "John Hudson", + "Fiona Ross", + "Paul Hanslow" + ], + "lastModified": "2023-01-06", + "dateAdded": "2022-05-25", + "popularity": 1031, + "trending": 1332, + "defaultSort": 1019, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Deva", + "primaryLanguage": "" + }, + { + "family": "Tiro Devanagari Marathi", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 440720, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.33 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.33 + } + }, + "axes": [], + "designers": [ + "Tiro Typeworks", + "John Hudson", + "Fiona Ross", + "Paul Hanslow" + ], + "lastModified": "2023-01-06", + "dateAdded": "2022-05-25", + "popularity": 1383, + "trending": 1649, + "defaultSort": 1333, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Deva", + "primaryLanguage": "" + }, + { + "family": "Tiro Devanagari Sanskrit", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 763452, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.33 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.33 + } + }, + "axes": [], + "designers": [ + "Tiro Typeworks", + "John Hudson", + "Fiona Ross", + "Paul Hanslow" + ], + "lastModified": "2023-01-06", + "dateAdded": "2022-05-25", + "popularity": 1448, + "trending": 1480, + "defaultSort": 1388, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Deva", + "primaryLanguage": "" + }, + { + "family": "Tiro Gurmukhi", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 152316, + "subsets": [ + "menu", + "gurmukhi", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Tiro Typeworks", + "John Hudson", + "Fiona Ross", + "Paul Hanslow" + ], + "lastModified": "2023-01-06", + "dateAdded": "2022-05-25", + "popularity": 1272, + "trending": 182, + "defaultSort": 1235, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Guru", + "primaryLanguage": "" + }, + { + "family": "Tiro Kannada", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 482926, + "subsets": [ + "menu", + "kannada", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.794 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.794 + } + }, + "axes": [], + "designers": [ + "Tiro Typeworks", + "John Hudson", + "Fiona Ross", + "Kaja S\u0142ojewska" + ], + "lastModified": "2023-01-06", + "dateAdded": "2022-05-25", + "popularity": 1164, + "trending": 206, + "defaultSort": 1140, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Knda", + "primaryLanguage": "" + }, + { + "family": "Tiro Tamil", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 198008, + "subsets": [ + "menu", + "latin", + "latin-ext", + "tamil" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.436 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.436 + } + }, + "axes": [], + "designers": [ + "Tiro Typeworks", + "Fernando Mello", + "Fiona Ross", + "Kaja S\u0142ojewska" + ], + "lastModified": "2023-05-09", + "dateAdded": "2022-05-25", + "popularity": 1456, + "trending": 1788, + "defaultSort": 1392, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Taml", + "primaryLanguage": "" + }, + { + "family": "Tiro Telugu", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 635216, + "subsets": [ + "menu", + "latin", + "latin-ext", + "telugu" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.794 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.794 + } + }, + "axes": [], + "designers": [ + "Tiro Typeworks", + "John Hudson", + "Fiona Ross", + "Kaja S\u0142ojewska" + ], + "lastModified": "2023-02-02", + "dateAdded": "2022-05-25", + "popularity": 1480, + "trending": 137, + "defaultSort": 1406, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Telu", + "primaryLanguage": "" + }, + { + "family": "Titan One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 55712, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 1, + "width": 8, + "lineHeight": 1.145 + } + }, + "axes": [], + "designers": [ + "Rodrigo Fuenzalida" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-01-11", + "popularity": 298, + "trending": 815, + "defaultSort": 296, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Titillium Web", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 65144, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "200": { + "thickness": 2, + "slant": 1, + "width": 6, + "lineHeight": 1.521 + }, + "200i": { + "thickness": 2, + "slant": 5, + "width": 6, + "lineHeight": 1.521 + }, + "300": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.521 + }, + "300i": { + "thickness": 4, + "slant": 5, + "width": 6, + "lineHeight": 1.521 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.521 + }, + "400i": { + "thickness": 4, + "slant": 5, + "width": 6, + "lineHeight": 1.521 + }, + "600": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.521 + }, + "600i": { + "thickness": 6, + "slant": 5, + "width": 6, + "lineHeight": 1.521 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.521 + }, + "700i": { + "thickness": 6, + "slant": 5, + "width": 6, + "lineHeight": 1.521 + }, + "900": { + "thickness": 9, + "slant": 1, + "width": 7, + "lineHeight": 1.521 + } + }, + "axes": [], + "designers": [ + "Accademia di Belle Arti di Urbino" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-10-01", + "popularity": 44, + "trending": 167, + "defaultSort": 42, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Tomorrow", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 60377, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Tony de Marco", + "Monica Rizzolli" + ], + "lastModified": "2023-08-25", + "dateAdded": "2019-10-02", + "popularity": 697, + "trending": 975, + "defaultSort": 708, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Tourney", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 166830, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.1 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 125, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Tyler Finck", + "ETC" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-04-29", + "popularity": 1421, + "trending": 35, + "defaultSort": 420, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Trade Winds", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 85380, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 5, + "width": 8, + "lineHeight": 1.453125 + } + }, + "axes": [], + "designers": [ + "Sideshow" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-19", + "popularity": 897, + "trending": 1238, + "defaultSort": 887, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Train One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 2152516, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Fontworks Inc." + ], + "lastModified": "2022-09-27", + "dateAdded": "2020-12-15", + "popularity": 1106, + "trending": 785, + "defaultSort": 1088, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Trirong", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 208121, + "subsets": [ + "menu", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.734 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.734 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.734 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.734 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.734 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.734 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.734 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.734 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.734 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.734 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.734 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.734 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.734 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.734 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.734 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.734 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.734 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.734 + } + }, + "axes": [], + "designers": [ + "Cadson Demak" + ], + "lastModified": "2023-08-25", + "dateAdded": "2016-06-15", + "popularity": 427, + "trending": 49, + "defaultSort": 431, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Trispace", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 303532, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.13 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.13 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.13 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.13 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.13 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.13 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.13 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.13 + } + }, + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 125, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Tyler Finck", + "ETC" + ], + "lastModified": "2023-08-25", + "dateAdded": "2020-09-25", + "popularity": 1118, + "trending": 1243, + "defaultSort": 1099, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Trocchi", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 68840, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.29931640625 + } + }, + "axes": [], + "designers": [ + "Vernon Adams" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-04-04", + "popularity": 632, + "trending": 1234, + "defaultSort": 643, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Trochut", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 26206, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.177 + }, + "400i": { + "thickness": 5, + "slant": 5, + "width": 6, + "lineHeight": 1.177 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 6, + "lineHeight": 1.177 + } + }, + "axes": [], + "designers": [ + "Andreu Balius" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-01-18", + "popularity": 1355, + "trending": 1797, + "defaultSort": 1309, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Truculenta", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 1052128, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.39 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.39 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.39 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.39 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.39 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.39 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.39 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.39 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.39 + } + }, + "axes": [ + { + "tag": "opsz", + "min": 12, + "max": 72, + "defaultValue": 14 + }, + { + "tag": "wdth", + "min": 75, + "max": 125, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-12-16", + "popularity": 1409, + "trending": 1409, + "defaultSort": 1355, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Trykker", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 23643, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Magnus Gaarde" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-19", + "popularity": 644, + "trending": 1648, + "defaultSort": 655, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Tsukimi Rounded", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 109196, + "subsets": [ + "menu", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Takashi Funayama" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-05-23", + "popularity": 1523, + "trending": 1609, + "defaultSort": 650, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Hira", + "primaryLanguage": "" + }, + { + "family": "Tulpen One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 35244, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 1, + "lineHeight": 1.08984375 + } + }, + "axes": [], + "designers": [ + "Naima Ben Ayed" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-08-03", + "popularity": 1093, + "trending": 1845, + "defaultSort": 1075, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Turret Road", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 51972, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.093 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.093 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.093 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.093 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.093 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.093 + } + }, + "axes": [], + "designers": [ + "Dale Sattler" + ], + "lastModified": "2023-08-25", + "dateAdded": "2019-09-03", + "popularity": 634, + "trending": 1171, + "defaultSort": 645, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Twinkle Star", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 310488, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.28 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-11-26", + "popularity": 1535, + "trending": 1078, + "defaultSort": 1437, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ubuntu", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 368578, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.149 + }, + "300i": { + "thickness": 4, + "slant": 5, + "width": 7, + "lineHeight": 1.149 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.149 + }, + "400i": { + "thickness": 5, + "slant": 5, + "width": 7, + "lineHeight": 1.149 + }, + "500": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.149 + }, + "500i": { + "thickness": 6, + "slant": 5, + "width": 7, + "lineHeight": 1.149 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 7, + "lineHeight": 1.149 + }, + "700i": { + "thickness": 7, + "slant": 5, + "width": 7, + "lineHeight": 1.149 + } + }, + "axes": [], + "designers": [ + "Dalton Maag" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-12-15", + "popularity": 23, + "trending": 1010, + "defaultSort": 23, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ubuntu Condensed", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 168405, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.149 + } + }, + "axes": [], + "designers": [ + "Dalton Maag" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-10-05", + "popularity": 194, + "trending": 766, + "defaultSort": 187, + "androidFragment": "name=Ubuntu&width=75.0", + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ubuntu Mono", + "displayName": null, + "category": "Monospace", + "stroke": "Sans Serif", + "classifications": [ + "Monospace" + ], + "size": 205893, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1 + }, + "400i": { + "thickness": 5, + "slant": 5, + "width": 7, + "lineHeight": 1 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1 + }, + "700i": { + "thickness": 6, + "slant": 5, + "width": 7, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Dalton Maag" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-10-05", + "popularity": 242, + "trending": 532, + "defaultSort": 239, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Uchen", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 859156, + "subsets": [ + "menu", + "latin", + "tibetan" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.86328125 + } + }, + "axes": [], + "designers": [ + "Christopher J. Fynn" + ], + "lastModified": "2023-08-25", + "dateAdded": "2019-12-07", + "popularity": 1445, + "trending": 1525, + "defaultSort": 1385, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ultra", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 52472, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 1, + "width": 9, + "lineHeight": 1.28271484375 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-05-09", + "popularity": 279, + "trending": 1376, + "defaultSort": 277, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Unbounded", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 778272, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.24 + } + }, + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "NaN" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-11-07", + "popularity": 270, + "trending": 558, + "defaultSort": 268, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Uncial Antiqua", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 34018, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.31591796875 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-19", + "popularity": 980, + "trending": 954, + "defaultSort": 970, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Underdog", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 101480, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.156 + } + }, + "axes": [], + "designers": [ + "Sergey Steblina", + "Jovanny Lemonad" + ], + "lastModified": "2023-05-02", + "dateAdded": "2012-09-23", + "popularity": 1099, + "trending": 138, + "defaultSort": 1081, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Unica One", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 71872, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.182 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-10-26", + "popularity": 347, + "trending": 447, + "defaultSort": 348, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "UnifrakturCook", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 42688, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "700": { + "thickness": 8, + "slant": 1, + "width": 6, + "lineHeight": 1.30859375 + } + }, + "axes": [], + "designers": [ + "j. 'mach' wust" + ], + "lastModified": "2023-08-25", + "dateAdded": "2010-12-07", + "popularity": 984, + "trending": 997, + "defaultSort": 973, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "UnifrakturMaguntia", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 88508, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 6, + "lineHeight": 1.03515625 + } + }, + "axes": [], + "designers": [ + "j. 'mach' wust" + ], + "lastModified": "2023-08-25", + "dateAdded": "2010-11-30", + "popularity": 676, + "trending": 955, + "defaultSort": 686, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Unkempt", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 191692, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 7, + "lineHeight": 1.2216796875 + }, + "700": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.1943359375 + } + }, + "axes": [], + "designers": [ + "Sideshow" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-05", + "popularity": 985, + "trending": 1479, + "defaultSort": 974, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Unlock", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 57640, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 8, + "slant": 1, + "width": 8, + "lineHeight": 1.068 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-11-30", + "popularity": 1158, + "trending": 1724, + "defaultSort": 1136, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Unna", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 78989, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1.152 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.152 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.152 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.152 + } + }, + "axes": [], + "designers": [ + "Omnibus-Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-07-20", + "popularity": 212, + "trending": 360, + "defaultSort": 206, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Updock", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 120868, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-03-23", + "popularity": 1447, + "trending": 1120, + "defaultSort": 1387, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Urbanist", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 86174, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Corey Hu" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-06-02", + "popularity": 138, + "trending": 628, + "defaultSort": 132, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "VT323", + "displayName": null, + "category": "Monospace", + "stroke": null, + "classifications": [ + "Monospace" + ], + "size": 153116, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 6, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Peter Hull" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-03-02", + "popularity": 369, + "trending": 36, + "defaultSort": 370, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Vampiro One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 19133, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 8, + "width": 8, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Riccardo De Franceschi" + ], + "lastModified": "2022-04-27", + "dateAdded": "2012-11-26", + "popularity": 1059, + "trending": 213, + "defaultSort": 1042, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Varela", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 79136, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.3 + } + }, + "axes": [], + "designers": [ + "Joe Prince" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-06-29", + "popularity": 378, + "trending": 1379, + "defaultSort": 379, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Varela Round", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 132748, + "subsets": [ + "menu", + "hebrew", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.204 + } + }, + "axes": [], + "designers": [ + "Joe Prince" + ], + "lastModified": "2023-02-16", + "dateAdded": "2011-07-13", + "popularity": 99, + "trending": 618, + "defaultSort": 96, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Varta", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 112072, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4501953125 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4501953125 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4501953125 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4501953125 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4501953125 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Joana Correia", + "Viktoriya Grabowska", + "Eben Sorkin" + ], + "lastModified": "2023-03-21", + "dateAdded": "2020-06-11", + "popularity": 1006, + "trending": 1389, + "defaultSort": 994, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Vast Shadow", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [ + "Display" + ], + "size": 62364, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 9, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Nicole Fally" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-10-12", + "popularity": 828, + "trending": 835, + "defaultSort": 822, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Vazirmatn", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 241328, + "subsets": [ + "menu", + "arabic", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5625 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5625 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5625 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5625 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5625 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5625 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5625 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5625 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.5625 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Saber Rastikerdar" + ], + "lastModified": "2023-05-02", + "dateAdded": "2022-03-16", + "popularity": 471, + "trending": 62, + "defaultSort": 474, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Vesper Libre", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 84789, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 3, + "lineHeight": 1.89453125 + }, + "500": { + "thickness": 5, + "slant": 1, + "width": 3, + "lineHeight": 1.89453125 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 3, + "lineHeight": 1.89453125 + }, + "900": { + "thickness": 8, + "slant": 1, + "width": 3, + "lineHeight": 1.89453125 + } + }, + "axes": [], + "designers": [ + "Mota Italic" + ], + "lastModified": "2022-09-21", + "dateAdded": "2014-07-14", + "popularity": 667, + "trending": 1449, + "defaultSort": 677, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Viaoda Libre", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 196944, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.411 + } + }, + "axes": [], + "designers": [ + "Gydient", + "Vi\u1EC7tAnh Nguy\u1EC5n" + ], + "lastModified": "2023-08-25", + "dateAdded": "2019-11-05", + "popularity": 1176, + "trending": 1209, + "defaultSort": 1152, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Vibes", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 78412, + "subsets": [ + "menu", + "arabic", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.785 + } + }, + "axes": [], + "designers": [ + "AbdElmomen Kadhim (blueMix)" + ], + "lastModified": "2022-09-21", + "dateAdded": "2019-04-23", + "popularity": 1302, + "trending": 122, + "defaultSort": 1265, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Vibur", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 91454, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 3, + "width": 6, + "lineHeight": 1.43359375 + } + }, + "axes": [], + "designers": [ + "Johan Kallas" + ], + "lastModified": "2022-09-21", + "dateAdded": "2010-12-15", + "popularity": 916, + "trending": 459, + "defaultSort": 905, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Victor Mono", + "displayName": null, + "category": "Monospace", + "stroke": "Sans Serif", + "classifications": [ + "Monospace" + ], + "size": 218592, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.35 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.35 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.35 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.35 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.35 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.35 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.35 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.35 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.35 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.35 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.35 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.35 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.35 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.35 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Rune Bj\u00F8rner\u00E5s" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-06-20", + "popularity": 1459, + "trending": 1644, + "defaultSort": 382, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Vidaloka", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 67261, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.21435546875 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-08-17", + "popularity": 277, + "trending": 1564, + "defaultSort": 275, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Viga", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 15882, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 7, + "lineHeight": 1.344 + } + }, + "axes": [], + "designers": [ + "Fontstage" + ], + "lastModified": "2022-09-21", + "dateAdded": "2011-12-07", + "popularity": 287, + "trending": 1447, + "defaultSort": 284, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Vina Sans", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 93328, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.215 + } + }, + "axes": [], + "designers": [ + "Nguyen Type" + ], + "lastModified": "2023-08-25", + "dateAdded": "2023-03-15", + "popularity": 1469, + "trending": 1272, + "defaultSort": 963, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Voces", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 123756, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.349 + } + }, + "axes": [], + "designers": [ + "Ana Paula Megda", + "Pablo Ugerman" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-02-22", + "popularity": 990, + "trending": 885, + "defaultSort": 979, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Volkhov", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 55281, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 1, + "width": 8, + "lineHeight": 1.29 + }, + "400i": { + "thickness": 5, + "slant": 5, + "width": 7, + "lineHeight": 1.29 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.29 + }, + "700i": { + "thickness": 6, + "slant": 5, + "width": 7, + "lineHeight": 1.29 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2022-04-27", + "dateAdded": "2011-08-17", + "popularity": 284, + "trending": 492, + "defaultSort": 281, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Vollkorn", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 509564, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.393 + }, + "400i": { + "thickness": 5, + "slant": 4, + "width": 6, + "lineHeight": 1.393 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.393 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.393 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.393 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.393 + }, + "700": { + "thickness": 8, + "slant": 1, + "width": 8, + "lineHeight": 1.393 + }, + "700i": { + "thickness": 8, + "slant": 4, + "width": 7, + "lineHeight": 1.393 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.393 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.393 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.393 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.393 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Friedrich Althausen" + ], + "lastModified": "2023-09-14", + "dateAdded": "2010-09-08", + "popularity": 155, + "trending": 1279, + "defaultSort": 148, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Vollkorn SC", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 203058, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.393 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.393 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.393 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.393 + } + }, + "axes": [], + "designers": [ + "Friedrich Althausen" + ], + "lastModified": "2022-09-21", + "dateAdded": "2017-09-08", + "popularity": 601, + "trending": 1307, + "defaultSort": 608, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Voltaire", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 262432, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 4, + "slant": 1, + "width": 6, + "lineHeight": 1.24560546875 + } + }, + "axes": [], + "designers": [ + "Yvonne Sch\u00FCttler" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-08-17", + "popularity": 341, + "trending": 1517, + "defaultSort": 339, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Vujahday Script", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 333472, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.36 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-11-18", + "popularity": 1056, + "trending": 424, + "defaultSort": 1040, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Waiting for the Sunrise", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 59240, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 2, + "slant": 1, + "width": 6, + "lineHeight": 1.6533203125 + } + }, + "axes": [], + "designers": [ + "Kimberly Geswein" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-04-14", + "popularity": 680, + "trending": 1293, + "defaultSort": 689, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Wallpoet", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 39904, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.002 + } + }, + "axes": [], + "designers": [ + "Lars Berggren" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-04-27", + "popularity": 522, + "trending": 1418, + "defaultSort": 528, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Walter Turncoat", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 153836, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 7, + "lineHeight": 1.396484375 + } + }, + "axes": [], + "designers": [ + "Sideshow" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-01-06", + "popularity": 842, + "trending": 366, + "defaultSort": 834, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Warnes", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 70272, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.304 + } + }, + "axes": [], + "designers": [ + "Eduardo Tunni" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-09-07", + "popularity": 1497, + "trending": 1288, + "defaultSort": 1415, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Water Brush", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 332028, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.45 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-04-07", + "popularity": 1307, + "trending": 1158, + "defaultSort": 1269, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Waterfall", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 521348, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.16 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-11-18", + "popularity": 1187, + "trending": 1040, + "defaultSort": 1163, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Wavefont", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display", + "Symbols" + ], + "size": 67556, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.4 + } + }, + "axes": [ + { + "tag": "ROND", + "min": 0, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "YELA", + "min": -100, + "max": 100, + "defaultValue": -100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Dmitry Ivanov" + ], + "lastModified": "2023-09-13", + "dateAdded": "2023-08-14", + "popularity": 1525, + "trending": 1832, + "defaultSort": 196, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Wellfleet", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [ + "Monospace" + ], + "size": 82016, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 5, + "slant": 1, + "width": 8, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Riccardo De Franceschi" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-01-11", + "popularity": 1016, + "trending": 552, + "defaultSort": 1002, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Wendy One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 22772, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": 9, + "slant": 1, + "width": 7, + "lineHeight": 1.055 + } + }, + "axes": [], + "designers": [ + "Alejandro Inler" + ], + "lastModified": "2023-08-25", + "dateAdded": "2012-12-13", + "popularity": 862, + "trending": 1257, + "defaultSort": 851, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Whisper", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 134852, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.28 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2022-03-23", + "popularity": 1244, + "trending": 91, + "defaultSort": 1208, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "WindSong", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 271924, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.405 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.405 + } + }, + "axes": [], + "designers": [ + "Robert Leuschke" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-05-28", + "popularity": 1126, + "trending": 1090, + "defaultSort": 1106, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Wire One", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 48420, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 1, + "slant": 1, + "width": 1, + "lineHeight": 1.1 + } + }, + "axes": [], + "designers": [ + "Cyreal" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-05-18", + "popularity": 995, + "trending": 547, + "defaultSort": 983, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Wix Madefor Display", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 159752, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Dalton Maag" + ], + "lastModified": "2023-09-13", + "dateAdded": "2023-05-08", + "popularity": 734, + "trending": 1645, + "defaultSort": 683, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Wix Madefor Text", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 122524, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.26 + } + }, + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 800, + "defaultValue": 400 + } + ], + "designers": [ + "Dalton Maag" + ], + "lastModified": "2023-05-09", + "dateAdded": "2023-05-08", + "popularity": 1213, + "trending": 103, + "defaultSort": 640, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Work Sans", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 348914, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "100": { + "thickness": 1, + "slant": 1, + "width": 3, + "lineHeight": 1.173 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.173 + }, + "200": { + "thickness": 2, + "slant": 1, + "width": 3, + "lineHeight": 1.173 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.173 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 3, + "lineHeight": 1.173 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.173 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 3, + "lineHeight": 1.173 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.173 + }, + "500": { + "thickness": 5, + "slant": 1, + "width": 3, + "lineHeight": 1.173 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.173 + }, + "600": { + "thickness": 6, + "slant": 1, + "width": 3, + "lineHeight": 1.173 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.173 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 3, + "lineHeight": 1.173 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.173 + }, + "800": { + "thickness": 8, + "slant": 1, + "width": 3, + "lineHeight": 1.173 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.173 + }, + "900": { + "thickness": 9, + "slant": 1, + "width": 3, + "lineHeight": 1.173 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.173 + } + }, + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "designers": [ + "Wei Huang" + ], + "lastModified": "2023-09-14", + "dateAdded": "2015-07-08", + "popularity": 33, + "trending": 998, + "defaultSort": 34, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Xanh Mono", + "displayName": null, + "category": "Monospace", + "stroke": null, + "classifications": [ + "Monospace" + ], + "size": 61880, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.19 + } + }, + "axes": [], + "designers": [ + "Yellow Type", + "L\u00E2m B\u1EA3o", + "Duy Dao" + ], + "lastModified": "2023-06-07", + "dateAdded": "2020-08-10", + "popularity": 858, + "trending": 1253, + "defaultSort": 847, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Yaldevi", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 469216, + "subsets": [ + "menu", + "latin", + "latin-ext", + "sinhala" + ], + "fonts": { + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.316 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.316 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.316 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.316 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.316 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.316 + } + }, + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Mooniak" + ], + "lastModified": "2023-03-21", + "dateAdded": "2021-06-28", + "popularity": 1229, + "trending": 1237, + "defaultSort": 1197, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Yanone Kaffeesatz", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 122256, + "subsets": [ + "menu", + "cyrillic", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "200": { + "thickness": 1, + "slant": 1, + "width": 5, + "lineHeight": 0.992 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 5, + "lineHeight": 0.992 + }, + "400": { + "thickness": 4, + "slant": 1, + "width": 5, + "lineHeight": 0.992 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.992 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 0.992 + }, + "700": { + "thickness": 6, + "slant": 1, + "width": 2, + "lineHeight": 0.992 + } + }, + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Yanone", + "Cyreal" + ], + "lastModified": "2023-08-25", + "dateAdded": "2010-05-11", + "popularity": 137, + "trending": 1249, + "defaultSort": 131, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Yantramanav", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 157838, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "100": { + "thickness": 1, + "slant": 1, + "width": 3, + "lineHeight": 1.296875 + }, + "300": { + "thickness": 3, + "slant": 1, + "width": 3, + "lineHeight": 1.296875 + }, + "400": { + "thickness": 5, + "slant": 1, + "width": 3, + "lineHeight": 1.296875 + }, + "500": { + "thickness": 6, + "slant": 1, + "width": 3, + "lineHeight": 1.296875 + }, + "700": { + "thickness": 7, + "slant": 1, + "width": 3, + "lineHeight": 1.296875 + }, + "900": { + "thickness": 8, + "slant": 1, + "width": 3, + "lineHeight": 1.296875 + } + }, + "axes": [], + "designers": [ + "Erin McLaughlin" + ], + "lastModified": "2023-08-25", + "dateAdded": "2015-06-03", + "popularity": 177, + "trending": 184, + "defaultSort": 170, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Yatra One", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 276324, + "subsets": [ + "menu", + "devanagari", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.478 + } + }, + "axes": [], + "designers": [ + "Catherine Leigh Schmidt" + ], + "lastModified": "2022-09-21", + "dateAdded": "2016-06-15", + "popularity": 333, + "trending": 1685, + "defaultSort": 331, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Yellowtail", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 62216, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 8, + "width": 5, + "lineHeight": 1.36279296875 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-07-20", + "popularity": 208, + "trending": 730, + "defaultSort": 202, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Yeon Sung", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 2495400, + "subsets": [ + "menu", + "korean", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.25 + } + }, + "axes": [], + "designers": [ + "Woowahan brothers" + ], + "lastModified": "2022-09-27", + "dateAdded": "2018-02-23", + "popularity": 1261, + "trending": 1437, + "defaultSort": 1224, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Yeseva One", + "displayName": null, + "category": "Display", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 108016, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": 7, + "slant": 1, + "width": 8, + "lineHeight": 1.155 + } + }, + "axes": [], + "designers": [ + "Jovanny Lemonad" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-07-13", + "popularity": 255, + "trending": 1045, + "defaultSort": 251, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Yesteryear", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 64856, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 6, + "slant": 7, + "width": 5, + "lineHeight": 1.46728515625 + } + }, + "axes": [], + "designers": [ + "Astigmatic" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-12-19", + "popularity": 534, + "trending": 1114, + "defaultSort": 543, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Yomogi", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 4039220, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Satsuyako" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-04-14", + "popularity": 1111, + "trending": 755, + "defaultSort": 1093, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Young Serif", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 106608, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.412 + } + }, + "axes": [], + "designers": [ + "Bastien Sozeau" + ], + "lastModified": "2023-09-27", + "dateAdded": "2023-09-26", + "popularity": 950, + "trending": 2, + "defaultSort": 3, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Yrsa", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 255796, + "subsets": [ + "menu", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.218 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.218 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.218 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.218 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.218 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.218 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.218 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.218 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.218 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.218 + } + }, + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "designers": [ + "Rosetta", + "Anna Giedry\u015B", + "David B\u0159ezina" + ], + "lastModified": "2023-05-02", + "dateAdded": "2016-06-15", + "popularity": 460, + "trending": 761, + "defaultSort": 462, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ysabeau", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 382778, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "1": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "1000": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "1000i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "1i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + } + }, + "axes": [ + { + "tag": "wght", + "min": 1, + "max": 1000, + "defaultValue": 400 + } + ], + "designers": [ + "Christian Thalmann" + ], + "lastModified": "2023-04-20", + "dateAdded": "2023-04-19", + "popularity": 1378, + "trending": 1403, + "defaultSort": 642, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ysabeau Infant", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 338604, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "1": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "1000": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "1000i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "1i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + } + }, + "axes": [ + { + "tag": "wght", + "min": 1, + "max": 1000, + "defaultValue": 400 + } + ], + "designers": [ + "Christian Thalmann" + ], + "lastModified": "2023-06-22", + "dateAdded": "2023-06-21", + "popularity": 1324, + "trending": 1500, + "defaultSort": 346, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ysabeau Office", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 352262, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "1": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "1000": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "1000i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "100i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "1i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "200i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "800i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "900i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + } + }, + "axes": [ + { + "tag": "wght", + "min": 1, + "max": 1000, + "defaultValue": 400 + } + ], + "designers": [ + "Christian Thalmann" + ], + "lastModified": "2023-06-22", + "dateAdded": "2023-06-21", + "popularity": 1422, + "trending": 562, + "defaultSort": 347, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Ysabeau SC", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 223380, + "subsets": [ + "menu", + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "fonts": { + "1": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "100": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "1000": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + }, + "200": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "800": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.343 + } + }, + "axes": [ + { + "tag": "wght", + "min": 1, + "max": 1000, + "defaultValue": 400 + } + ], + "designers": [ + "Christian Thalmann" + ], + "lastModified": "2023-06-22", + "dateAdded": "2023-06-21", + "popularity": 1482, + "trending": 1777, + "defaultSort": 417, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Yuji Boku", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 8525588, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Kinuta Font Factory" + ], + "lastModified": "2022-09-27", + "dateAdded": "2021-09-26", + "popularity": 1377, + "trending": 757, + "defaultSort": 1329, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Yuji Hentaigana Akari", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 93496, + "subsets": [ + "menu", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Kinuta Font Factory" + ], + "lastModified": "2023-05-31", + "dateAdded": "2021-06-10", + "popularity": 1492, + "trending": 154, + "defaultSort": 1411, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Hira", + "primaryLanguage": "" + }, + { + "family": "Yuji Hentaigana Akebono", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 99100, + "subsets": [ + "menu", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Kinuta Font Factory" + ], + "lastModified": "2023-05-31", + "dateAdded": "2021-06-10", + "popularity": 1626, + "trending": 1620, + "defaultSort": 1499, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Hira", + "primaryLanguage": "" + }, + { + "family": "Yuji Mai", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 8496292, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Kinuta Font Factory" + ], + "lastModified": "2022-09-27", + "dateAdded": "2021-09-26", + "popularity": 1468, + "trending": 1811, + "defaultSort": 1397, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Yuji Syuku", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 8430348, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Kinuta Font Factory" + ], + "lastModified": "2022-09-27", + "dateAdded": "2021-09-26", + "popularity": 1047, + "trending": 875, + "defaultSort": 1033, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Yusei Magic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 3134968, + "subsets": [ + "menu", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Tanukizamurai" + ], + "lastModified": "2023-05-02", + "dateAdded": "2020-12-14", + "popularity": 779, + "trending": 1224, + "defaultSort": 778, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "ZCOOL KuaiLe", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 3275404, + "subsets": [ + "menu", + "chinese-simplified", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Liu Bingke", + "Yang Kang", + "Wu Shaojie" + ], + "lastModified": "2022-11-09", + "dateAdded": "2018-12-10", + "popularity": 879, + "trending": 135, + "defaultSort": 871, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Hans", + "primaryLanguage": "" + }, + { + "family": "ZCOOL QingKe HuangYou", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 8328684, + "subsets": [ + "menu", + "chinese-simplified", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Zheng Qingke" + ], + "lastModified": "2022-11-09", + "dateAdded": "2018-12-10", + "popularity": 625, + "trending": 123, + "defaultSort": 635, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Hans", + "primaryLanguage": "" + }, + { + "family": "ZCOOL XiaoWei", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 6313808, + "subsets": [ + "menu", + "chinese-simplified", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Li Dawei" + ], + "lastModified": "2022-11-09", + "dateAdded": "2018-12-10", + "popularity": 717, + "trending": 1399, + "defaultSort": 726, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Hans", + "primaryLanguage": "" + }, + { + "family": "Zen Antique", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 5507920, + "subsets": [ + "menu", + "cyrillic", + "greek", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Yoshimichi Ohira" + ], + "lastModified": "2023-01-06", + "dateAdded": "2021-08-31", + "popularity": 548, + "trending": 1444, + "defaultSort": 559, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Jpan", + "primaryLanguage": "" + }, + { + "family": "Zen Antique Soft", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 7095608, + "subsets": [ + "menu", + "cyrillic", + "greek", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Yoshimichi Ohira" + ], + "lastModified": "2023-01-06", + "dateAdded": "2021-08-31", + "popularity": 1182, + "trending": 1445, + "defaultSort": 1158, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Jpan", + "primaryLanguage": "" + }, + { + "family": "Zen Dots", + "displayName": null, + "category": "Display", + "stroke": "Sans Serif", + "classifications": [ + "Display" + ], + "size": 37112, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Yoshimichi Ohira" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-03-11", + "popularity": 870, + "trending": 100, + "defaultSort": 859, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Zen Kaku Gothic Antique", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 2305184, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Yoshimichi Ohira" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-08-31", + "popularity": 690, + "trending": 1807, + "defaultSort": 699, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Jpan", + "primaryLanguage": "" + }, + { + "family": "Zen Kaku Gothic New", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 2296893, + "subsets": [ + "menu", + "cyrillic", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Yoshimichi Ohira" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-08-31", + "popularity": 292, + "trending": 449, + "defaultSort": 289, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Jpan", + "primaryLanguage": "" + }, + { + "family": "Zen Kurenaido", + "displayName": null, + "category": "Sans Serif", + "stroke": "Sans Serif", + "classifications": [], + "size": 4303112, + "subsets": [ + "menu", + "cyrillic", + "greek", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Yoshimichi Ohira" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-08-31", + "popularity": 730, + "trending": 1607, + "defaultSort": 738, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Jpan", + "primaryLanguage": "" + }, + { + "family": "Zen Loop", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 44240, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.125 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.125 + } + }, + "axes": [], + "designers": [ + "Yoshimichi Ohira" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-03-10", + "popularity": 1374, + "trending": 39, + "defaultSort": 508, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Zen Maru Gothic", + "displayName": null, + "category": "Sans Serif", + "stroke": "Serif", + "classifications": [ + "Display" + ], + "size": 3771293, + "subsets": [ + "menu", + "cyrillic", + "greek", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Yoshimichi Ohira" + ], + "lastModified": "2023-08-25", + "dateAdded": "2021-08-31", + "popularity": 371, + "trending": 1721, + "defaultSort": 372, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Jpan", + "primaryLanguage": "" + }, + { + "family": "Zen Old Mincho", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 5463908, + "subsets": [ + "menu", + "cyrillic", + "greek", + "japanese", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + }, + "900": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.448 + } + }, + "axes": [], + "designers": [ + "Yoshimichi Ohira" + ], + "lastModified": "2023-01-06", + "dateAdded": "2021-08-31", + "popularity": 521, + "trending": 82, + "defaultSort": 527, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "Jpan", + "primaryLanguage": "" + }, + { + "family": "Zen Tokyo Zoo", + "displayName": null, + "category": "Display", + "stroke": null, + "classifications": [ + "Display" + ], + "size": 92176, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Yoshimichi Ohira" + ], + "lastModified": "2023-01-06", + "dateAdded": "2021-04-30", + "popularity": 1268, + "trending": 1738, + "defaultSort": 1231, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Zeyada", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting", + "Display" + ], + "size": 63064, + "subsets": [ + "menu", + "latin" + ], + "fonts": { + "400": { + "thickness": 3, + "slant": 1, + "width": 6, + "lineHeight": 1.576171875 + } + }, + "axes": [], + "designers": [ + "Kimberly Geswein" + ], + "lastModified": "2023-08-25", + "dateAdded": "2011-06-08", + "popularity": 226, + "trending": 1416, + "defaultSort": 220, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Zhi Mang Xing", + "displayName": null, + "category": "Handwriting", + "stroke": null, + "classifications": [ + "Handwriting" + ], + "size": 4063532, + "subsets": [ + "menu", + "chinese-simplified", + "latin" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1 + } + }, + "axes": [], + "designers": [ + "Wei Zhimang" + ], + "lastModified": "2022-09-27", + "dateAdded": "2019-03-17", + "popularity": 1096, + "trending": 1156, + "defaultSort": 1078, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Zilla Slab", + "displayName": null, + "category": "Serif", + "stroke": "Serif", + "classifications": [], + "size": 272912, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "300": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "300i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "400i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "500i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "600i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700i": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Typotheque" + ], + "lastModified": "2022-09-21", + "dateAdded": "2017-06-28", + "popularity": 121, + "trending": 1030, + "defaultSort": 117, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + }, + { + "family": "Zilla Slab Highlight", + "displayName": null, + "category": "Serif", + "stroke": "Slab Serif", + "classifications": [], + "size": 273594, + "subsets": [ + "menu", + "latin", + "latin-ext" + ], + "fonts": { + "400": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + }, + "700": { + "thickness": null, + "slant": null, + "width": null, + "lineHeight": 1.2 + } + }, + "axes": [], + "designers": [ + "Typotheque" + ], + "lastModified": "2023-08-25", + "dateAdded": "2017-07-26", + "popularity": 1049, + "trending": 777, + "defaultSort": 1034, + "androidFragment": null, + "isNoto": false, + "colorCapabilities": [], + "primaryScript": "", + "primaryLanguage": "" + } + ], + "promotedScript": null +} \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index ee0ad6688..cce8512a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,6 +59,8 @@ dependencies = [ 'bumpfontversion', 'nanoemoji>=0.15.0', 'font-v', + 'beautifulsoup4', + 'rich' ] [project.optional-dependencies] diff --git a/tests/push/test_items.py b/tests/push/test_items.py new file mode 100644 index 000000000..9c44358f0 --- /dev/null +++ b/tests/push/test_items.py @@ -0,0 +1,128 @@ +import pytest +import os +from pathlib import Path + +from gftools.push.items import Family, FamilyMeta, Designer, Axis, AxisFallback +from pkg_resources import resource_filename +import json + + +CWD = os.path.dirname(__file__) +TEST_DIR = os.path.join(CWD, "..", "..", "data", "test", "gf_fonts") +SERVER_DIR = os.path.join(CWD, "..", "..", "data", "test", "servers") +TEST_FAMILY_DIR = Path(TEST_DIR) / "ofl" / "mavenpro" +DESIGNER_DIR = Path(TEST_DIR) / "joeprince" +AXES_DIR = Path(resource_filename("axisregistry", "data")) +FAMILY_JSON = json.load(open(os.path.join(SERVER_DIR, "family.json"))) +FONTS_JSON = json.load(open(os.path.join(SERVER_DIR, "fonts.json"))) + + + +@pytest.mark.parametrize( + "type_, fp, gf_data, res", + [ + ( + Family, + TEST_FAMILY_DIR, + next(f for f in FONTS_JSON["familyMetadataList"] if f["family"] == "Maven Pro"), + Family( + name="Maven Pro", + version="Version 2.102", + ) + ), + ( + FamilyMeta, + TEST_FAMILY_DIR, + FAMILY_JSON, + FamilyMeta( + name="Maven Pro", + designer=["Joe Prince"], + license="ofl", + category="SANS_SERIF", + subsets=['latin', 'latin-ext', 'vietnamese'], + stroke="SANS_SERIF", + classifications=[], + description= \ +""" +
++ Maven Pro is a sans-serif typeface with unique curvature and flowing rhythm. Its forms make it very distinguishable and legible when in context. It blends styles of many great typefaces and is suitable for any design medium. Maven Pro’s modern design is great for the web and fits in any environment. +
++ Updated in January 2019 with a Variable Font "Weight" axis. +
++ The Maven Pro project was initiated by Joe Price, a type designer based in the USA. To contribute, see + + github.com/googlefonts/mavenproFont + +
+ +""" + ) + ), + ( + Designer, + DESIGNER_DIR, + FAMILY_JSON["designers"][0], + Designer( + name="Joe Prince", + bio=None + ) + ), + ( + Axis, + AXES_DIR / "weight.textproto", + next(a for a in FONTS_JSON["axisRegistry"] if a["tag"] == "wght"), + Axis( + tag='wght', + display_name='Weight', + min_value=1.0, + default_value=400.0, + max_value=1000.0, + precision=0, + fallback=[ + AxisFallback( + name='Thin', + value=100.0 + ), + AxisFallback( + name='ExtraLight', + value=200.0 + ), + AxisFallback( + name='Light', + value=300.0 + ), + AxisFallback( + name='Regular', + value=400.0 + ), + AxisFallback( + name='Medium', + value=500.0 + ), + AxisFallback( + name='SemiBold', + value=600.0 + ), + AxisFallback( + name='Bold', + value=700. + ), + AxisFallback( + name='ExtraBold', + value=800.0 + ), + AxisFallback( + name='Black', + value=900.0 + ) + ], + fallback_only=False, + description='Adjust the style from lighter to bolder in typographic color, by varying stroke weights, spacing and kerning, and other aspects of the type. This typically changes overall width, and so may be used in conjunction with Width and Grade axes.') + ) + ] +) +def test_item_from_fp_and_gf_data(type_, fp, gf_data, res): + assert type_.from_fp(fp) == type_.from_gf_json(gf_data) == res diff --git a/tests/push/test_servers.py b/tests/push/test_servers.py new file mode 100644 index 000000000..cc3aa1aab --- /dev/null +++ b/tests/push/test_servers.py @@ -0,0 +1,68 @@ +import pytest +from gftools.push.servers import GFServers, GFServer +from gftools.push.items import Family, Designer, FamilyMeta + + +DATA = { + "dev": {"families": {"Abel": {"name": "Abel", "version": "1.000"}}}, + "sandbox": {"families": {"Abel": {"name": "Abel", "version": "0.999"}}}, + "production": {"families": {"Abel": {"name": "Abel", "version": "0.999"}}}, + "last_checked": "2023-01-01" +} + + +@pytest.fixture +def servers(): + return GFServers.from_dict(DATA) + + +def test_servers_open_and_save(servers): + assert servers != None + assert servers.to_json() != None + + +def test_iter(servers): + assert ["dev", "sandbox", "production"] == [s.name for s in servers] + + +@pytest.mark.parametrize( + "item, res", + [ + ( + Family("Abel", "1.000"), + { + "name": "Abel", + "version": "1.000", + "In dev": True, + "In sandbox": False, + "In production": False + } + ) + ] +) +def test_compare_items(servers, item, res): + # TODO may be worth using a dataclass instead of dict + assert servers.compare_item(item) == res + + +@pytest.fixture +def server(): + return GFServer(name="Prod") + + +@pytest.mark.parametrize( + "method, family_name, res", + [ + # Test on a family which isn't updated regularly. We should + # probably use mocks at some point + ("update_family", "Allan", Family("Allan", "Version 1.002")), + ("update_family_designers", "Allan", Designer(name='Anton Koovit', bio=None)), + ("update_metadata", "Allan", FamilyMeta(name='Allan', designer=['Anton Koovit'], license='ofl', category='DISPLAY', subsets=['latin', 'latin-ext'], stroke='SERIF', classifications=['display'], description='\n \n\n Once Allan was a sign painter in Berlin. Grey paneling work in the subway, bad materials, a city split in two. Now things have changed. His (character) palette of activities have expanded tremendously: he happily spends time traveling, experimenting in the gastronomic field, all kinds of festivities are no longer foreign to him. He comes with alternate features, and hints. A typeface suited for bigger sizes and display use. Truly a type that you like to see!\n
\n \n')) + ] +) +def test_update_server(server, method, family_name, res): + assert server.find_item(res) == None + funcc = getattr(server, method) + funcc(family_name) + assert server.find_item(res) == res + diff --git a/tests/test_push.py b/tests/push/test_trafficjam.py similarity index 99% rename from tests/test_push.py rename to tests/push/test_trafficjam.py index eafa65717..f1866f04e 100644 --- a/tests/test_push.py +++ b/tests/push/test_trafficjam.py @@ -1,12 +1,12 @@ import pytest import operator -from gftools.push import PushItem, PushItems, PushCategory, PushStatus, PushList +from gftools.push.trafficjam import PushItem, PushItems, PushCategory, PushStatus, PushList from pathlib import Path import os CWD = os.path.dirname(__file__) -TEST_DIR = os.path.join(CWD, "..", "data", "test", "gf_fonts") +TEST_DIR = os.path.join(CWD, "..", "..", "data", "test", "gf_fonts") TEST_FAMILY_DIR = Path(os.path.join(TEST_DIR, "ofl", "mavenpro"))