diff --git a/get_fonts.sh b/get_fonts.sh
new file mode 100755
index 0000000000000000000000000000000000000000..a467c5f131c7cd704bac6a82ee3e2dc4a3923341
--- /dev/null
+++ b/get_fonts.sh
@@ -0,0 +1,12 @@
+echo "*************************************************************************"
+echo "Getting fonts ..."
+if [[ -d ../../../../../config/fonts ]]; then
+  if [[ -d dist/fonts ]]; then
+    rm -rf dist/fonts/*
+  fi
+  cp ../../../../../config/fonts/* dist/fonts
+else
+  echo "Error: there are no fonts installed, run ./setup_site.sh"
+fi
+echo "Done getting fonts ..."
+echo "*************************************************************************"