Make prebuilt_font use the common arch

It doesn't really make sense for a font to be architecture-specific,
and using the common arch makes it easier to depend on without the
1-variant fallback.

Bug: 372091092
Test: m nothing --no-skip-soong-tests
Change-Id: Ibca98a46aa2de490c2c678f016e8b0a485b68f5b
diff --git a/etc/prebuilt_etc.go b/etc/prebuilt_etc.go
index ce72fed..743bfd4 100644
--- a/etc/prebuilt_etc.go
+++ b/etc/prebuilt_etc.go
@@ -725,7 +725,7 @@
 	module := &PrebuiltEtc{}
 	InitPrebuiltEtcModule(module, "fonts")
 	// This module is device-only
-	android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibFirst)
+	android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibCommon)
 	android.InitDefaultableModule(module)
 	return module
 }