Skip to content
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
0dd1d50
New exports, added folders
kylewaynebenson Aug 22, 2025
0359ee8
Update .github/workflows/release.yml
kylewaynebenson Aug 22, 2025
12ae30f
Update .github/workflows/release.yml
kylewaynebenson Aug 22, 2025
a2d5eac
Update .github/workflows/release.yml
kylewaynebenson Aug 22, 2025
22d4188
Removing the build files
kylewaynebenson Aug 25, 2025
2178d34
Delete MonaSans[ital,wdth,wght].woff2
kylewaynebenson Aug 25, 2025
a4826d7
Remove Python setup and dependencies from release.yml
kylewaynebenson Aug 25, 2025
4219b93
Update release.yml
kylewaynebenson Aug 25, 2025
b2e20db
Initial commit of sources for adding OPSZ and mono styles to the desi…
kylewaynebenson Sep 29, 2025
b6eafe5
Fixing intermediate layers, updating ligatures to component build
kylewaynebenson Sep 29, 2025
097a077
Adding VF exports for mono
kylewaynebenson Sep 29, 2025
2756e4f
Update .github/workflows/release.yml
kylewaynebenson Sep 30, 2025
b1b972d
Adjusting opsz range up to 8
kylewaynebenson Oct 2, 2025
de970b1
Switching OPSZ value to 20 on the standard styles.
kylewaynebenson Oct 2, 2025
6ec85b6
Removing autosaved glyphs file
kylewaynebenson Oct 2, 2025
9e44cee
Dialing in optical size changes
kylewaynebenson Oct 2, 2025
e1130eb
Readme updates
kylewaynebenson Oct 3, 2025
c4b79dc
New builds of all fonts
kylewaynebenson Oct 3, 2025
9ee84ae
Redesigning circle figures and dnom, etc, to be mono
kylewaynebenson Oct 3, 2025
4bae99c
Switching source name to Display so we can keep google fonts build un…
kylewaynebenson Oct 3, 2025
c0382cd
Restoring last MonaSans.glyphs so the googlefonts build still works
kylewaynebenson Oct 3, 2025
a89ce47
Update .github/workflows/release.yml
kylewaynebenson Oct 3, 2025
49a9583
Updated mono to remove extra axis
kylewaynebenson Oct 3, 2025
2229977
Update README.md
kylewaynebenson Oct 3, 2025
064025d
Update README.md
kylewaynebenson Oct 3, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
137 changes: 137 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,137 @@
name: Create Release
# Release workflow for Mona Sans

on:
push:
tags:
- 'v*.*' # Matches tags like v1.300, etc.
workflow_dispatch:
inputs:
version:
description: 'Version for testing (e.g., "test-1.4" or "dev-2024-01-01")'
required: true
default: 'test-1.4'
type: string

permissions:
contents: write # Required to create releases and upload assets

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0 # Full history for proper release notes

- name: Extract version from tag or input
id: version
run: |
if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
VERSION="${{ github.event.inputs.version }}"
if [[ "$VERSION" == v* ]]; then
TAG="$VERSION"
else
TAG="v$VERSION"
fi
echo "version=${VERSION}" >> $GITHUB_OUTPUT
echo "tag=${TAG}" >> $GITHUB_OUTPUT
else
VERSION=${GITHUB_REF#refs/tags/v}
echo "version=${VERSION}" >> $GITHUB_OUTPUT
echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
fi

- name: Build fonts
run: |
cd sources
bash build.sh
cd ..
env:
FB_CONTINUE_ON_ERROR: true

- name: Prepare release artifacts
run: |
mkdir -p release-artifacts

# Create static fonts package (OTF + TTF)
zip -r "release-artifacts/mona-sans-static-v${{ steps.version.outputs.version }}.zip" \
fonts/static/ OFL.txt README.md

# Create variable fonts package
zip -r "release-artifacts/mona-sans-variable-v${{ steps.version.outputs.version }}.zip" \
fonts/variable/ OFL.txt README.md

# Create webfonts package
if [ -d "fonts/webfonts" ]; then
zip -r "release-artifacts/mona-sans-webfonts-v${{ steps.version.outputs.version }}.zip" \
fonts/webfonts/ OFL.txt README.md
fi
Comment thread
kylewaynebenson marked this conversation as resolved.

# Create complete package with all formats
zip -r "release-artifacts/mona-sans-complete-v${{ steps.version.outputs.version }}.zip" \
fonts/ -x "fonts/googlefonts/*" \
Comment thread
kylewaynebenson marked this conversation as resolved.
Outdated
OFL.txt README.md

- name: Create release notes
id: release_notes
run: |
cat > release_notes.md << 'EOF'
# Mona Sans ${{ steps.version.outputs.tag }}

A versatile typeface, designed by GitHub together with Degarism and inspired by industrial-era grotesques. Mona Sans works well across product, web, and print.

## Font Packages

- **Static Fonts** - Individual OTF and TTF files for each weight, width, and style
- **Variable Fonts** - Modern variable font files with adjustable weight and width
- **Web Fonts** - WOFF/WOFF2 files optimized for web use
- **Complete Package** - All font formats in one download

See the [README](https://github.com/github/mona-sans#readme) for detailed installation instructions.

## Font Specifications

- **Weight Range**: 100-900 (Thin to Black)
Comment thread
kylewaynebenson marked this conversation as resolved.
Outdated
- **Width Range**: 75-125 (Condensed to Expanded)
- **Styles**: Roman and Italic
- **Format Support**: OTF, TTF, Variable TTF, WOFF, WOFF2
EOF

- name: Create draft release with assets
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.version.outputs.tag }}
name: Mona Sans ${{ steps.version.outputs.tag }}
body_path: release_notes.md
draft: true
prerelease: false
files: |
release-artifacts/mona-sans-static-v${{ steps.version.outputs.version }}.zip
release-artifacts/mona-sans-variable-v${{ steps.version.outputs.version }}.zip
release-artifacts/mona-sans-webfonts-v${{ steps.version.outputs.version }}.zip
release-artifacts/mona-sans-complete-v${{ steps.version.outputs.version }}.zip

- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: mona-sans-fonts-v${{ steps.version.outputs.version }}
path: fonts/

- name: Summary
run: |
echo "## Release Summary" >> $GITHUB_STEP_SUMMARY
echo "Created draft release: **Mona Sans ${{ steps.version.outputs.tag }}**" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "### Uploaded Assets:" >> $GITHUB_STEP_SUMMARY
find release-artifacts -maxdepth 1 -name '*.zip' -print0 | while IFS= read -r -d '' file; do
filename=$(basename "$file")
size=$(stat -c %s "$file")
# Convert size in bytes to human-readable format
hr_size=$(numfmt --to=iec-i --suffix=B "$size")
echo "- $filename ($hr_size)" >> $GITHUB_STEP_SUMMARY
done
echo "" >> $GITHUB_STEP_SUMMARY
echo "🔗 **[View Draft Release](https://github.com/${{ github.repository }}/releases/tag/${{ steps.version.outputs.tag }})**" >> $GITHUB_STEP_SUMMARY
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
.DS_Store
*).glyphs
*).glyphs

# Ignore ninja and ufo build files
sources/instance_ufos
sources/.ninja_log
sources/build.ninja
55 changes: 55 additions & 0 deletions build.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
Starting Mona Sans Google Fonts build process...
/Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020
warnings.warn(
[1/841] buildVariable
FAILED: /var/folders/c8/prxw74zj4qsczvrt0l8cjm7w0000gn/T/tmp4eaghyil
/Library/Developer/CommandLineTools/usr/bin/python3 -m gftools.builder.jobrunner fontmake --output-path /var/folders/c8/prxw74zj4qsczvrt0l8cjm7w0000gn/T/tmp4eaghyil -o variable -g MonaSans.glyphspackage --filter ... --filter FlattenComponentsFilter --filter DecomposeTransformedComponentsFilter
/Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020
warnings.warn(

Command failed:
fontmake --output-path /var/folders/c8/prxw74zj4qsczvrt0l8cjm7w0000gn/T/tmp4eaghyil -o variable -g MonaSans.glyphspackage --filter ... --filter FlattenComponentsFilter --filter DecomposeTransformedComponentsFilter

INFO:fontmake.font_project:Building master UFOs and designspace from Glyphs source
INFO:glyphsLib.parser:Parsing .glyphs file
INFO:glyphsLib.builder:Running 'propagate_all_anchors' transformation
INFO:fontmake.font_project:Loading 36 DesignSpace source UFOs
fontmake: Error: In 'MonaSans.glyphspackage' -> 'master_ufo/MonaSans.designspace': can't specify output path because there are several VFs to build

[2/841] instantiateUfo
/Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020
warnings.warn(
fontmake -i Mona Sans Display ExtraLight -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos
[3/841] instantiateUfo
/Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020
warnings.warn(
fontmake -i Mona Sans Display Light -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos
[4/841] instantiateUfo
/Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020
warnings.warn(
fontmake -i Mona Sans Display SemiCondensed Black -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos
[5/841] instantiateUfo
/Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020
warnings.warn(
fontmake -i Mona Sans Display SemiCondensed Regular -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos
[6/841] instantiateUfo
/Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020
warnings.warn(
fontmake -i Mona Sans Display SemiCondensed ExtraBold -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos
[7/841] instantiateUfo
/Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020
warnings.warn(
fontmake -i Mona Sans Display SemiCondensed Light -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos
[8/841] instantiateUfo
/Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020
warnings.warn(
fontmake -i Mona Sans Display SemiCondensed Medium -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos
[9/841] instantiateUfo
/Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020
warnings.warn(
fontmake -i Mona Sans Display SemiCondensed SemiBold -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos
[10/841] instantiateUfo
/Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020
warnings.warn(
fontmake -i Mona Sans Display SemiCondensed Bold -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos
ninja: build stopped: subcommand failed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added fonts/variable/MonaSansMonoVF[wght].ttf
Binary file not shown.
Binary file not shown.
Binary file added fonts/variable/MonaSansVF[opsz,wdth,wght].ttf
Binary file not shown.
Binary file added fonts/variable/MonaSansVF[opsz,wght].ttf
Binary file not shown.
Binary file modified fonts/variable/MonaSansVF[wdth,wght,ital].ttf
Binary file not shown.
Binary file removed fonts/variable/MonaSansVF[wdth,wght,ital].woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSans-Black.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSans-BlackItalic.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSans-Bold.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSans-BoldItalic.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSans-ExtraBold.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSans-ExtraBoldItalic.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSans-ExtraLight.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSans-ExtraLightItalic.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSans-Italic.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSans-Light.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSans-LightItalic.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSans-Medium.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSans-MediumItalic.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSans-Regular.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSans-SemiBold.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSans-SemiBoldItalic.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansCondensed-Black.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansCondensed-BlackItalic.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansCondensed-Bold.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansCondensed-BoldItalic.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansCondensed-ExtraBold.woff2
Binary file not shown.
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansCondensed-ExtraLight.woff2
Binary file not shown.
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansCondensed-Italic.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansCondensed-Light.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansCondensed-LightItalic.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansCondensed-Medium.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansCondensed-MediumItalic.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansCondensed-Regular.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansCondensed-SemiBold.woff2
Binary file not shown.
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansExpanded-Black.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansExpanded-BlackItalic.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansExpanded-Bold.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansExpanded-BoldItalic.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansExpanded-ExtraBold.woff2
Binary file not shown.
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansExpanded-ExtraLight.woff2
Binary file not shown.
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansExpanded-Italic.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansExpanded-Light.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansExpanded-LightItalic.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansExpanded-Medium.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansExpanded-MediumItalic.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansExpanded-Regular.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansExpanded-SemiBold.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansExpanded-SemiBoldItalic.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansSemiCondensed-Black.woff2
Binary file not shown.
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansSemiCondensed-Bold.woff2
Binary file not shown.
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansSemiCondensed-ExtraBold.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansSemiCondensed-Italic.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansSemiCondensed-Light.woff2
Binary file not shown.
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansSemiCondensed-Medium.woff2
Binary file not shown.
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansSemiCondensed-Regular.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansSemiCondensed-SemiBold.woff2
Binary file not shown.
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansSemiExpanded-Black.woff2
Binary file not shown.
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansSemiExpanded-Bold.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansSemiExpanded-BoldItalic.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansSemiExpanded-ExtraBold.woff2
Binary file not shown.
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansSemiExpanded-ExtraLight.woff2
Binary file not shown.
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansSemiExpanded-Italic.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansSemiExpanded-Light.woff2
Binary file not shown.
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansSemiExpanded-Medium.woff2
Binary file not shown.
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansSemiExpanded-Regular.woff2
Binary file not shown.
Binary file removed fonts/webfonts/MonaSansSemiExpanded-SemiBold.woff2
Binary file not shown.
Binary file not shown.
Binary file removed fonts/webfonts/MonaSans[ital,wdth,wght].woff2
Binary file not shown.
Binary file added fonts/webfonts/static/MonaSans-Black.woff2
Binary file not shown.
Binary file added fonts/webfonts/static/MonaSans-BlackItalic.woff2
Binary file not shown.
Binary file added fonts/webfonts/static/MonaSans-Bold.woff2
Binary file not shown.
Binary file added fonts/webfonts/static/MonaSans-BoldItalic.woff2
Binary file not shown.
Binary file added fonts/webfonts/static/MonaSans-ExtraBold.woff2
Binary file not shown.
Binary file not shown.
Binary file added fonts/webfonts/static/MonaSans-ExtraLight.woff2
Binary file not shown.
Binary file not shown.
Binary file added fonts/webfonts/static/MonaSans-Italic.woff2
Binary file not shown.
Binary file added fonts/webfonts/static/MonaSans-Light.woff2
Binary file not shown.
Binary file not shown.
Binary file added fonts/webfonts/static/MonaSans-Medium.woff2
Binary file not shown.
Binary file added fonts/webfonts/static/MonaSans-MediumItalic.woff2
Binary file not shown.
Binary file added fonts/webfonts/static/MonaSans-Regular.woff2
Binary file not shown.
Binary file added fonts/webfonts/static/MonaSans-SemiBold.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added fonts/webfonts/static/MonaSansExpanded-Bold.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Loading