Index: src/templates/default/bbpress-functions.php
--- src/templates/default/bbpress-functions.php
+++ src/templates/default/bbpress-functions.php
@@ -118,17 +118,25 @@
 	 */
 	public function enqueue_styles() {
 
-		// RTL and/or minified
-		$suffix  = is_rtl() ? '-rtl' : '';
-
-		// Get and filter the bbp-default style
-		$styles = apply_filters( 'bbp_default_styles', array(
+		// Setup the default styling
+		$defaults = array(
 			'bbp-default' => array(
-				'file'         => 'css/bbpress' . $suffix . '.css',
+				'file'         => 'css/bbpress.css',
 				'dependencies' => array()
 			)
-		) );
+		);
 
+		// Optionally support an RTL variant
+		if ( is_rtl() ) {
+			$defaults['bbp-default-rtl'] = array(
+				'file'         => 'css/bbpress-rtl.css',
+				'dependencies' => array()
+			);
+		}
+
+		// Get and filter the bbp-default style
+		$styles = apply_filters( 'bbp_default_styles', $defaults );
+
 		// Enqueue the styles
 		foreach ( $styles as $handle => $attributes ) {
 			bbp_enqueue_style( $handle, $attributes['file'], $attributes['dependencies'], $this->version );
