I have 2 independent networks and a connection between them

Now I want to make failover configuration. If ISP2 goes down all traffic form network 2 should be directed to network1 and to ISP network1 and it works but not in the way I want.
Here is a diagram of network1

The problem is that traffic from cust.2 goes directly to ISP1 but I want that traffic to go to server1 and then to ISP1 . I think that I should make some connection marks and routing marks but I don’t know how.
Here are my interfaces , NAT and routes configuration
/interface> print
Flags: D - dynamic, X - disabled, R - running, S - slave
# NAME TYPE MTU L2MTU
0 R LAN_Chmiel ether 1500 1526
1 R WAN_LMS_70 ether 1500 1522
2 R WAN_NOS ether 1500 1522
3 R customers_Chmiel_BR bridge 1500 1526
4 most_ko_SZCZ wlan 1500 2290
5 R 5GIGA_komprachcice wlan 1500 2290
/ip firewall nat> print
Flags: X - disabled, I - invalid, D - dynamic
1 chain=srcnat action=masquerade src-address=192.68.60.0/24
3 chain=srcnat action=masquerade out-interface=WAN_NOS
/ip address> print
Flags: X - disabled, I - invalid, D - dynamic
# ADDRESS NETWORK BROADCAST INTERFACE
1 192.168.70.1/24 192.168.70.0 192.168.70.255 WAN_LMS_70
2 192.168.100.10/24 192.168.100.0 192.168.100.255 WAN_NOS
3 D 10.20.1.202/22 10.20.0.0 10.20.3.255 customers_Chmiel_BR
4 192.168.60.20/24 192.168.60.0 192.168.60.255 5GIGA_komprachcice
/ip route> print
Flags: X - disabled, A - active, D - dynamic, C - connect, S - static, r - rip, b - bgp, o - ospf, m - mme,
B - blackhole, U - unreachable, P - prohibit
# DST-ADDRESS PREF-SRC GATEWAY DISTANCE
0 A S ;;; Default Route
0.0.0.0/0 192.168.100.1 1
1 S ;;; Backup Route
0.0.0.0/0 192.168.60.10 3
2 A S 8.8.4.4/32 192.168.100.1 1
3 ADC 10.20.0.0/22 10.20.1.202 customers_Chmie... 0
4 ADC 192.168.5.0/24 192.168.5.202 customers_Chmie... 0
5 ADC 192.168.60.0/24 192.168.60.20 5GIGA_komprachcice 0
6 ADC 192.168.70.0/24 192.168.70.1 WAN_LMS_70 0
7 ADC 192.168.100.0/24 192.168.100.10 WAN_NOS 0