├── .github └── workflows │ └── build.yaml ├── .gitignore ├── .init.stamp ├── AUTHORS.txt ├── CONTRIBUTORS.txt ├── Makefile ├── OFL.txt ├── README.md ├── documentation ├── DESCRIPTION.en_us.html ├── P_DESCRIPTION.en_us.html ├── header.png └── image1.py ├── fonts └── ttf │ ├── BIZUDGothic-Bold.ttf │ ├── BIZUDGothic-Regular.ttf │ ├── BIZUDPGothic-Bold.ttf │ └── BIZUDPGothic-Regular.ttf ├── requirements.txt ├── scripts ├── first-run.py └── index.html ├── sources ├── build.py ├── extensions │ ├── BIZ-UDGothic-BoldExt.glyphs │ ├── BIZ-UDGothicExt.glyphs │ ├── BIZ-UDPGothic-BoldExt.glyphs │ ├── BIZ-UDPGothicExt.glyphs │ └── otf │ │ ├── BIZ-UDGothic-Bold.otf │ │ ├── BIZ-UDGothic.otf │ │ ├── BIZ-UDPGothic-Bold.otf │ │ ├── BIZ-UDPGothic.otf │ │ └── README.md └── ttf │ ├── BIZ-UDGothic-Bold.ttf │ ├── BIZ-UDGothic.ttf │ ├── BIZ-UDPGothic-Bold.ttf │ ├── BIZ-UDPGothic.ttf │ └── README.md └── workflows └── build.yaml /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/.gitignore -------------------------------------------------------------------------------- /.init.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/Makefile -------------------------------------------------------------------------------- /OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/OFL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/README.md -------------------------------------------------------------------------------- /documentation/DESCRIPTION.en_us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/documentation/DESCRIPTION.en_us.html -------------------------------------------------------------------------------- /documentation/P_DESCRIPTION.en_us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/documentation/P_DESCRIPTION.en_us.html -------------------------------------------------------------------------------- /documentation/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/documentation/header.png -------------------------------------------------------------------------------- /documentation/image1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/documentation/image1.py -------------------------------------------------------------------------------- /fonts/ttf/BIZUDGothic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/fonts/ttf/BIZUDGothic-Bold.ttf -------------------------------------------------------------------------------- /fonts/ttf/BIZUDGothic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/fonts/ttf/BIZUDGothic-Regular.ttf -------------------------------------------------------------------------------- /fonts/ttf/BIZUDPGothic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/fonts/ttf/BIZUDPGothic-Bold.ttf -------------------------------------------------------------------------------- /fonts/ttf/BIZUDPGothic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/fonts/ttf/BIZUDPGothic-Regular.ttf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/first-run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/scripts/first-run.py -------------------------------------------------------------------------------- /scripts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/scripts/index.html -------------------------------------------------------------------------------- /sources/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/sources/build.py -------------------------------------------------------------------------------- /sources/extensions/BIZ-UDGothic-BoldExt.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/sources/extensions/BIZ-UDGothic-BoldExt.glyphs -------------------------------------------------------------------------------- /sources/extensions/BIZ-UDGothicExt.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/sources/extensions/BIZ-UDGothicExt.glyphs -------------------------------------------------------------------------------- /sources/extensions/BIZ-UDPGothic-BoldExt.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/sources/extensions/BIZ-UDPGothic-BoldExt.glyphs -------------------------------------------------------------------------------- /sources/extensions/BIZ-UDPGothicExt.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/sources/extensions/BIZ-UDPGothicExt.glyphs -------------------------------------------------------------------------------- /sources/extensions/otf/BIZ-UDGothic-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/sources/extensions/otf/BIZ-UDGothic-Bold.otf -------------------------------------------------------------------------------- /sources/extensions/otf/BIZ-UDGothic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/sources/extensions/otf/BIZ-UDGothic.otf -------------------------------------------------------------------------------- /sources/extensions/otf/BIZ-UDPGothic-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/sources/extensions/otf/BIZ-UDPGothic-Bold.otf -------------------------------------------------------------------------------- /sources/extensions/otf/BIZ-UDPGothic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/sources/extensions/otf/BIZ-UDPGothic.otf -------------------------------------------------------------------------------- /sources/extensions/otf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/sources/extensions/otf/README.md -------------------------------------------------------------------------------- /sources/ttf/BIZ-UDGothic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/sources/ttf/BIZ-UDGothic-Bold.ttf -------------------------------------------------------------------------------- /sources/ttf/BIZ-UDGothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/sources/ttf/BIZ-UDGothic.ttf -------------------------------------------------------------------------------- /sources/ttf/BIZ-UDPGothic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/sources/ttf/BIZ-UDPGothic-Bold.ttf -------------------------------------------------------------------------------- /sources/ttf/BIZ-UDPGothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/sources/ttf/BIZ-UDPGothic.ttf -------------------------------------------------------------------------------- /sources/ttf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/sources/ttf/README.md -------------------------------------------------------------------------------- /workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlefonts/morisawa-biz-ud-gothic/HEAD/workflows/build.yaml --------------------------------------------------------------------------------