I'm getting from your comments to Zypher's answer that you're unclear why the "interstitial" network between the Router A's e1 interface and Router B's e0 interface need to be in same subnet.
Let's not get hung-up on the phrase "static routes". Let's say "routing table entries". How those entries get there, either statically assigned or via a dynamic routing protocol, is immaterial for this example.
You've got a topology like this:
e0 - 1.1.11.1/24 e0 - 1.1.12.2/24
v __________ v __________
v | | v | |
///---| Router A |---///---| Router B |---///
|__________| ^ |__________| ^
^ ^
e1 - 1.1.12.1/24 e1 - 1.1.13.1/24
You know that Router A will need a routing table entry that says "1.1.13.0/24 is reachable via 1.1.12.2". Likewise, you know that Router B will need a routing table entry that says "1.1.11.0/24 is reachable via 1.1.12.1".
You're conflating the need for routing table entries on both routers to reach the "end" networks with the addressing of the "interstitial" network. They have nothing to do with each other. No matter how you address that interstitial network, you'll need routing table entries in both routers to get traffic to flow from one of the "end" networks all the way thru to the other.
You could always do something like the network below:
e0 - 1.1.11.1/24 e0 - 5.4.3.2/32
v __________ v __________
v | | v | |
///---| Router A |---///---| Router B |---///
|__________| ^ |__________| ^
^ ^
e1 - 9.8.7.6/32 e1 - 1.1.13.1/24
In this network, you'd need the routing table entries "5.4.3.2/32 is reachable via interface e1" AND "1.1.13.1/24 is reachable via 5.4.3.2" in Router A. Likewise, you'd need the entries "9.8.7.6/32 is reachable via interface e0" AND "1.1.11.0/24 is reachable via 9.8.7.6" in Router B.
When we used intefaces in the same subnet for the intersitial network we got a route to the interstitial network "for free" (because an interface with a netmask smaller than /32 implies a route to the attached network via that interface). Using crazy disjoint IP addresses for the interstitial network means we need to add routes to make the interstitial network work in addition to the routes to allow traffic to flow between the "ends".